:root {
  --paper: #F4F6F9;
  --ink: #0B1220;
  --blue: #183060;
  --red: #CD0F36;
  --line: rgba(17, 18, 23, 0.15);
  --yellow: #CD0F36;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 0.25s var(--ease);
  --t: 0.35s var(--ease);
  --t-slow: 0.5s var(--ease);
  /* Headings: Suisse Int’l display */
  --font-display: "Suisse", "Arial", sans-serif;
  /* Body, UI, forms: clean tech sans */
  --font-body: "Sora", "Segoe UI", sans-serif;
  /* Code / AI platform labels */
  --font-mono: "JetBrains Mono", "SF Mono", Consolas, monospace;
  --header-h: 86px;
  /* Container system — never full-bleed except small phones */
  --container: 1440px;
  --gutter: 20px;
  /* Scrollbars */
  --scrollbar-size: 10px;
  --scrollbar-track: #e8ecf2;
  --scrollbar-thumb: #183060;
  --scrollbar-thumb-hover: #CD0F36;
  --scrollbar-track-dark: #07082a;
  --scrollbar-thumb-dark: rgba(255, 255, 255, 0.28);
  --scrollbar-thumb-dark-hover: #CD0F36;
  /* Dark mixer — purple glow + navy gradient used on dark surfaces */
  --navy: #0a0b35;
  --navy-deep: #07082a;
  --mixer-glow: rgba(132, 59, 223, 0.44);
  --dark-mixer:
    radial-gradient(circle at 94% 98%, rgba(105, 42, 197, 0.52) 0, rgba(45, 24, 112, 0.27) 22%, rgba(10, 11, 53, 0) 52%),
    linear-gradient(138deg, #0b0c38 0%, #090a31 56%, #0d0c3d 100%);
  --dark-mixer-grid:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
}

* {
  box-sizing: border-box;
}

.section.dark,
footer,
.svc-hero,
.si-hero,
.si-final,
.bi-inspired-hero,
.contact-stage,
.bi-hero,
.bi-section--dark,
.bi-section--navy,
.bi-campaign,
.bi-next-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: var(--dark-mixer);
}

.section.dark::before,
footer::before,
.svc-hero::before,
.si-hero::before,
.si-final::before,
.bi-inspired-hero::before,
.contact-stage::before,
.bi-hero::before,
.bi-section--dark::before,
.bi-section--navy::before,
.bi-campaign::before,
.bi-next-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image: var(--dark-mixer-grid);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, transparent 0, #000 25%, #000 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 25%, #000 100%);
}

.section.dark::after,
footer::after,
.svc-hero::after,
.si-hero::after,
.si-final::after,
.bi-inspired-hero::after,
.contact-stage::after,
.bi-hero::after,
.bi-section--dark::after,
.bi-section--navy::after,
.bi-campaign::after,
.bi-next-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: 650px;
  height: 650px;
  right: -285px;
  bottom: -350px;
  border-radius: 50%;
  background: var(--mixer-glow);
  filter: blur(76px);
}

.section.dark > *,
footer > *,
.svc-hero > *,
.si-hero > *,
.si-final > *,
.bi-inspired-hero > *,
.contact-stage > *,
.bi-hero > *,
.bi-section--dark > *,
.bi-section--navy > *,
.bi-campaign > *,
.bi-next-card > * {
  position: relative;
  z-index: 1;
}

.marquee,
.process-card {
  background: var(--dark-mixer);
}

.btn-wrapper{
  margin-top: 40px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 0;
  z-index: 200;
  padding: 10px 16px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 8px 8px;
  transform: translateY(-120%);
  transition: transform 0.2s ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.visually-hidden {
  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;
}

/* Site-wide themed scrollbars */
html {
  scroll-padding-top: 96px;
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: var(--scrollbar-size);
  height: var(--scrollbar-size);
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
  border-radius: 999px;
  border: 2px solid var(--scrollbar-track);
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-hover);
}

html::-webkit-scrollbar-corner,
body::-webkit-scrollbar-corner {
  background: var(--scrollbar-track);
}

html.lenis,
html.lenis body {
  height: auto;
}

html:not(.lenis) {
  scroll-behavior: smooth;
}

html.has-scroll-smooth {
  scroll-behavior: auto;
}

html.has-scroll-smooth [data-scroll] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

html.has-scroll-smooth [data-scroll].is-inview {
  opacity: 1;
  transform: none;
}

html.has-scroll-smooth .bi-inspired-hero[data-scroll] {
  opacity: 1;
  transform: none;
}

html.has-scroll-smooth .bi-next[data-scroll],
html.has-scroll-smooth .bi-next[data-scroll].is-inview {
  opacity: 1;
  transform: none;
}

/* Sticky sections need no transformed ancestors */
html.has-scroll-smooth #work[data-scroll],
html.has-scroll-smooth #work[data-scroll].is-inview,
html.has-scroll-smooth #process[data-scroll],
html.has-scroll-smooth #process[data-scroll].is-inview,
html.has-scroll-smooth .checkup-stage[data-scroll],
html.has-scroll-smooth .checkup-stage[data-scroll].is-inview {
  opacity: 1;
  transform: none;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

h1,
h2,
h3,
h4,
h5,
h6,
.title,
.bi-hero-title,
.project h3,
.service-inner h3,
.final h2,
.modal-head h3,
.score-circle {
  font-family: var(--font-display);
}

.stat b {
  font-family: var(--font-body);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t), opacity var(--t), transform var(--t);
}

button,
input,
select,
textarea,
.btn,
label,
.bi-nav-link,
.bi-header-phone,
.bi-hero-cta,
.eyebrow {
  font-family: var(--font-body);
}

button,
input,
select,
textarea {
  font: inherit;
  font-family: var(--font-body);
  transition: color var(--t), background-color var(--t), border-color var(--t),
    transform var(--t), box-shadow var(--t), opacity var(--t);
}

.wrap,
.container-wide,
.proof-sticky>.wrap {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  box-sizing: border-box;
}

.section {
  padding: 170px 0;
}

.section-ctas {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 10px 12px;
  width: 480px;
  max-width: 100%;
  margin-top: 56px;
  margin-inline: auto;
  padding: 12px;
  border: 1px solid rgba(11, 18, 32, 0.08);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.22) 100%);
  box-shadow:
    0 18px 40px rgba(11, 18, 32, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.section-ctas::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(205, 15, 54, 0.12);
}

.section.dark .section-ctas {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.section.dark .section-ctas::before {
  box-shadow: inset 0 0 0 1px rgba(205, 15, 54, 0.28);
}

.section-ctas .btn {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  min-height: 48px;
  box-sizing: border-box;
  justify-content: stretch;
  padding: 5px 6px 5px 12px;
  font-size: 12px;
  text-decoration: none;
}

.section-ctas .btn:not(:has(.bi-btn-arrow)) {
  padding-inline: 16px;
  justify-content: center;
}

.section-ctas .btn>.bi-btn-label {
  width: 100%;
  justify-items: stretch;
}

.section-ctas .btn .bi-btn-label-line {
  width: 100%;
  justify-content: space-between;
  gap: 8px;
}

.section-ctas .btn .bi-btn-text {
  flex: 1 1 auto;
  min-width: 0;
  text-align: center;
}

.section-ctas .btn .bi-btn-arrow {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  margin-left: auto;
  font-size: 12px;
}

@media (max-width: 620px) {
  .section-ctas {
    grid-template-columns: 1fr;
    width: 320px;
    max-width: 100%;
    border-radius: 28px;
    padding: 10px;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
}

.eyebrow:before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}

.checkup-copy,
.faq-lead {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(11, 18, 32, 0.84);
  max-width: 52ch;
}
.theme-color {
    color: var(--bi-yellow);
}
.title {
  font-size: 80px;
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 0;
  font-weight: 700;
}

/* Primary CTAs — ADH Signal Capsule */
.btn {
  --btn-bg: rgba(11, 18, 32, 0.04);
  --btn-color: var(--ink);
  --btn-border: rgba(11, 18, 32, 0.16);
  --btn-shadow: 0 10px 26px rgba(11, 18, 32, 0.1);
  --btn-sheen: rgba(255, 255, 255, 0.35);
  --btn-dock-bg: linear-gradient(145deg, #e31442 0%, #cd0f36 48%, #a00b2b 100%);
  --btn-dock-shadow: 0 6px 14px rgba(205, 15, 54, 0.35);
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 56px;
  padding: 6px 8px 6px 22px;
  border-radius: 999px;
  color: var(--btn-color);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  border: 1px solid var(--btn-border);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14) 0%, transparent 42%),
    var(--btn-bg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    var(--btn-shadow);
  overflow: hidden;
  transition:
    color var(--t),
    background var(--t),
    border-color var(--t),
    box-shadow var(--t),
    transform var(--t);
}

.btn:not(:has(.bi-btn-arrow)) {
  padding-inline: 26px;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(105deg,
      transparent 36%,
      var(--btn-sheen) 48%,
      transparent 60%);
  background-size: 220% 100%;
  background-position: 120% 0;
  animation: bi-cta-sheen 4.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
}

.btn>.bi-btn-label,
.btn>.bi-btn-label-line {
  position: relative;
  z-index: 1;
}

.btn .bi-btn-label-line {
  gap: 12px;
}

.btn .bi-btn-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  background: var(--btn-dock-bg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    var(--btn-dock-shadow);
  font-size: 13px;
  line-height: 1;
  margin-left: auto;
}

.btn.dark {
  --btn-bg: var(--ink);
  --btn-color: #fff;
  --btn-border: rgba(255, 255, 255, 0.12);
  --btn-shadow: 0 12px 28px rgba(11, 18, 32, 0.28);
  --btn-sheen: rgba(255, 255, 255, 0.16);
}

.btn.light {
  --btn-bg: #fff;
  --btn-color: var(--ink);
  --btn-border: rgba(255, 255, 255, 0.9);
  --btn-shadow: 0 14px 34px rgba(11, 18, 32, 0.18);
  --btn-sheen: rgba(24, 48, 96, 0.08);
}

.btn.ghost {
  --btn-bg: rgba(255, 255, 255, 0.06);
  --btn-color: #fff;
  --btn-border: rgba(255, 255, 255, 0.55);
  --btn-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  --btn-sheen: rgba(255, 255, 255, 0.2);
  --btn-dock-bg: linear-gradient(145deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.12) 100%);
  --btn-dock-shadow: none;
}

.btn.ghost .bi-btn-arrow {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 16px 34px rgba(205, 15, 54, 0.22);
  border-color: rgba(205, 15, 54, 0.45);
}

.btn:hover::after,
.btn:focus-visible::after {
  animation-duration: 1.7s;
  opacity: 1;
}

.btn.dark:hover,
.btn.dark:focus-visible {
  --btn-bg: #141c2c;
  border-color: rgba(205, 15, 54, 0.55);
}

.btn.light:hover,
.btn.light:focus-visible {
  --btn-bg: #fff;
  border-color: rgba(205, 15, 54, 0.4);
  color: var(--ink);
}

.btn.ghost:hover,
.btn.ghost:focus-visible {
  --btn-bg: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
}

@keyframes bi-cta-sheen {

  0%,
  55%,
  100% {
    background-position: 140% 0;
  }

  70%,
  85% {
    background-position: -40% 0;
  }
}

@media (prefers-reduced-motion: reduce) {

  .btn::after,
  .bi-hero-cta::after {
    animation: none !important;
    opacity: 0;
  }

  .btn:hover,
  .btn:focus-visible,
  .bi-hero-cta:hover,
  .bi-hero-cta:focus-visible {
    transform: none;
  }
}

/* Shared CTA slide-up label */
.bi-btn-hover {
  overflow: hidden;
}

.bi-btn-label {
  position: relative;
  display: grid;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  line-height: 1.5;
  padding-block: 0.12em;
}
.industry-btn .bi-btn-label {
    top: 20px;
}
.bi-btn-label-line {
  grid-area: 1 / 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: max-content;
  max-width: 100%;
  min-height: 1.5em;
  padding-block: 0.08em;
  line-height: 1.5;
  transition: transform 0.45s var(--ease);
  will-change: transform;
}

.bi-btn-label-line:nth-child(1) {
  transform: translateY(0);
}
.checkup-actions .bi-btn-label-line:nth-child(1) {
  color: #000;
}
.bi-btn-label-line:nth-child(2) {
  transform: translateY(105%);
}

.bi-btn-text {
  display: inline-block;
  line-height: 1.5;
  padding-block: 0.05em;
}

.bi-btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  line-height: 1.2;
  transition: transform 0.45s var(--ease);
  transform-origin: center;
}

.bi-btn-arrow--badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: var(--bi-yellow, #cd0f36);
  font-size: 14px;
  line-height: 1;
  transition:
    transform 0.45s var(--ease),
    background-color var(--t),
    box-shadow var(--t);
}

.bi-btn-hover:hover .bi-btn-label-line:nth-child(1),
.bi-btn-hover:focus-visible .bi-btn-label-line:nth-child(1),
.project:hover .project-copy .bi-btn-hover .bi-btn-label-line:nth-child(1) {
  transform: translateY(-105%);
}

.bi-btn-hover:hover .bi-btn-label-line:nth-child(2),
.bi-btn-hover:focus-visible .bi-btn-label-line:nth-child(2),
.project:hover .project-copy .bi-btn-hover .bi-btn-label-line:nth-child(2) {
  transform: translateY(0);
}

.bi-btn-hover:hover .bi-btn-arrow,
.bi-btn-hover:focus-visible .bi-btn-arrow,
.project:hover .project-copy .bi-btn-hover .bi-btn-arrow {
  transform: rotate(45deg);
}

.bi-btn-hover:hover .bi-btn-arrow--badge,
.bi-btn-hover:focus-visible .bi-btn-arrow--badge {
  box-shadow: 0 8px 20px rgba(205, 15, 54, 0.35);
}

/* Parent-hover triggers (cards / tabs that animate children) */
.bi-resources-grid>a:hover .bi-btn-label-line:nth-child(1),
.service-btn:hover .bi-btn-label-line:nth-child(1),
.service-btn.active .bi-btn-label-line:nth-child(1),
.process-btn:hover .bi-btn-label-line:nth-child(1),
.process-btn.active .bi-btn-label-line:nth-child(1),
.svc-build-row:hover .bi-btn-label-line:nth-child(1),
.svc-build-row.is-active .bi-btn-label-line:nth-child(1),
.industry-btn:hover .bi-btn-label-line:nth-child(1),
.industry-btn.is-active .bi-btn-label-line:nth-child(1),
.faq-item.open .faq-q .bi-btn-label-line:nth-child(1),
.bi-nav-link.is-active .bi-btn-label-line:nth-child(1),
.bi-mega-rail>button.is-active .bi-btn-label-line:nth-child(1) {
  transform: translateY(-105%);
}

.bi-resources-grid>a:hover .bi-btn-label-line:nth-child(2),
.service-btn:hover .bi-btn-label-line:nth-child(2),
.service-btn.active .bi-btn-label-line:nth-child(2),
.process-btn:hover .bi-btn-label-line:nth-child(2),
.process-btn.active .bi-btn-label-line:nth-child(2),
.svc-build-row:hover .bi-btn-label-line:nth-child(2),
.svc-build-row.is-active .bi-btn-label-line:nth-child(2),
.industry-btn:hover .bi-btn-label-line:nth-child(2),
.industry-btn.is-active .bi-btn-label-line:nth-child(2),
.faq-item.open .faq-q .bi-btn-label-line:nth-child(2),
.bi-nav-link.is-active .bi-btn-label-line:nth-child(2),
.bi-mega-rail>button.is-active .bi-btn-label-line:nth-child(2) {
  transform: translateY(0);
}

.bi-resources-grid>a:hover .bi-btn-arrow,
.service-btn:hover .bi-btn-arrow,
.service-btn.active .bi-btn-arrow,
.process-btn:hover .bi-btn-arrow,
.process-btn.active .bi-btn-arrow,
.svc-build-row:hover .bi-btn-arrow,
.svc-build-row.is-active .bi-btn-arrow {
  transform: rotate(45deg);
}

/* Layout variants */
.bi-nav-link.bi-btn-hover {
  overflow: visible;
}

.bi-nav-link .bi-btn-label {
  justify-items: start;
  overflow: hidden;
}

.bi-nav-link .bi-btn-label-line {
  justify-content: flex-start;
  gap: 6px;
}

.service-btn.bi-btn-hover,
.process-btn.bi-btn-hover {
  overflow: hidden;
}

.service-btn .bi-btn-label,
.process-btn .bi-btn-label,
.industry-btn .bi-btn-label,
.bi-mega-what-pages a .bi-btn-label,
.bi-mobile-sub a .bi-btn-label,
footer .foot-menu a .bi-btn-label,
.faq-q .bi-btn-label {
  justify-items: start;
  width: 100%;
}

.service-btn .bi-btn-label-line,
.process-btn .bi-btn-label-line,
.industry-btn .bi-btn-label-line,
.bi-mega-what-pages a .bi-btn-label-line,
.bi-mobile-sub a .bi-btn-label-line,
footer .foot-menu a .bi-btn-label-line,
.faq-q .bi-btn-label-line {
  justify-content: flex-start;
  width: 100%;
  gap: 12px;
}

.service-btn .bi-btn-text {
  font-size: 46px;
  letter-spacing: -0.045em;
  font-weight: 700;
  opacity: 0.72;
  transition: opacity var(--t);
}

.service-btn:hover .bi-btn-text,
.service-btn.active .bi-btn-text {
  opacity: 1;
}

.service-btn.active .bi-btn-label {
  transform: translateX(8px);
  transition: transform var(--t);
}

.service-btn .bi-btn-arrow {
  margin-left: auto;
  opacity: 0.72;
}

.process-btn .bi-btn-text {
  font-size: 1em;
  letter-spacing: -0.055em;
  font-weight: 700;
  opacity: 0.35;
  line-height: 1.2;
  padding-block: 0.12em;
  white-space: nowrap;
  transition: opacity 0.3s var(--ease);
}

.process-btn:hover .bi-btn-text {
  opacity: 0.7;
}

.process-btn.active .bi-btn-text {
  opacity: 1;
}

.process-btn .bi-btn-label {
  justify-items: start;
  width: 100%;
  max-width: 100%;
  font-size: clamp(32px, 4vw, 56px);
  height: 1.45em;
  line-height: 1.2;
  padding-block: 0.12em;
  box-sizing: content-box;
  overflow: hidden;
}

.process-btn .bi-btn-label-line {
  justify-content: flex-start;
  width: 100%;
  max-width: 100%;
  min-height: 1.45em;
  line-height: 1.2;
  padding-block: 0.12em;
  gap: 12px;
  box-sizing: border-box;
}

.process-btn.active .bi-btn-label {
  transform: translateX(6px);
  transition: transform 0.3s var(--ease);
}

.industry-btn.bi-btn-hover {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.industry-btn .bi-btn-text {
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.circle.bi-btn-hover {
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  padding: 0;
}

.circle .bi-btn-label,
.circle .bi-btn-label-line {
  width: 100%;
  justify-items: center;
  justify-content: center;
}

.bi-mega-what-pages a.bi-btn-hover {
  overflow: hidden;
}

.bi-resources-grid>a.bi-btn-hover {
  overflow: hidden;
}

.bi-resources-grid>a .bi-btn-label {
  justify-items: start;
  width: 100%;
}

.bi-resources-grid>a .bi-btn-label-line {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 14px;
}

.bi-resources-grid>a .bi-btn-text {
  max-width: 80%;
  font-size: 29px;
  font-weight: 650;
  letter-spacing: -0.045em;
}

.bi-resources-grid>a .bi-btn-arrow {
  flex: 0 0 auto;
  margin-top: 0.15em;
  opacity: 0.7;
}

.bi-mega-feature.bi-btn-hover .bi-btn-label {
  justify-items: start;
  width: 100%;
  z-index: 1;
}

.bi-mega-feature.bi-btn-hover .bi-btn-label-line {
  justify-content: flex-start;
  width: 100%;
  padding-right: 52px;
}

.bi-mega-feature.bi-btn-hover .bi-btn-text {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bi-mega-feature.bi-btn-hover .bi-btn-arrow--badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  margin: 0;
}

.bi-mega-back.bi-btn-hover {
  overflow: hidden;
}

.bi-mobile-inner nav a.bi-btn-hover,
.bi-mobile-group summary.bi-btn-hover {
  overflow: visible;
}

.bi-mobile-inner nav a .bi-btn-label,
.bi-mobile-group summary .bi-btn-label {
  justify-items: start;
  width: 100%;
  overflow: hidden;
}

.bi-mobile-inner nav a .bi-btn-label-line,
.bi-mobile-group summary .bi-btn-label-line {
  justify-content: flex-start;
  width: 100%;
}

.faq-q.bi-btn-hover {
  overflow: visible;
}

.faq-q .bi-btn-label {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}

.faq-q .plus {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  line-height: 1;
}

footer .foot-menu a.bi-btn-hover,
footer .copyright a.bi-btn-hover {
  overflow: hidden;
  display: inline-block;
  max-width: 100%;
}

.bi-hero-trust a.bi-btn-hover,
.bi-hero-trust-scroll.bi-btn-hover {
  overflow: visible;
}

@media (prefers-reduced-motion: reduce) {

  .bi-resources-grid>a:hover .bi-btn-label-line:nth-child(1),
  .service-btn:hover .bi-btn-label-line:nth-child(1),
  .service-btn.active .bi-btn-label-line:nth-child(1),
  .process-btn:hover .bi-btn-label-line:nth-child(1),
  .process-btn.active .bi-btn-label-line:nth-child(1),
  .svc-build-row:hover .bi-btn-label-line:nth-child(1),
  .svc-build-row.is-active .bi-btn-label-line:nth-child(1),
  .industry-btn:hover .bi-btn-label-line:nth-child(1),
  .industry-btn.is-active .bi-btn-label-line:nth-child(1),
  .faq-item.open .faq-q .bi-btn-label-line:nth-child(1),
  .bi-nav-link.is-active .bi-btn-label-line:nth-child(1),
  .bi-mega-rail>button.is-active .bi-btn-label-line:nth-child(1) {
    transform: translateY(0);
  }

  .bi-resources-grid>a:hover .bi-btn-label-line:nth-child(2),
  .service-btn:hover .bi-btn-label-line:nth-child(2),
  .service-btn.active .bi-btn-label-line:nth-child(2),
  .process-btn:hover .bi-btn-label-line:nth-child(2),
  .process-btn.active .bi-btn-label-line:nth-child(2),
  .svc-build-row:hover .bi-btn-label-line:nth-child(2),
  .svc-build-row.is-active .bi-btn-label-line:nth-child(2),
  .industry-btn:hover .bi-btn-label-line:nth-child(2),
  .industry-btn.is-active .bi-btn-label-line:nth-child(2),
  .faq-item.open .faq-q .bi-btn-label-line:nth-child(2),
  .bi-nav-link.is-active .bi-btn-label-line:nth-child(2),
  .bi-mega-rail>button.is-active .bi-btn-label-line:nth-child(2) {
    transform: translateY(105%);
  }
}

@media (prefers-reduced-motion: reduce) {

  .bi-btn-label-line,
  .bi-btn-arrow,
  .bi-btn-arrow--badge,
  .bi-btn-phone-icon {
    transition: none;
  }

  .bi-btn-hover:hover .bi-btn-label-line:nth-child(1),
  .bi-btn-hover:focus-visible .bi-btn-label-line:nth-child(1),
  .project:hover .project-copy .bi-btn-hover .bi-btn-label-line:nth-child(1) {
    transform: translateY(0);
  }

  .bi-btn-hover:hover .bi-btn-label-line:nth-child(2),
  .bi-btn-hover:focus-visible .bi-btn-label-line:nth-child(2),
  .project:hover .project-copy .bi-btn-hover .bi-btn-label-line:nth-child(2) {
    transform: translateY(105%);
  }

  .bi-btn-hover:hover .bi-btn-arrow,
  .bi-btn-hover:focus-visible .bi-btn-arrow,
  .project:hover .project-copy .bi-btn-hover .bi-btn-arrow,
  .bi-resources-grid>a:hover .bi-btn-arrow,
  .service-btn:hover .bi-btn-arrow,
  .service-btn.active .bi-btn-arrow,
  .process-btn:hover .bi-btn-arrow,
  .process-btn.active .bi-btn-arrow {
    transform: none;
  }

  .bi-header-phone:hover .bi-btn-phone-icon,
  .bi-header-phone:focus-visible .bi-btn-phone-icon {
    transform: none;
  }
}

header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 18px 0;
  transition: 0.35s;
}

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

.marquee {
  overflow: hidden;
  color: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding: 20px 0;
}

.track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.track span {
  white-space: nowrap;
  padding: 0 34px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.track span:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  margin-right: 24px;
}

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

.intro-grid,
.head-grid {
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: 30px;
}

.head-grid .title + p,
.head-grid h2 + p,
.head-grid h2.title + p {
  margin-top: 18px;
}

.intro-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  margin-top: 46px;
}

.intro-copy p:first-child {
  font-size: 26px;
  line-height: 1.45;
}

.intro-copy p:last-child {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(11, 18, 32, 0.8);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  margin-top: 75px;
}

.stat {
  min-height: 210px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px;
}

.stat b {
  display: block;
  font-size: 84px;
  letter-spacing: -0.07em;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.stat small {
  display: block;
  margin-top: 36px;
  font-weight: 800;
  color: rgba(11, 18, 32, 0.78);
}

.dark {
  color: #fff;
}

.dark .sub {
  color: rgba(255, 255, 255, 0.86);
}

.services {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  margin-top: 70px;
}

.service-list {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.service-btn {
  display: grid;
  grid-template-columns: 65px 1fr auto;
  align-items: center;
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
  padding: 25px 0;
  text-align: left;
  cursor: pointer;
  transition: background 0.3s ease;
}

.service-btn small,
.service-btn span {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-btn small {
  opacity: 0.72;
}

.service-btn strong {
  font-size: 46px;
  letter-spacing: -0.045em;
  opacity: 0.72;
  transition: opacity var(--t), transform var(--t);
}

.service-btn:hover strong {
  opacity: 0.92;
}

.service-btn.active strong {
  opacity: 1;
  transform: translateX(8px);
}

.service-btn.active:hover strong {
  opacity: 1;
}

.service-btn.bi-btn-hover:hover strong,
.service-btn.bi-btn-hover.active strong {
  transform: none;
}

.service-card {
  position: relative;
  top: auto;
  border-radius: 42px;
  padding: 35px;
  color: var(--ink);
  min-height: 0;
  background: var(--svc-card-bg, #E8D9C8);
  background-color: var(--svc-card-bg, #E8D9C8);
  transition: background-color 0.55s var(--ease), background 0.55s var(--ease);
}

.service-inner {
  min-height: 0;
  border-radius: 28px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.34);
  padding: 22px 22px 38px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.service-visual {
  position: relative;
  margin: 6px 0 12px;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: rgba(11, 18, 32, 0.08);
  flex: 0 0 auto;
}

.service-visual img,
.service-visual video,
.service-visual .service-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-visual video,
.service-visual .service-video {
  pointer-events: none;
}

.service-inner.is-fading {
  opacity: 0;
  transform: translateY(10px);
}

.service-inner>small {
  display: block;
  margin-top: 18px;
  padding: 0 16px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.72;
}

.service-inner h3 {
  font-size: 56px;
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin: 14px 16px 16px;
}

.service-inner p {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(11, 18, 32, 0.84);
  max-width: 540px;
  margin: 0 16px;
}

.tags {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: auto;
  padding: 24px 16px 0;
}

.tags span {
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 800;
  transition: background 0.3s ease, transform 0.3s ease;
}

.tags span:hover {
  background: rgba(255, 255, 255, 0.74);
  transform: translateY(-2px);
}

.service-page-link {
  align-self: flex-start;
  margin: 28px 16px 0;
  min-width: min(100%, 280px);
}

.service-page-link[hidden] {
  display: none !important;
}

.service-page-link .bi-btn-label {
  width: 100%;
}

.service-page-link .bi-btn-label-line {
  width: 100%;
  justify-content: space-between;
  gap: 14px;
}

.service-page-link .bi-btn-arrow {
  margin-left: auto;
}

.portfolio-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 45px;
}

.portfolio-head p {
  max-width: 440px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(11, 18, 32, 0.82);
}

.projects {
  margin-top: 50px;
}

.project {
  position: sticky;
  min-height: 560px;
  margin-bottom: 36px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 46px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
}

.project:nth-child(1),
.project--astras {
  top: 90px;
  background: #d8f06a;
  z-index: 1;
}

.project:nth-child(2),
.project--mu {
  top: 108px;
  background: #c9c9c9;
  z-index: 2;
}

.project:nth-child(3),
.project--chatfleek {
  top: 126px;
  background: #b0b8e8;
  z-index: 3;
}

.project:nth-child(4),
.project--marrow {
  top: 144px;
  background: #e0a8a4;
  z-index: 4;
}

.project-copy {
  padding: 46px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-copy b {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.project-copy>a {
  display: inline-flex;
  width: max-content;
  color: inherit;
  text-decoration: none;
}

.project-meta {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 18px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
}

.project h3 {
  font-size: 92px;
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 40px 0 22px;
}

.project p {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(11, 18, 32, 0.84);
}

.project-image {
  margin: 22px;
  border-radius: 28px;
  background: rgba(17, 18, 23, 0.94);
  position: relative;
  overflow: hidden;
  min-height: 0;
  align-self: stretch;
  display: grid;
  place-items: center;
}

.project-image img,
.project-image .project-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.project-image .project-video {
  background: #0b1220;
  pointer-events: none;
}

.placeholder {
  font-size: 48px;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.05em;
  text-align: center;
  max-width: 450px;
  position: relative;
  z-index: 2;
}

.shape {
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--blue);
  border-radius: 50%;
}

.reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  margin-top: 70px;
}

.reason {
  min-height: 340px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  transition: background-color var(--t), color var(--t), transform var(--t);
}

.reason:hover {
  background: var(--ink);
  color: #fff;
}

.reason-icon {
  display: grid;
  place-items: center;
  width: 120px;
  height: 120px;
  margin: 0;
  flex: 0 0 auto;
}

.reason-icon.is-empty {
  border: 1px dashed rgba(11, 18, 32, 0.28);
  border-radius: 14px;
  background: rgba(11, 18, 32, 0.04);
  opacity: 0.55;
}

.reason:hover .reason-icon.is-empty {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.reason-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: filter var(--t), transform var(--t), opacity var(--t);
}

.reason-icon img[hidden] {
  display: none;
}

.reason h3 {
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.05em;
  margin: 0 0 14px;
  transition: color var(--t), transform var(--t);
}

.reason p {
  margin: 0;
  line-height: 1.65;
  opacity: 0.82;
  transition: opacity var(--t), color var(--t);
}

.reason small {
  font-weight: 900;
  opacity: 0.7;
  transition: opacity var(--t), color var(--t);
}

.reason:hover h3 {
  transform: none;
}

.reason:hover p,
.reason:hover small {
  opacity: 0.75;
}

.process-sec {
  background: #dfe5ff;
}

.process-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 32px;
  margin-top: 70px;
}

.process-card {
  color: #fff;
  border-radius: 46px;
  padding: 35px;
  position: sticky;
  top: calc(var(--header-h, 88px) + 24px);
  align-self: start;
}

.process-inner {
  height: auto;
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  padding: 32px 34px 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
}

.process-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 0;
  padding-top: 0;
  transition: opacity 0.35s ease;
}

.process-body.is-fading {
  opacity: 0;
}

.process-body:not(.is-fading) {
  transform: none;
}

.process-num {
  font-size: 150px;
  line-height: 0.8;
  letter-spacing: -0.09em;
  color: rgba(255, 255, 255, 0.1);
  font-weight: 700;
}

.process-icon {
  position: static;
  display: block;
  width: 132px;
  height: 132px;
  margin: 22px 0 40px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  opacity: 1;
}
.section.pn-principles {
  padding-bottom: 60px;
}
.process-icon.is-empty {
  opacity: 0.28;
  border: 0;
  background: none;
  box-shadow: none;
}

.process-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  filter: none;
}

.process-icon img[hidden] {
  display: none;
}

.process-title {
  font-size: clamp(32px, 3.1vw, 46px);
  letter-spacing: -0.05em;
  margin: 0 0 10px;
  font-weight: inherit;
  font-family: inherit;
  line-height: 0.98;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.process-copy {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  max-width: 450px;
  /* min-height: calc(1.65em * 3);
  max-height: calc(1.65em * 3);
  overflow: hidden; */
}

.process-list {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.process-btn {
  display: grid;
  grid-template-columns: 75px minmax(0, 1fr) auto;
  width: 100%;
  align-items: center;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 28px 0;
  min-height: 0;
  height: auto;
  box-sizing: border-box;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
}

.process-btn small {
  transition: opacity 0.3s var(--ease);
}

.process-btn strong {
  font-size: 60px;
  letter-spacing: -0.055em;
  opacity: 0.35;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.process-btn:hover strong {
  opacity: 0.7;
}

.process-btn.active strong {
  opacity: 1;
  transform: translateX(6px);
}

.dot {
  width: 12px;
  height: 12px;
  background: var(--ink);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.35s ease;
}

.process-btn.active .dot {
  transform: scale(1);
}

.process-inner > small,
#pstep,
#svcProcessStep {
  position: static;
  align-self: flex-start;
  margin: 0;
  font-family: var(--font-mono, inherit);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

#pstep {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

#pstep.is-fading {
  opacity: 0;
  transform: translateY(6px);
}

.industries-grid {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 30px;
  margin-top: 70px;
}

.industry-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.industry-btn {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  min-height: 112px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  padding: 0 26px;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.045em;
  cursor: pointer;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}

.industry-btn:hover,
.industry-btn.is-active {
  background: var(--ink);
  color: #fff;
}

.industry-visual {
  position: relative;
  top: auto;
  min-height: 420px;
  border-radius: 46px;
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 30px;
  overflow: hidden;
  background-color: #0b1220;
}

.industry-visual-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background-color: transparent;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
}

.industry-visual-bg.is-base {
  background-image: url("../img/Industries/Technology.webp");
  opacity: 1;
}

.industry-visual-bg.is-next {
  z-index: 1;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.industry-visual-bg.is-next.is-visible {
  opacity: 1;
}

.industry-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
}

.industry-visual:before {
  content: "";
  position: absolute;
  z-index: 3;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  transition: transform 0.6s ease;
  pointer-events: none;
}

.industry-visual-copy {
  position: relative;
  z-index: 4;
}

.industry-visual strong {
  position: relative;
  font-size: 67px;
  letter-spacing: -0.065em;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.industry-visual strong.is-fading {
  opacity: 0;
  transform: translateY(12px);
}

.industry-visual p {
  position: relative;
  max-width: 390px;
  margin-inline: auto;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

.industry-slider {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .industry-visual-bg.is-next {
    transition: none;
  }
}

.testimonial-slider {
  position: relative;
  margin-top: 48px;
  padding-inline: clamp(52px, 5.5vw, 72px);
}

.testimonial-viewport {
  overflow: hidden;
  width: 100%;
}

.testimonial-track {
  display: flex;
  align-items: stretch;
  gap: 0;
  will-change: transform;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-slide {
  flex: 0 0 100%;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  transform: none;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.testimonial-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  margin-top: -27px;
  transform: none;
}

.testimonial-nav--prev {
  left: 0;
}

.testimonial-nav--next {
  right: 0;
}

.testimonial-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: width 0.25s ease, background-color 0.25s ease;
}

.testimonial-dot.is-active {
  width: 22px;
  background: #fff;
}

.testimonial-dot:hover,
.testimonial-dot:focus-visible {
  background: rgba(255, 255, 255, 0.7);
  outline: none;
}

.cp-video-reviews .testimonial-dot {
  background: rgba(11, 18, 32, 0.18);
}

.cp-video-reviews .testimonial-dot.is-active {
  background: var(--ink, #0b1220);
}

.cp-video-reviews .testimonial-dot:hover,
.cp-video-reviews .testimonial-dot:focus-visible {
  background: rgba(11, 18, 32, 0.45);
}

.testimonial {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 32px;
  overflow: hidden;
  margin-top: 60px;
  background: rgba(7, 11, 22, 0.28);
}

.testimonial-slider .testimonial {
  margin-top: 0;
}

.testimonial-media {
  position: relative;
  min-height: 360px;
  margin: 0;
  padding: 0;
  border: 0;
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  overflow: hidden;
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-media:disabled {
  cursor: default;
}

.testimonial-media:disabled .testimonial-play {
  display: none;
}

.testimonial-media::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(to top, rgba(7, 11, 22, 0.72), transparent);
  pointer-events: none;
}

.testimonial-media:disabled::after {
  display: none;
}

.testimonial-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-thumb[hidden] {
  display: none;
}

.testimonial-media-fallback {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 360px;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.testimonial-media-fallback[hidden] {
  display: none;
}

.testimonial-play {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  bottom: auto;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%);
}

.testimonial-play::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  animation: testimonial-play-pulse 1.8s ease-out infinite;
  pointer-events: none;
}

.testimonial-play svg {
  position: relative;
  z-index: 1;
  margin-left: 3px;
  width: 24px;
  height: 24px;
  fill: #fff;
  color: #fff;
}

@keyframes testimonial-play-pulse {
  0% {
    transform: scale(0.92);
    opacity: 0.9;
  }
  70% {
    transform: scale(1.35);
    opacity: 0;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-play::before {
    animation: none;
    opacity: 0.55;
    transform: none;
  }
}

.quote {
  min-height: 360px;
  padding: 32px 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.quote.is-fading,
.testimonial-media.is-fading {
  opacity: 0;
  transform: translateY(10px);
}

.quote-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.quote-icon {
  flex: 0 0 auto;
  color: var(--yellow);
  line-height: 0;
}

.quote-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
  min-width: 0;
}

.quote-date {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
  white-space: nowrap;
}

.quote-icon-svg {
  width: 28px;
  height: 28px;
}

.quote-platform {
  display: block;
  height: 18px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  object-position: right center;
}

.quote-platform[hidden] {
  display: none;
}

.quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.35;
  letter-spacing: -0.03em;
  margin: 0;
  font-weight: 600;
  max-width: 100%;
}

.quote-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.quote-foot b {
  display: block;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.quote-verified {
  display: block;
  height: 24px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  object-position: right center;
}

.quote-verified[hidden] {
  display: none;
}

.review-video-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(5, 8, 16, 0.78);
  backdrop-filter: blur(8px);
}

.review-video-modal[hidden] {
  display: none !important;
}

.review-video-dialog {
  position: relative;
  width: min(960px, 100%);
}

.review-video-close {
  position: absolute;
  top: -46px;
  right: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.review-video-close:hover {
  background: rgba(255, 255, 255, 0.12);
}

.review-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

.review-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.controls {
  display: flex;
  gap: 9px;
}

.circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.circle:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

.circle.testimonial-nav:hover,
.circle.testimonial-nav:focus-visible {
  background: var(--red, #cd0f36);
  border-color: var(--red, #cd0f36);
  color: #fff;
  transform: scale(0.92);
  outline: none;
}

.circle.testimonial-nav:active {
  transform: scale(0.88);
}

.proof {
  /* Tall track = section stays pinned while the paragraph reveals */
  height: 280vh;
  padding: 0;
  margin: 0;
  background: transparent;
  color: #fff;
  overflow: visible;
}

.proof-sticky {
  position: sticky;
  top: 0;
  z-index: 2;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  background: var(--red);
  overflow: hidden;
}

.proof-inner {
  width: 100%;
  /* max-width: 1100px; */
}

.proof-eyebrow {
  display: inline-flex;
  opacity: 1;
  transform: none;
}

.proof-copy {
  margin: 48px 0 0;
  font-family: var(--font-display);
  font-size: 60px;
  line-height: 1.18;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: #fff;
}

.proof-copy .proof-word {
  display: inline;
  color: rgba(255, 255, 255, 0.22);
  transition: color 0.35s ease;
  will-change: color;
}

.proof-copy .proof-word.is-in {
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .proof {
    height: auto;
    min-height: 100vh;
  }

  .proof-sticky {
    position: relative;
    height: auto;
    min-height: 100vh;
    padding: 120px 0;
  }

  .proof-eyebrow,
  .proof-copy .proof-word {
    color: #fff;
    transition: none;
  }
}

.checkup-sec {
  position: relative;
}

.checkup {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(205, 15, 54, 0.95) 0%, transparent 55%),
    radial-gradient(90% 80% at 100% 100%, rgba(24, 48, 96, 0.55) 0%, transparent 50%),
    linear-gradient(135deg, #9e0c2c 0%, var(--red) 42%, #1a2748 100%);
  color: #fff;
  border-radius: 36px;
  padding: clamp(36px, 4vw, 56px) clamp(32px, 4vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(24px, 3.2vw, 48px);
  align-items: center;
  width: 100%;
  box-shadow: 0 22px 56px rgba(11, 18, 32, 0.18);
}

/* Desktop: wrap/container grid, tightened carefully */
@media (min-width: 1001px) {
  .section.checkup-sec,
  .service-page .section.checkup-sec {
    box-sizing: border-box;
    height: auto;
    max-height: none;
    min-height: 0;
    padding-block: clamp(56px, 7vh, 96px);
    overflow: visible;
  }

  .checkup-sec > .wrap,
  .service-page .checkup-sec > .wrap {
    display: block;
    width: 100%;
    min-height: 0;
  }

  .checkup-sec .checkup,
  .service-page .checkup-sec .checkup {
    width: 100%;
    max-width: none;
    margin: 0;
    height: auto;
    min-height: 0;
    padding: clamp(40px, 3.6vw, 60px) clamp(36px, 3.8vw, 64px);
    gap: clamp(28px, 3.4vw, 52px);
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: center;
    border-radius: 36px;
  }

  .checkup-sec .checkup-copy-col {
    max-width: 34rem;
    min-width: 0;
  }

  .checkup-sec .checkup .title,
  .checkup-sec #checkup-title,
  .service-page .section.checkup-sec .title,
  .service-page .checkup-sec .checkup .title,
  .service-page .checkup-sec #checkup-title {
    margin-top: 12px;
    font-size: clamp(34px, 3.4vw, 52px);
    line-height: 1.06;
  }

  .checkup-sec .checkup-copy {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.55;
  }

  .checkup-sec .checkup-points {
    margin-top: 16px;
    gap: 8px;
  }

  .checkup-sec .checkup-actions {
    margin-top: 18px;
  }

  .checkup-sec .checkup-board {
    width: 100%;
    max-width: none;
    min-width: 0;
    margin: 0;
    justify-self: stretch;
  }

  .checkup-sec .checkup-steps,
  .checkup-sec .checkup-visual {
    width: 100%;
    max-width: 420px;
    margin-inline: auto 0;
  }

  .checkup-sec .checkup-steps-stage {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 5 / 6;
    max-height: 480px;
  }
}

.checkup-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  right: -80px;
  top: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.checkup-copy-col {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.checkup .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.checkup .title {
  margin-top: 12px;
  color: #fff;
  max-width: 14ch;
}

#checkup-title {
  font-size: clamp(32px, 3.8vw, 50px);
  line-height: 1.06;
  max-width: 18ch;
}

.checkup-copy {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.55;
  max-width: 42ch;
}

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

.checkup-points li {
  position: relative;
  padding-left: 34px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.94);
}

.checkup-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.12em;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.checkup-points li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 0.55em;
  width: 7px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.checkup-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
}

.checkup .btn.dark {
  --btn-bg: #fff;
  --btn-color: var(--ink);
  --btn-border: rgba(255, 255, 255, 0.95);
  --btn-shadow: 0 14px 34px rgba(11, 18, 32, 0.18);
  --btn-sheen: rgba(24, 48, 96, 0.08);
}

.checkup .btn.dark:hover,
.checkup .btn.dark:focus-visible {
  --btn-bg: var(--ink);
  --btn-color: #fff;
  --btn-border: var(--ink);
  --btn-sheen: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.checkup-note {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.78);
}

.checkup-board {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: none;
  transition: none;
}

.checkup-visual {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  will-change: transform, opacity;
}

.checkup-visual.is-in {
  opacity: 1;
  transform: translateY(0);
}

.checkup-visual:not(.checkup-steps):not(.checkup-marquee):not(.checkup-slider).is-in {
  animation: checkup-visual-float 5.5s ease-in-out 0.85s infinite;
}

.checkup-visual:not(.checkup-steps) img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

/* Continuous checkup step slider */
.checkup-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.checkup-steps-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 6;
  max-height: 480px;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.04) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 40px rgba(11, 18, 32, 0.22);
}

.checkup-step {
  position: absolute;
  inset: 14px;
  z-index: 1;
  margin: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(0.985);
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.checkup-step.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 2;
}

.checkup-step.is-exit {
  opacity: 0;
  transform: scale(1.015);
  z-index: 1;
}

.checkup-steps .checkup-step img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(11, 18, 32, 0.18);
}

.checkup-steps-chrome {
  display: grid;
  gap: 10px;
  padding: 0 2px;
}

.checkup-steps-meta {
  position: static;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
  background: none;
  pointer-events: none;
}

.checkup-steps-count {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
  text-shadow: none;
}

.checkup-steps-sep {
  opacity: 0.45;
  margin: 0 0.12em;
}

.checkup-steps-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: right;
  text-shadow: none;
}

/* Thin transparent progress under the preview */
.checkup-steps-progress {
  position: relative;
  inset: auto;
  z-index: auto;
  width: 100%;
  height: 3px;
  margin: 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.checkup-steps-progress-bar {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.55) 0%,
    #fff 100%
  );
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.35);
  transform-origin: left center;
  transition: none;
}

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

@media (prefers-reduced-motion: reduce) {
  .checkup-visual {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none !important;
  }

  .checkup-visual.is-in {
    animation: none;
  }

  .checkup-step {
    transition: none;
  }

  .checkup-steps-progress-bar {
    transition: none !important;
  }
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 45px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-h, 86px) + 28px);
  z-index: 1;
}

.faq {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-heading {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.faq-q {
  width: 100%;
  padding: 25px 0;
  background: transparent;
  border: 0;
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.04em;
  cursor: pointer;
  transition: color var(--t), opacity var(--t);
}

.faq-q:hover {
  opacity: 0.72;
}

.faq-q:hover .plus {
  border-color: var(--ink);
  background: rgba(17, 18, 23, 0.06);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.45s ease, opacity 0.35s ease;
  color: rgba(11, 18, 32, 0.84);
  font-size: 18px;
  line-height: 1.65;
  padding-right: 50px;
  opacity: 0;
}

.faq-item.open .faq-a {
  max-height: 320px;
  padding-bottom: 28px;
  opacity: 1;
}

.plus {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: none;
  line-height: 1;
  font-weight: 500;
  transform-origin: center;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease,
    border-color 0.35s ease;
}

.faq-item.open .plus {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: rotate(45deg);
}

.final {
  padding: 0 16px 16px;
}

.final-inner {
  min-height: 720px;
  border-radius: 46px;
  background: var(--red);
  color: #fff;
  padding: 60px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bi-cubes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.95;
}

.final-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(120% 90% at 50% 40%,
      transparent 35%,
      rgba(7, 11, 22, 0.35) 100%);
}

.final-inner>.eyebrow,
.final-content {
  position: relative;
  z-index: 1;
}

.final h2 {
  position: relative;
  font-size: 128px;
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 0;
}

.final-bottom {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.final-bottom p {
  max-width: 880px;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

footer {
  color: #fff;
  padding: 100px 0 22px;
}

.foot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.7fr) minmax(0, 0.7fr) minmax(0, 0.85fr);
  gap: 56px;
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 60px;
}

.foot-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}

.foot-logo {
  width: 220px;
  max-width: 100%;
  height: auto;
  margin: 0 0 22px;
  filter: brightness(0) invert(1);
}

.foot-about {
  margin: 0;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.65;
  font-size: 15px;
}

.foot-social {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
}

.foot-social a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  transition: transform var(--t), border-color var(--t), background-color var(--t);
}

.foot-social a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: inherit;
  opacity: 1;
}

.foot-social img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.foot-menu h3,
.foot-contact h3 {
  margin: 0 0 16px;
}

.foot-contact-call {
  margin-top: 35px !important;
}

footer p {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.65;
}

footer h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.74);
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 2;
  font-size: 14px;
  font-weight: 700;
}

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

footer address {
  font-style: normal;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.65;
  margin-top: 18px;
}

.foot-accords {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  min-width: 0;
  padding: 36px 0 40px;
}

.foot-acc {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  overflow: visible;
  min-width: 0;
}

.foot-acc summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  transition: background-color var(--t), color var(--t);
}

.foot-acc[open] summary {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 18px 18px 0 0;
}

.foot-acc summary::-webkit-details-marker {
  display: none;
}

.foot-acc summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  color: rgba(255, 255, 255, 0.75);
  transition: transform 0.25s var(--ease);
}

.foot-acc[open] summary::after {
  content: "–";
}

.foot-acc summary:hover {
  color: #fff;
}

.foot-acc-panel {
  padding: 28px 28px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-height: 560px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb-dark) var(--scrollbar-track-dark);
}

.foot-acc-panel::-webkit-scrollbar {
  width: var(--scrollbar-size);
}

.foot-acc-panel::-webkit-scrollbar-track {
  background: var(--scrollbar-track-dark);
}

.foot-acc-panel::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb-dark);
  border-radius: 999px;
  border: 2px solid var(--scrollbar-track-dark);
}

.foot-acc-panel::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-dark-hover);
}

.foot-acc-group {
  min-width: 0;
}

.foot-acc-group+.foot-acc-group {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 901px) {
  .foot-acc--services .foot-acc-panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 32px;
    align-content: start;
  }

  .foot-acc--services .foot-acc-group+.foot-acc-group {
    margin-top: 0;
  }

  .foot-acc--industries .foot-acc-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px 32px;
    align-content: start;
  }
}

@media (max-width: 900px) and (min-width: 651px) {

  .foot-acc--services .foot-acc-panel,
  .foot-acc--industries .foot-acc-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 24px;
  }

  .foot-acc--services .foot-acc-group+.foot-acc-group {
    margin-top: 0;
  }
}

.foot-acc-title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.95);
}

.foot-acc-panel ul,
.foot-acc-list {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 2;
  font-size: 15px;
  font-weight: 600;
}

.foot-acc-panel li {
  min-width: 0;
}

.foot-acc-panel a {
  display: inline-block;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  overflow-wrap: anywhere;
}

footer li,
footer a,
footer b {
  transition: color var(--t), opacity var(--t), transform var(--t);
}

footer li:hover,
footer a:hover {
  color: var(--yellow);
  opacity: 1;
}

footer li:has(> a[href$="/case-study/astras.html"]),
footer li:has(> a[href$="/case-study/mu-studios.html"]),
footer li:has(> a[href$="/case-study/chatfleek.html"]),
footer li:has(> a[href$="/astras.html"]),
footer li:has(> a[href$="/mu-studios.html"]),
footer li:has(> a[href$="/chatfleek.html"]) {
  display: none;
}

footer .copyright span {
  transition: color var(--t);
}

footer .copyright span:hover {
  color: rgba(255, 255, 255, 0.8);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.74);
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.uwy.userway_p1 .userway_buttons_wrapper {
    top: inherit !important;
    right: inherit !important;
    bottom: 10px !important;
    left: 19px !important;
    transform: inherit !important;
}

.copyright > span:last-child {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.copyright > span:last-child a {
  padding: 0 10px;
}

.copyright > span:last-child a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(7, 11, 22, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  overscroll-behavior: contain;
}

/* Closed modal must not steal clicks — children with pointer-events:auto still hit otherwise */
.modal:not(.open),
.modal:not(.open) * {
  pointer-events: none !important;
}

.modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-box {
  position: relative;
  width: 1080px;
  max-width: 100%;
  max-height: 820px;
  overflow: hidden;
  background: #fff;
  border-radius: 28px;
  padding: 0;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 28px 80px rgba(7, 11, 22, 0.45);
  transform: translateY(22px) scale(0.975);
  transition: transform 0.45s var(--ease);
}

.modal.open .modal-box {
  transform: translateY(0) scale(1);
}

.modal-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  min-height: 760px;
  max-height: inherit;
}

.modal-showcase {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 20% 0%, rgba(205, 15, 54, 0.35) 0%, transparent 55%),
    linear-gradient(165deg, #15264a 0%, #0b1220 55%, #070b16 100%);
  color: #fff;
}

.modal-showcase-stage {
  position: absolute;
  inset: 0;
}

.modal-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.modal-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: none;
}

.modal.open .modal-showcase-stage {
  pointer-events: auto;
}

.modal-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 6.5s ease;
  filter: saturate(0.92) contrast(1.05);
}

.modal-slide.is-active img {
  transform: scale(1);
}

.modal-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 11, 22, 0.18) 0%, rgba(7, 11, 22, 0.2) 35%, rgba(7, 11, 22, 0.88) 100%),
    linear-gradient(90deg, rgba(24, 48, 96, 0.35) 0%, transparent 55%);
  pointer-events: none;
}

.modal-slide-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 28px 28px 92px;
}

.modal-slide-copy span {
  display: inline-block;
  margin-bottom: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.modal-slide-copy strong {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.modal-slide-copy p {
  margin: 12px 0 0;
  max-width: 32ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.55;
}

.modal-showcase-rail {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 78px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-rail-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: width 0.35s ease, background 0.35s ease;
}

.modal-rail-dot.is-active {
  width: 28px;
  background: #fff;
}

.modal-rail-dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.modal-showcase-foot {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 28px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 11, 22, 0.35);
  backdrop-filter: blur(8px);
}

.modal-showcase-foot img {
  width: 118px;
  height: auto;
  flex: 0 0 auto;
  opacity: 0.95;
}

.modal-showcase-foot p {
  margin: 0;
  max-width: 28ch;
  text-align: right;
  font-size: 11px;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.62);
}

.modal-form-pane {
  display: flex;
  flex-direction: column;
  min-height: 0;
  max-height: inherit;
  overflow: auto;
  padding: 42px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.modal-head {
  display: block;
  margin-bottom: 8px;
}

.modal-head .eyebrow {
  color: var(--red);
}

.modal-head h3 {
  font-size: 40px;
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin: 12px 0 0;
  color: var(--ink);
}

.modal-lead {
  margin: 12px 0 0;
  max-width: 42ch;
  color: rgba(11, 18, 32, 0.62);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
}

.modal .close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(17, 18, 23, 0.14);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(11, 18, 32, 0.08);
  transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.modal .close:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: rotate(90deg);
}

.modal .form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
  margin-top: 22px;
}

.modal .form label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(11, 18, 32, 0.78);
}

.modal .form input,
.modal .form select,
.modal .form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid rgba(24, 48, 96, 0.14);
  background: #fff;
  border-radius: 14px;
  padding: 14px 15px;
  color: var(--ink);
  font: inherit;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}

.modal .form input:hover,
.modal .form select:hover,
.modal .form textarea:hover {
  border-color: rgba(24, 48, 96, 0.32);
}

.modal .form input:focus,
.modal .form select:focus,
.modal .form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(24, 48, 96, 0.12);
}

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

.modal .modal-submit {
  --btn-bg: var(--red);
  --btn-color: #fff;
  --btn-border: var(--red);
  --btn-shadow: 0 14px 30px rgba(205, 15, 54, 0.28);
  --btn-sheen: rgba(255, 255, 255, 0.2);
  --btn-dock-bg: linear-gradient(145deg, rgba(255, 255, 255, 0.28) 0%, rgba(11, 18, 32, 0.16) 100%);
  margin-top: 4px;
  width: 100%;
  min-height: 56px;
}

.modal .modal-submit:hover,
.modal .modal-submit:focus-visible {
  --btn-bg: #b00d2e;
  --btn-border: #b00d2e;
  color: #fff;
}

@media (max-width: 900px) {
  .modal {
    padding: 0;
    align-items: end;
    justify-items: stretch;
  }

  .modal-box {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 100dvh;
    max-height: 100svh;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
  }

  .modal-layout {
    display: flex;
    flex-direction: column;
    flex: 0 1 auto;
    min-height: 0;
    height: auto;
    max-height: none;
  }

  .modal-showcase {
    height: 170px;
    min-height: 170px;
    max-height: 170px;
    flex: none;
  }

  .modal-slide-copy {
    padding: 18px 16px 42px;
  }

  .modal-slide-copy span {
    margin-bottom: 6px;
    font-size: 10px;
  }

  .modal-slide-copy strong {
    font-size: 22px;
    line-height: 1.12;
  }

  .modal-slide-copy p {
    display: none;
  }

  .modal-showcase-foot {
    display: none;
  }

  .modal-showcase-rail {
    left: 14px;
    right: auto;
    bottom: 12px;
    gap: 4px;
  }

  .modal-rail-dot,
  .modal-rail-dot.is-active {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
  background: transparent;
  }

  .modal-rail-dot::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.38);
    transition: width 0.35s ease, background 0.35s ease;
  }

  .modal-rail-dot.is-active::before {
    width: 22px;
    background: #fff;
  }

  .modal-form-pane {
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  }

  .modal-head {
    margin-bottom: 0;
  }

  .modal-head .eyebrow {
    font-size: 10px;
  }

  .modal-head h3 {
  font-size: 24px;
    line-height: 1.15;
    margin-top: 6px;
    letter-spacing: -0.04em;
  }

  .modal-lead {
    display: none;
  }

  .modal .close {
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
    font-size: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 22px rgba(7, 11, 22, 0.18);
  }

  .modal .form {
    grid-template-columns: 1fr 1fr;
    gap: 8px 10px;
    margin-top: 10px;
  }

  .modal .form .full,
  .modal .modal-submit {
    grid-column: 1 / -1;
  }

  .modal .form label {
    font-size: 12px;
    line-height: 1.2;
  }

  .modal .form input,
  .modal .form select,
  .modal .form textarea {
    margin-top: 4px;
    font-size: 16px;
    min-height: 42px;
    height: 42px;
    padding: 8px 12px;
    border-radius: 10px;
  }

  .modal .form textarea {
    min-height: 68px;
    height: 68px;
    resize: none;
  }

  .modal .modal-submit {
    min-height: 44px;
    height: 44px;
    margin-top: 2px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .modal-slide,
  .modal-slide img,
  .modal-rail-dot,
  .modal-box {
    transition: none;
  }

  .modal-slide img {
    transform: none;
  }
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.form label {
  font-size: 13px;
  font-weight: 800;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  padding: 15px;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}

.form input:hover,
.form select:hover,
.form textarea:hover {
  border-color: rgba(17, 18, 23, 0.35);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(24, 48, 96, 0.12);
}

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

/* Header, hero, and mega menu */
:root {
  --bi-navy: #070B16;
  --bi-purple: #183060;
  --bi-purple-deep: #0F1A33;
  --bi-yellow: #CD0F36;
  --bi-border: rgba(255, 255, 255, 0.18);
}

.bi-header {
  --header-h: 86px;
  padding: 0;
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: var(--header-h);
  color: #fff;
  background: transparent;
  border-bottom: 1px solid transparent;
  overflow: visible;
  transition:
    background 0.35s ease,
    color 0.35s ease,
    height 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.bi-header.js-header-pending {
  pointer-events: none;
}

.bi-header.js-header-pending .bi-logo,
.bi-header.js-header-pending .bi-nav-link,
.bi-header.js-header-pending .bi-header-phone,
.bi-header.js-header-pending .bi-menu-button {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {

  .bi-header.js-header-pending .bi-logo,
  .bi-header.js-header-pending .bi-nav-link,
  .bi-header.js-header-pending .bi-header-phone,
  .bi-header.js-header-pending .bi-menu-button {
    opacity: 1;
  }
}

.bi-header.is-scrolled {
  --header-h: 78px;
  color: var(--ink);
  background: rgba(244, 246, 249, 0.96);
  border-bottom-color: rgba(11, 18, 32, 0.08);
  box-shadow: 0 10px 28px rgba(11, 18, 32, 0.08);
}

:root:has(.bi-header.is-scrolled) {
  --header-h: 78px;
}

.bi-header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 10px;
  padding-bottom: 10px;
  overflow: visible;
}

.bi-logo {
  position: relative;
  width: 150px;
  flex: 0 0 auto;
  transition: opacity var(--t), transform var(--t);
}

.bi-logo:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.bi-logo img {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 0.35s ease;
}

.bi-logo-color {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.bi-header.is-scrolled .bi-logo-white {
  opacity: 0;
}

.bi-header.is-scrolled .bi-logo-color {
  opacity: 1;
}

.bi-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-left: auto;
}

.bi-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.25s ease;
}

.bi-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 1px;
  background: var(--bi-yellow);
  transition: right 0.3s ease;
}

.bi-nav-link:hover,
.bi-nav-link.is-active {
  color: #fff;
}

.bi-header.is-scrolled .bi-nav-link {
  color: rgba(11, 18, 32, 0.72);
}

.bi-header.is-scrolled .bi-nav-link:hover,
.bi-header.is-scrolled .bi-nav-link.is-active {
  color: var(--ink);
}

.bi-nav-link:hover::after,
.bi-nav-link.is-active::after {
  right: 0;
}

.bi-nav-caret {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-left: 4px;
  flex: 0 0 16px;
  color: currentColor;
  opacity: 0.78;
  transition:
    opacity 0.3s ease,
    color 0.3s ease,
    transform 0.35s var(--ease);
}

.bi-nav-caret svg {
  display: block;
  width: 16px;
  height: 16px;
  overflow: visible;
}

.bi-nav-link:hover .bi-nav-caret {
  opacity: 1;
  color: var(--bi-yellow, #cd0f36);
}

.bi-nav-link.is-active .bi-nav-caret {
  opacity: 1;
  color: var(--bi-yellow, #cd0f36);
  transform: rotate(180deg);
}

.bi-header.is-scrolled .bi-nav-link:hover .bi-nav-caret,
.bi-header.is-scrolled .bi-nav-link.is-active .bi-nav-caret {
  color: var(--bi-yellow, #cd0f36);
}

.bi-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  overflow: visible;
}

.bi-header-phone {
  --phone-btn-bg: rgba(255, 255, 255, 0.08);
  --phone-btn-border: rgba(255, 255, 255, 0.22);
  --phone-btn-ink: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 5px 18px 5px 5px;
  color: var(--phone-btn-ink);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 42%),
    var(--phone-btn-bg);
  border: 1px solid var(--phone-btn-border);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 10px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  isolation: isolate;
  transition:
    color var(--t),
    background var(--t),
    border-color var(--t),
    box-shadow var(--t),
    transform var(--t);
}

/* Soft moving sheen */
.bi-header-phone::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(105deg,
      transparent 36%,
      rgba(255, 255, 255, 0.18) 48%,
      transparent 60%);
  background-size: 220% 100%;
  background-position: 120% 0;
  animation: bi-phone-sheen 4.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

.bi-header.is-scrolled .bi-header-phone {
  --phone-btn-bg: rgba(24, 48, 96, 0.06);
  --phone-btn-border: rgba(24, 48, 96, 0.14);
  --phone-btn-ink: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 8px 22px rgba(11, 18, 32, 0.1);
}

.bi-header-phone.bi-btn-hover {
  overflow: visible;
}

.bi-header-phone>.bi-btn-phone-icon,
.bi-header-phone .bi-btn-label {
  position: relative;
  z-index: 1;
}

.bi-header-phone .bi-btn-label {
  justify-items: start;
  min-height: 44px;
  padding-block: 0;
  overflow: hidden;
}

.bi-header-phone .bi-btn-label-line {
  justify-content: flex-start;
  gap: 12px;
  min-height: 44px;
  padding-block: 0;
}

.bi-header-phone .bi-btn-text {
  font-variant-numeric: tabular-nums;
}

.bi-btn-phone-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  background: var(--bi-yellow, #cd0f36);
  transition:
    transform 0.45s var(--ease),
    background-color var(--t),
    box-shadow var(--t),
    border-radius var(--t);
}

/* Chamfered red call tile (not a plain circle) */
.bi-header-phone>.bi-btn-phone-icon {
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background:
    radial-gradient(120% 120% at 20% 15%, rgba(255, 255, 255, 0.28) 0%, transparent 45%),
    linear-gradient(145deg, #e31442 0%, #cd0f36 48%, #a00b2b 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 8px 18px rgba(205, 15, 54, 0.4);
  animation: bi-phone-badge-buzz 2.2s ease-in-out infinite;
}

.bi-header.is-scrolled .bi-header-phone>.bi-btn-phone-icon {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 6px 14px rgba(205, 15, 54, 0.28);
}

.bi-header-phone .bi-btn-phone-svg {
  width: 20px;
  height: 20px;
}

.bi-header-phone>.bi-btn-phone-icon::before,
.bi-header-phone>.bi-btn-phone-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(205, 15, 54, 0.65);
  opacity: 0;
  pointer-events: none;
}

.bi-header-phone>.bi-btn-phone-icon::before {
  animation: bi-phone-ring-wave 2.2s ease-out infinite;
}

.bi-header-phone>.bi-btn-phone-icon::after {
  animation: bi-phone-ring-wave 2.2s ease-out 0.35s infinite;
  border-color: rgba(205, 15, 54, 0.4);
}

.bi-btn-phone-svg {
  position: relative;
  z-index: 1;
  display: block;
  transform-origin: 50% 55%;
}

.bi-header-phone>.bi-btn-phone-icon .bi-btn-phone-svg {
  animation: bi-phone-handset 2.2s ease-in-out infinite;
}

.bi-header-phone:hover,
.bi-header-phone:focus-visible {
  color: #fff;
  --phone-btn-bg: rgba(205, 15, 54, 0.16);
  --phone-btn-border: rgba(205, 15, 54, 0.55);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 14px 32px rgba(205, 15, 54, 0.28);
}

.bi-header.is-scrolled .bi-header-phone:hover,
.bi-header.is-scrolled .bi-header-phone:focus-visible {
  color: var(--ink);
  --phone-btn-bg: rgba(205, 15, 54, 0.08);
  --phone-btn-border: rgba(205, 15, 54, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 12px 26px rgba(205, 15, 54, 0.16);
}

.bi-header-phone:hover>.bi-btn-phone-icon,
.bi-header-phone:focus-visible>.bi-btn-phone-icon {
  transform: rotate(18deg) scale(1.04);
  border-radius: 14px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 10px 22px rgba(205, 15, 54, 0.48);
  animation: none;
}

.bi-header-phone:hover>.bi-btn-phone-icon::before,
.bi-header-phone:hover>.bi-btn-phone-icon::after,
.bi-header-phone:focus-visible>.bi-btn-phone-icon::before,
.bi-header-phone:focus-visible>.bi-btn-phone-icon::after {
  animation: none;
  opacity: 0;
}

.bi-header-phone:hover>.bi-btn-phone-icon .bi-btn-phone-svg,
.bi-header-phone:focus-visible>.bi-btn-phone-icon .bi-btn-phone-svg {
  animation: none;
}

.bi-header-phone:hover::after,
.bi-header-phone:focus-visible::after {
  animation-duration: 1.6s;
  opacity: 1;
}

@keyframes bi-phone-sheen {

  0%,
  55%,
  100% {
    background-position: 140% 0;
  }

  70%,
  85% {
    background-position: -40% 0;
  }
}

/* Whole badge vibrates like a ringing phone */
@keyframes bi-phone-badge-buzz {

  0%,
  14%,
  32%,
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  2% {
    transform: translate(2px, -1px) rotate(8deg) scale(1.04);
  }

  4% {
    transform: translate(-2px, 1px) rotate(-8deg) scale(1.04);
  }

  6% {
    transform: translate(2px, 1px) rotate(7deg) scale(1.05);
  }

  8% {
    transform: translate(-2px, -1px) rotate(-6deg) scale(1.04);
  }

  10% {
    transform: translate(1px, 0) rotate(4deg) scale(1.03);
  }

  12% {
    transform: translate(0, 0) rotate(0deg) scale(1.02);
  }

  16% {
    transform: translate(2px, -1px) rotate(8deg) scale(1.04);
  }

  18% {
    transform: translate(-2px, 1px) rotate(-8deg) scale(1.04);
  }

  20% {
    transform: translate(2px, 0) rotate(6deg) scale(1.05);
  }

  22% {
    transform: translate(-1px, 1px) rotate(-5deg) scale(1.03);
  }

  24% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
}

/* Handset wiggle inside the badge */
@keyframes bi-phone-handset {

  0%,
  14%,
  32%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  2% {
    transform: rotate(18deg) scale(1.08);
  }

  4% {
    transform: rotate(-16deg) scale(1.08);
  }

  6% {
    transform: rotate(14deg) scale(1.1);
  }

  8% {
    transform: rotate(-12deg) scale(1.08);
  }

  10% {
    transform: rotate(8deg) scale(1.06);
  }

  12% {
    transform: rotate(0deg) scale(1.04);
  }

  16% {
    transform: rotate(16deg) scale(1.08);
  }

  18% {
    transform: rotate(-14deg) scale(1.08);
  }

  20% {
    transform: rotate(10deg) scale(1.1);
  }

  22% {
    transform: rotate(-8deg) scale(1.06);
  }

  24% {
    transform: rotate(0deg) scale(1);
  }
}

@keyframes bi-phone-ring-wave {
  0% {
    transform: scale(1);
    opacity: 0.75;
  }

  70% {
    transform: scale(1.75);
    opacity: 0;
  }

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

@media (prefers-reduced-motion: reduce) {

  .bi-header-phone::after,
  .bi-header-phone>.bi-btn-phone-icon,
  .bi-header-phone>.bi-btn-phone-icon::before,
  .bi-header-phone>.bi-btn-phone-icon::after,
  .bi-header-phone>.bi-btn-phone-icon .bi-btn-phone-svg {
    animation: none !important;
  }
}

.bi-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background-color var(--t), border-color var(--t), transform var(--t),
    color var(--t);
}

.bi-menu-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  transform: scale(1.05);
}

.bi-header.is-scrolled .bi-menu-button {
  border-color: rgba(11, 18, 32, 0.2);
  color: var(--ink);
}

.bi-header.is-scrolled .bi-menu-button:hover {
  background: rgba(11, 18, 32, 0.06);
  border-color: rgba(11, 18, 32, 0.45);
}

.bi-mega {
  position: fixed;
  inset: var(--header-h, 86px) 0 0;
  z-index: 75;
  overflow: hidden;
  color: white;
  background: var(--bi-navy);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease, inset 0.35s ease;
}

/* Dark panels — themed scrollbars */
.bi-mega-content,
.bi-mobile-menu {
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb-dark) var(--scrollbar-track-dark);
}

.bi-mega-content::-webkit-scrollbar,
.bi-mobile-menu::-webkit-scrollbar {
  width: var(--scrollbar-size);
  height: var(--scrollbar-size);
}

.bi-mega-content::-webkit-scrollbar-track,
.bi-mobile-menu::-webkit-scrollbar-track {
  background: var(--scrollbar-track-dark);
}

.bi-mega-content::-webkit-scrollbar-thumb,
.bi-mobile-menu::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb-dark);
  border-radius: 999px;
  border: 2px solid var(--scrollbar-track-dark);
}

.bi-mega-content::-webkit-scrollbar-thumb:hover,
.bi-mobile-menu::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-dark-hover);
}

.bi-mega-content::-webkit-scrollbar-corner,
.bi-mobile-menu::-webkit-scrollbar-corner {
  background: var(--scrollbar-track-dark);
}

.modal-box {
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

.modal-box::-webkit-scrollbar {
  width: var(--scrollbar-size);
  height: var(--scrollbar-size);
}

.modal-box::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
}

.modal-box::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
  border-radius: 999px;
  border: 2px solid var(--scrollbar-track);
}

.modal-box::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-hover);
}

.bi-mega.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.bi-mega-shell {
  height: 100%;
  max-height: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.bi-mega-grid {
  position: relative;
  height: 100%;
  max-height: 100%;
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  column-gap: 48px;
  align-items: stretch;
}

.bi-mega-rail {
  height: 100%;
  max-height: 100%;
  padding: 56px 0 48px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
  min-height: 0;
  padding-right: 36px;
  overflow: hidden;
}

.bi-mega-kicker {
  margin: 0 0 22px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.bi-mega-rail>button,
.bi-mega-rail>a:not(.bi-mega-feature) {
  position: relative;
  width: 100%;
  padding: 12px 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.76);
  text-align: left;
  font-size: 38px;
  font-weight: 650;
  letter-spacing: -0.04em;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.bi-mega-rail>button:hover,
.bi-mega-rail>button.is-active,
.bi-mega-rail>a:hover {
  color: white;
}

.bi-mega-rail>button:not(.bi-btn-hover):hover,
.bi-mega-rail>a:not(.bi-btn-hover):hover {
  transform: translateX(8px);
}

.bi-mega-rail>.bi-btn-hover {
  display: block;
  overflow: hidden;
}

.bi-mega-rail>.bi-btn-hover .bi-btn-label {
  display: grid;
  justify-items: start;
  width: 100%;
}

.bi-mega-rail>.bi-btn-hover .bi-btn-label-line {
  justify-content: flex-start;
  gap: 14px;
  width: 100%;
  max-width: 100%;
}

.bi-mega-rail>.bi-btn-hover .bi-btn-text {
  text-align: left;
}

.bi-mega-rail>.bi-btn-hover .bi-btn-arrow {
  margin-left: auto;
  font-size: 0.58em;
  opacity: 0.72;
}

.bi-mega-rail>.bi-btn-hover:hover .bi-btn-arrow,
.bi-mega-rail>.bi-btn-hover:focus-visible .bi-btn-arrow,
.bi-mega-rail>button.bi-btn-hover.is-active .bi-btn-arrow {
  opacity: 1;
}

.bi-mega-rail>button.bi-btn-hover:hover,
.bi-mega-rail>button.bi-btn-hover.is-active,
.bi-mega-rail>a.bi-btn-hover:hover,
.bi-mega-rail>a.bi-btn-hover:focus-visible {
  transform: none;
}

.bi-mega-feature {
  position: relative;
  display: flex;
  min-height: 176px;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  margin-top: auto;
  padding: 24px;
  overflow: hidden;
  border-radius: 22px;
  color: #fff;
  background: var(--bi-yellow);
  transition: transform var(--t), box-shadow var(--t), background-color var(--t);
}

.bi-mega-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(205, 15, 54, 0.28);
}

.bi-mega-feature::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -42px;
  top: -45px;
  border: 22px solid rgba(24, 48, 96, 0.35);
  border-radius: 50%;
  transition: transform var(--t-slow);
}

.bi-mega-feature:hover::after {
  transform: scale(1.08);
}

.bi-mega-feature span {
  position: relative;
  z-index: 1;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bi-mega-feature strong {
  position: relative;
  z-index: 1;
  max-width: 230px;
  font-size: 23px;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.bi-mega-feature i {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--bi-navy);
  color: white;
  font-style: normal;
  transition: transform var(--t), background-color var(--t);
}

.bi-mega-feature:hover i {
  transform: rotate(45deg) scale(1.06);
}

.bi-mega-content {
  padding: 56px 0 48px;
  position: relative;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.bi-resources-grid {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.bi-resources-grid.is-hidden {
  display: none;
}

.bi-resources-grid.is-fading {
  opacity: 0;
  transform: translateY(10px);
}

.bi-mega-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 42px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.25s ease;
}

.bi-mega-back:hover {
  color: white;
}

/* Desktop / laptop mega close — sits inside .bi-mega-grid */
.bi-mega-close {
  display: none;
  position: absolute;
  top: 7px;
  right: 15px;
  z-index: 5;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: none;
  cursor: pointer;
  transition:
    background-color var(--t-fast),
    border-color var(--t-fast),
    color var(--t-fast),
    transform var(--t-fast),
    box-shadow var(--t-fast);
}

.bi-mega-close-icon {
  display: block;
  width: 16px;
  height: 16px;
  pointer-events: none;
}

.bi-mega-close:hover,
.bi-mega-close:focus-visible {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  outline: none;
  transform: scale(1.05);
  box-shadow: 0 10px 22px rgba(205, 15, 54, 0.32);
}

.bi-mega-close:active {
  transform: scale(0.97);
}

@media (min-width: 961px) {
  .bi-mega-back {
    display: none;
  }

  .bi-mega-close {
    display: inline-flex;
  }

  /* Desktop/laptop: AI Business Automation first in What We Do */
  .bi-mega-what .bi-mega-what-card--single {
    order: -1;
  }
}

.bi-resources-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.bi-resources-grid>a,
.bi-mega-what-card {
  position: relative;
  min-height: 190px;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.bi-mega-what-card--single {
  display: flex;
  align-items: center;
  min-height: 0;
  padding: 22px 30px;
}

.bi-mega-what-card--single .bi-mega-what-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding-right: 0;
}

.bi-mega-what-card--single .bi-mega-what-head > span {
  display: block;
  max-width: none;
  flex: 1 1 auto;
  white-space: nowrap;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.bi-mega-what-card--single .bi-mega-what-head > b {
  position: static;
  top: auto;
  right: auto;
  flex: 0 0 auto;
  opacity: 0.75;
  line-height: 1;
}

.bi-resources-grid>a>span,
.bi-mega-what-head>span {
  display: block;
  max-width: 80%;
  font-size: 29px;
  font-weight: 650;
  letter-spacing: -0.045em;
}

.bi-resources-grid>a p {
  max-width: 370px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  transition: color var(--t);
}

.bi-resources-grid>a>svg,
.bi-resources-grid>a>b {
  position: absolute;
  top: 30px;
  right: 30px;
  transition: transform var(--t), opacity var(--t);
  opacity: 0.7;
}

.bi-mega-what-head {
  position: relative;
  display: block;
  padding-right: 40px;
  color: inherit;
  text-decoration: none;
}

.bi-mega-what-head>b {
  position: absolute;
  top: 0.15em;
  right: 0;
  transition: transform var(--t), opacity var(--t);
  opacity: 0.7;
}

.bi-mega-what-pages {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.bi-mega-what-pages a {
  display: block;
  width: fit-content;
  max-width: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.25s ease;
}

.bi-mega-what-pages a:hover {
  color: var(--bi-yellow, #f3d56f);
  background: transparent;
}

.bi-resources-grid>a:hover,
.bi-mega-what-card:hover {
  background: var(--bi-purple);
  color: white;
}

.bi-resources-grid>a:hover p {
  color: rgba(255, 255, 255, 0.92);
}

.bi-resources-grid>a:hover>b,
.bi-resources-grid>a:hover>svg,
.bi-mega-what-card:hover .bi-mega-what-head>b {
  opacity: 1;
  transform: translate(3px, -3px);
}

.bi-mega-what-card:hover .bi-mega-what-pages a {
  color: rgba(255, 255, 255, 0.9);
}

.bi-mega-what-card:hover .bi-mega-what-pages a:hover {
  color: var(--bi-yellow, #f3d56f);
}

.bi-mobile-menu {
  position: fixed;
  inset: var(--header-h, 86px) 0 0;
  z-index: 76;
  overflow-y: auto;
  color: white;
  background: var(--bi-navy);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease, inset 0.35s ease;
}

.bi-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.bi-mobile-inner {
  min-height: calc(100vh - var(--header-h, 86px));
  min-height: calc(100dvh - var(--header-h, 86px));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-block: 38px;
}

.bi-mobile-inner nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 65px;
  font-weight: 650;
  letter-spacing: -0.055em;
  transition: color 0.3s var(--ease);
}

.bi-mobile-inner nav a:hover {
  color: var(--bi-yellow);
}

.bi-mobile-inner nav a svg {
  width: 26px;
}

.bi-mobile-group {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.bi-mobile-group>summary,
.bi-mobile-nested>summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  list-style: none;
  cursor: pointer;
  padding: 13px 0;
  color: #fff;
}

.bi-mobile-group>summary {
  font-size: 48px;
  font-weight: 650;
  letter-spacing: -0.045em;
}

.bi-mobile-group>summary::-webkit-details-marker,
.bi-mobile-nested>summary::-webkit-details-marker {
  display: none;
}

.bi-mobile-group>summary::after,
.bi-mobile-nested>summary::after {
  content: "+";
  flex: 0 0 1.15em;
  width: 1.15em;
  margin-left: auto;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  opacity: 0.75;
}

.bi-mobile-group[open]>summary::after,
.bi-mobile-nested[open]>summary::after {
  content: "–";
}

.bi-mobile-nested {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bi-mobile-nested:last-child {
  border-bottom: 0;
}

.bi-mobile-nested>summary {
  padding: 11px 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.94);
}

.bi-mobile-nested-links {
  display: grid;
  gap: 2px;
  padding: 0 0 12px 14px;
}

.bi-mobile-sub {
  display: grid;
  gap: 2px;
  padding: 0 0 18px;
}

.bi-mobile-sub p {
  margin: 14px 0 6px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.bi-mobile-sub a {
  display: block;
  padding: 8px 0;
  border-bottom: 0;
  font-size: 16px !important;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.88);
}

.bi-mobile-meta {
  display: grid;
  gap: 7px;
  margin-top: 55px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  text-align: center;
  justify-items: center;
}

.bi-mobile-meta p {
  margin: 0 0 8px;
  color: white;
  font-weight: 800;
}

.bi-mobile-meta a {
  transition: color var(--t), opacity var(--t), transform var(--t);
}

.bi-mobile-meta a:hover {
  color: var(--bi-yellow);
}

.bi-inspired-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  height: 100svh;
  max-height: 100vh;
  max-height: 100svh;
  min-height: 0;
  padding: 98px 0 18px;
  color: white;
  box-sizing: border-box;
}

.bi-hero-shell {
  position: relative;
  flex: 0 1 auto;
  align-self: center;
  /* Same grid as site wrap — side inset in width, no extra padding */
  width: min(calc(100% - 32px), var(--container));
  max-width: var(--container);
  max-height: min(78vh, 720px);
  margin-inline: auto;
  padding-inline: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
  box-sizing: border-box;
}

.bi-hero-stage {
  position: relative;
  flex: 0 1 auto;
  min-height: 0;
  width: 100%;
  isolation: isolate;
}

.bi-hero-frame {
  position: absolute;
  z-index: 0;
  inset: -2px -2px 0 -2px;
  border-radius: 26px 26px 0 0;
  padding: 3px 3px 0;
  pointer-events: none;
  background: linear-gradient(180deg,
      rgba(205, 15, 54, 0.55) 0%,
      rgba(205, 15, 54, 0.28) 42%,
      rgba(205, 15, 54, 0.08) 78%,
      rgba(205, 15, 54, 0) 100%);
  box-shadow: none;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transform: none;
  will-change: opacity;
}

.bi-hero-frame::after {
  display: none;
}

.bi-hero-card {
  position: relative;
  z-index: 1;
  display: grid;
  flex: 0 1 auto;
  width: 100%;
  height: min(70vh, 640px);
  max-height: min(70vh, 640px);
  min-height: 0;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.95fr);
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(90% 80% at 100% 0%, rgba(205, 15, 54, 0.22) 0%, transparent 42%),
    radial-gradient(70% 60% at 0% 100%, rgba(24, 48, 96, 0.55) 0%, transparent 50%),
    linear-gradient(135deg, rgb(0 15 41) 0%, rgb(0 5 24) 55%, #000d24 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 24px 64px rgba(0, 0, 0, 0.35);
}

.bi-inspired-hero.is-hero-in .bi-hero-frame {
  opacity: 1;
}

.bi-inspired-hero.js-hero-pending .bi-hero-label,
.bi-inspired-hero.js-hero-pending .bi-hero-title,
.bi-inspired-hero.js-hero-pending .bi-hero-lead,
.bi-inspired-hero.js-hero-pending .bi-hero-proof,
.bi-inspired-hero.js-hero-pending .bi-hero-cta,
.bi-inspired-hero.js-hero-pending .bi-hero-ai,
.bi-inspired-hero.js-hero-pending .bi-hero-visual,
.bi-inspired-hero.js-hero-pending .bi-hero-bottom,
.bi-inspired-hero.js-hero-pending .bi-hero-trust {
  opacity: 0;
}

.bi-hero-line {
  display: block;
  position: relative;
  overflow: visible;
}

.bi-hero-word {
  display: inline-block;
  white-space: nowrap;
}

.bi-hero-char {
  display: inline-block;
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
}

.bi-hero-accent-rule {
  display: block;
  width: 100%;
  max-width: 12.5em;
  height: 3px;
  margin-top: 0.28em;
  border-radius: 999px;
  background: linear-gradient(90deg,
      var(--bi-yellow) 0%,
      #cd0f36 55%,
      transparent 100%);
  transform-origin: left center;
  pointer-events: none;
}

.bi-hero-accent-glow {
  text-shadow: 0 0 0 transparent;
}

/* Cinematic FX layers (injected by JS) */
.bi-hero-flash {
  position: absolute;
  left: 4%;
  right: 4%;
  top: 50%;
  z-index: 30;
  height: 2px;
  margin-top: -1px;
  pointer-events: none;
  border-radius: 999px;
  background: linear-gradient(90deg,
      transparent 0%,
      #cd0f36 18%,
      #ffffff 50%,
      #cd0f36 82%,
      transparent 100%);
  box-shadow:
    0 0 18px 2px rgba(205, 15, 54, 0.85),
    0 0 48px 8px rgba(205, 15, 54, 0.35);
  transform: scaleX(0);
  transform-origin: center;
}

.bi-hero-bloom {
  position: absolute;
  inset: -10%;
  z-index: 28;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%,
      rgba(205, 15, 54, 0.45) 0%,
      rgba(24, 48, 96, 0.18) 38%,
      transparent 68%);
  opacity: 0;
  transform: scale(0.6);
}

.bi-hero-cta.is-hero-pulse {
  animation: bi-hero-cta-pulse 1.8s ease-in-out 1;
}

@keyframes bi-hero-cta-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(205, 15, 54, 0);
  }

  40% {
    box-shadow: 0 0 0 14px rgba(205, 15, 54, 0), 0 18px 40px rgba(205, 15, 54, 0.35);
  }

  70% {
    box-shadow: 0 0 0 0 rgba(205, 15, 54, 0.18);
  }
}

.bi-hero-trust-scroll.is-hero-bob {
  animation: bi-hero-bob 1.6s ease-in-out infinite;
}

@keyframes bi-hero-bob {

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

  50% {
    transform: translateY(5px);
  }
}

@media (prefers-reduced-motion: reduce) {

  .bi-inspired-hero.js-hero-pending .bi-hero-label,
  .bi-inspired-hero.js-hero-pending .bi-hero-title,
  .bi-inspired-hero.js-hero-pending .bi-hero-lead,
  .bi-inspired-hero.js-hero-pending .bi-hero-proof,
  .bi-inspired-hero.js-hero-pending .bi-hero-cta,
  .bi-inspired-hero.js-hero-pending .bi-hero-ai,
  .bi-inspired-hero.js-hero-pending .bi-hero-visual,
  .bi-inspired-hero.js-hero-pending .bi-hero-bottom,
  .bi-inspired-hero.js-hero-pending .bi-hero-trust {
    opacity: 1;
  }

  .bi-hero-cta.is-hero-pulse,
  .bi-hero-trust-scroll.is-hero-bob {
    animation: none !important;
  }

  .bi-hero-frame {
    opacity: 1;
  }
}

.bi-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(105deg,
      rgba(7, 11, 22, 0.28) 0%,
      rgba(7, 11, 22, 0.08) 46%,
      rgba(7, 11, 22, 0.02) 100%);
}

.bi-hero-copy {
  position: relative;
  z-index: 3;
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  min-width: 0;
  min-height: 0;
  max-width: none;
  padding: 36px 32px 28px 34px;
}

.bi-hero-label {
  margin: 0;
  flex: 0 0 auto;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  padding: 9px 18px;
  border: 2px solid rgb(255 255 255 / 10%);
  width: fit-content;
  border-radius: 40px;
  background-color: rgb(255 255 255 / 05%);
  backdrop-filter: blur(10px);
}

.bi-hero-title {
  margin: 0;
  padding-block: 0.06em;
  max-width: 100%;
  overflow: visible;
  font-family: var(--font-display);
  font-size: 74px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
  text-transform: none;
  text-wrap: balance;
  color: #fff;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}

.bi-hero-title>span,
.bi-hero-title .bi-hero-line {
  display: block;
}

.bi-hero-title-lead {
  font-size: 0.52em;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.9);
}

.bi-hero-title-lead+.bi-hero-title-lead {
  margin-bottom: 0.4em;
}

.bi-hero-accent {
  color: #fff;
  text-shadow: none;
}

.bi-hero-highlight,
.bi-hero-highlight .bi-hero-char {
  color: var(--red, #cd0f36);
}

.bi-hero-lead {
  margin: 2px 0 0;
  max-width: 60ch;
  color: rgb(255 255 255 / 75%);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.15vw, 16px);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}

.bi-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  margin-top: 6px;
}

.bi-hero-ai {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  margin: 0;
  width: 100%;
}

.bi-hero-ai-label {
  flex: 0 0 auto;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.bi-hero-ai-links {
  display: flex;
  flex: 0 1 auto;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: end;
  gap: 10px 30px;
  width: 100%;
  max-width: 50%;
  margin-left: auto;
  min-width: 0;
}

.bi-hero-ai-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  height: auto;
  min-height: 40px;
  padding: 6px 12px 6px 6px;
  flex: 0 0 auto;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.bi-hero-ai-link img {
  width: 40px;
  height: 40px;
  display: block;
  flex: 0 0 auto;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.bi-hero-ai-name {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.92);
}

.bi-hero-ai-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.bi-hero-ai-link.is-gemini img {
  width: 22px;
  height: 22px;
  margin: 3px;
  object-fit: contain;
}

.bi-hero-ai-link.is-gemini img {
  width: 40px;
  height: 35px;
}

.bi-hero-ai-links {
  gap: 10px 15px;
}

a.bi-hero-ai-link.is-claude {
  padding-inline: 30px;
  border-left: 1px solid rgb(255 255 255 / 15%);
  padding-top: 0;
  padding-bottom: 0;
  border-right: 1px solid rgb(255 255 255 / 15%);
}

a.bi-hero-ai-link.is-perplexity {
  padding-right: 30px;
  border-right: 1px solid rgb(255 255 255 / 15%);
  padding-top: 0;
  padding-bottom: 0;
}

.bi-hero-ai-link:hover {
  background-color: transparent;
}

.bi-hero-visual {
  position: relative;
  z-index: 2;
  grid-column: 2;
  grid-row: 1;
  display: block;
  min-width: 0;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  user-select: none;
  touch-action: pan-y;
}

.bi-hero-visual::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: auto auto 0 0;
  width: 36%;
  height: 99.8%;
  pointer-events: none;
  background: linear-gradient(90deg, rgb(1 8 26) 0%, rgb(0 13 36 / 0%) 100%);
}

.bi-hero-visual::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 400px;
  max-width: 72%;
  aspect-ratio: 1;
  top: 8%;
  right: 4%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(205, 15, 54, 0.26) 0%, transparent 68%);
  filter: blur(8px);
  pointer-events: none;
}

.bi-hero-anim-frames {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 99%;
  height: 99%;
  margin: auto;
  overflow: hidden;
  border-radius: 20px
}

.bi-hero-anim-frames.is-loading::after {
  content: "";
  position: absolute;
  z-index: 3;
  right: 18px;
  top: 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-top-color: rgba(255, 255, 255, 0.9);
  animation: bi-hero-frame-spin 0.7s linear infinite;
  pointer-events: none;
}

@keyframes bi-hero-frame-spin {
  to {
    transform: rotate(360deg);
  }
}

.bi-hero-anim-img {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  pointer-events: none;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.4));
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  min-width: 100% !important;
  object-fit: cover;
  object-position: top center;
}

.bi-hero-bottom {
  position: relative;
  z-index: 7;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 0;
  width: 100%;
  padding: 14px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  font-family: var(--font-body);
}

.bi-hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 8px 12px 8px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.bi-hero-proof>span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--bi-yellow);
  background: rgba(7, 8, 31, 0.55);
}

.bi-hero-proof p {
  display: grid;
  gap: 2px;
  margin: 0;
}

.bi-hero-proof strong {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bi-hero-proof small {
  color: rgba(255, 255, 255, 0.84);
  font-size: 10px;
  line-height: 1.35;
  letter-spacing: 0;
}

.bi-hero-cta {
  --btn-bg: var(--bi-yellow, #cd0f36);
  --btn-color: #fff;
  --btn-border: rgba(255, 255, 255, 0.14);
  --btn-shadow: 0 12px 28px rgba(205, 15, 54, 0.32);
  --btn-sheen: rgba(255, 255, 255, 0.22);
  --btn-dock-bg: linear-gradient(145deg, rgba(255, 255, 255, 0.28) 0%, rgba(11, 18, 32, 0.18) 100%);
  --btn-dock-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  gap: 0;
  min-height: 50px;
  margin: 0;
  padding: 5px 6px 5px 18px;
  border-radius: 999px;
  color: var(--btn-color);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, transparent 42%),
    var(--btn-bg);
  border: 1px solid var(--btn-border);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    var(--btn-shadow);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  transition:
    color var(--t),
    background var(--t),
    border-color var(--t),
    box-shadow var(--t),
    transform var(--t);
}

.bi-hero-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(105deg,
      transparent 36%,
      var(--btn-sheen) 48%,
      transparent 60%);
  background-size: 220% 100%;
  background-position: 120% 0;
  animation: bi-cta-sheen 4.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

.bi-hero-cta.bi-btn-hover {
  overflow: hidden;
}

.bi-hero-cta .bi-btn-label {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  justify-items: center;
  width: max-content;
  max-width: 100%;
  overflow: hidden;
  line-height: 1.35;
}

.bi-hero-cta .bi-btn-label-line {
  gap: 10px;
  min-height: 1.35em;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.bi-hero-cta .bi-btn-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  background: var(--btn-dock-bg);
  box-shadow: var(--btn-dock-shadow);
  font-size: 12px;
  line-height: 1;
}

.bi-hero-cta:hover,
.bi-hero-cta:focus-visible {
  --btn-bg: #e4254a;
  color: #fff;
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 16px 34px rgba(205, 15, 54, 0.4);
}

.bi-hero-cta:hover::after,
.bi-hero-cta:focus-visible::after {
  animation-duration: 1.7s;
  opacity: 1;
}

.bi-hero-trust {
  display: flex;
  flex: 0 0 auto;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 2px 60px 0 37px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bi-hero-trust p {
  margin: 0 auto 0 0;
  color: white;
}

.bi-hero-trust-services {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 14px;
}

.bi-hero-trust-services a {
  position: static;
  display: inline;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.bi-hero-trust-services a:hover,
.bi-hero-trust-services a:focus-visible {
  color: #fff;
  background: transparent;
  border-color: transparent;
  transform: none;
  outline: none;
}

.bi-hero-trust i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--bi-yellow);
  flex: 0 0 auto;
}

.bi-hero-trust-scroll {
  position: absolute;
  right: 0;
  bottom: 4px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: white;
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.bi-hero-trust-scroll:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(3px);
}

a,
button,
.btn,
.service-btn,
.process-btn,
.industry-btn,
.faq-q,
.circle,
.close,
.bi-nav-link,
.bi-header-phone,
.bi-menu-button,
.bi-mega-back,
.bi-hero-cta,
.bi-resources-grid a {
  -webkit-tap-highlight-color: transparent;
}

.stat {
  transition: background-color 0.3s var(--ease);
}

.stat:hover {
  background: rgba(17, 18, 23, 0.03);
}

/* Scroll to top — circular progress border */
.bi-fixed-cta {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 88;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  padding: 18px 12px;
  border: 0;
  border-radius: 14px 0 0 14px;
  color: #fff;
  background: linear-gradient(160deg, #e31442 0%, #cd0f36 48%, #a00b2b 100%);
  box-shadow: 0 12px 28px rgba(160, 11, 43, 0.28);
  cursor: pointer;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

.bi-fixed-cta span {
  display: block;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: rotate(180deg);
}

.bi-fixed-cta:hover,
.bi-fixed-cta:focus-visible {
  transform: translateY(-50%) translateX(-2px);
  box-shadow: 0 16px 34px rgba(160, 11, 43, 0.36);
  outline: none;
}

body.has-modal-open .bi-fixed-cta {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 700px) {
  .bi-fixed-cta {
    min-width: 40px;
    padding: 14px 9px;
    border-radius: 12px 0 0 12px;
  }

  .bi-fixed-cta span {
    font-size: 11px;
    letter-spacing: 0.12em;
  }
}

.bi-scroll-top {
  position: fixed;
  right: 82px;
  bottom: 18px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(7, 11, 22, 0.92);
  box-shadow: 0 12px 32px rgba(7, 11, 22, 0.28);
  cursor: pointer;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px) scale(0.92);
  transition:
    width 0.4s var(--ease),
    opacity 0.35s var(--ease),
    visibility 0.35s var(--ease),
    transform 0.4s var(--ease),
    background-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.bi-scroll-top:hover .bi-scroll-top-icon {
    padding-right: 6px;
}

.bi-scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.bi-scroll-top-ring {
  position: absolute;
  inset: 0;
  width: 56px;
  height: 56px;
  transform: rotate(-90deg);
  pointer-events: none;
}

.bi-scroll-top-track,
.bi-scroll-top-progress {
  fill: none;
  stroke-width: 2.5;
}

.bi-scroll-top-track {
  stroke: rgba(255, 255, 255, 0.14);
}

.bi-scroll-top-progress {
  stroke: #fff;
  stroke-linecap: round;
  stroke-dasharray: 150.8;
  stroke-dashoffset: 150.8;
  transition: stroke-dashoffset 0.12s linear;
}

.bi-scroll-top-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.35s var(--ease), opacity 0.3s var(--ease);
}

.bi-scroll-top-label {
  position: relative;
  z-index: 1;
  max-width: 0;
  margin-right: 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(6px);
  transition:
    max-width 0.4s var(--ease),
    margin 0.4s var(--ease),
    opacity 0.3s var(--ease),
    transform 0.35s var(--ease);
}

.bi-scroll-top:hover,
.bi-scroll-top:focus-visible {
  width: 148px;
  background: #0b1220;
  box-shadow: 0 16px 36px rgba(205, 15, 54, 0.22);
  outline: none;
}

.bi-scroll-top:hover .bi-scroll-top-icon,
.bi-scroll-top:focus-visible .bi-scroll-top-icon {
  transform: translateY(-2px);
}

.bi-scroll-top:hover .bi-scroll-top-label,
.bi-scroll-top:focus-visible .bi-scroll-top-label {
  max-width: 90px;
  margin-right: 16px;
  opacity: 1;
  transform: translateX(0);
}

.bi-scroll-top:active {
  transform: translateY(1px) scale(0.98);
}

@media (max-width: 620px) {
  .bi-scroll-top {
    right: 14px;
    bottom: 14px;
  }

  .bi-scroll-top:hover,
  .bi-scroll-top:focus-visible {
    width: 56px;
  }

  .bi-scroll-top:hover .bi-scroll-top-label,
  .bi-scroll-top:focus-visible .bi-scroll-top-label {
    max-width: 0;
    margin-right: 0;
    opacity: 0;
  }
}

/* Viewport reveal — quick fade + slight rise (no long clip wipe) */
.bi-reveal {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition:
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

span.bi-reveal,
a.bi-reveal:not(.btn) {
  display: inline-block;
  max-width: 100%;
}

.bi-reveal.is-in {
  opacity: 1;
  transform: none;
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  .bi-reveal {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}
footer.testimonial-foot:after {
  background: transparent;
}
