:root {
  --red: #e40914;
  --red-dark: #ba0610;
  --black: #030304;
  --ink: #161719;
  --muted: #626870;
  --line: #e8e8e8;
  /* --site-width: 1110px; */
  --site-width: 1320px;
  --section-space: 74px;
  --card-shadow: 0 14px 34px rgba(11, 14, 20, .08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  font-size: 14px;
  font-weight: 400;
}

body.loader-active {
  overflow: hidden;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 50% 46%, rgba(228, 9, 20, .2), transparent 25%),
    radial-gradient(circle at 82% 18%, rgba(228, 9, 20, .16), transparent 23%),
    linear-gradient(135deg, #050508 0%, #0b0d14 48%, #020203 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity .55s ease, visibility .55s ease;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-grid {
  position: absolute;
  inset: -20%;
  opacity: .52;
  background:
    linear-gradient(rgba(228, 9, 20, .1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(228, 9, 20, .1) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, #000 0 38%, transparent 72%);
  animation: loaderGrid 4.8s linear infinite;
}

.loader-core {
  position: relative;
  z-index: 1;
  width: min(330px, calc(100vw - 48px));
  min-height: 330px;
  display: grid;
  place-items: center;
  text-align: center;
}

.loader-orbit {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  box-shadow:
    inset 0 0 38px rgba(228, 9, 20, .08),
    0 0 72px rgba(228, 9, 20, .14);
  animation: loaderSpin 5.2s linear infinite;
}

.loader-orbit::before,
.loader-orbit::after {
  content: "";
  position: absolute;
  inset: 32px;
  border-radius: 50%;
  border: 1px dashed rgba(228, 9, 20, .38);
}

.loader-orbit::after {
  inset: 74px;
  border-style: solid;
  border-color: rgba(255, 255, 255, .16);
  animation: loaderSpin 3s linear infinite reverse;
}

.loader-orbit span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 22px rgba(228, 9, 20, .95);
}

.loader-orbit span:nth-child(1) {
  top: 18px;
  left: 50%;
}

.loader-orbit span:nth-child(2) {
  right: 42px;
  bottom: 58px;
  width: 7px;
  height: 7px;
}

.loader-orbit span:nth-child(3) {
  left: 36px;
  bottom: 104px;
  width: 6px;
  height: 6px;
  background: #fff;
}

.loader-mark {
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 28px;
  background: rgba(255, 255, 255, .06);
  box-shadow:
    0 20px 56px rgba(0, 0, 0, .35),
    inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
  animation: loaderMark 1.8s ease-in-out infinite;
}

.loader-mark img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(228, 9, 20, .55));
}

.loader-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 38px;
}

.loader-copy strong {
  display: block;
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.loader-copy small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.loader-progress {
  position: absolute;
  left: 50%;
  bottom: 12px;
  width: min(190px, 62vw);
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  transform: translateX(-50%);
}

.loader-progress span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, var(--red), #fff);
  animation: loaderProgress 1.15s ease-in-out infinite;
}

/* Lightweight fallback so the page still holds together before Bootstrap loads. */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -12px;
  margin-left: -12px;
}

.row>* {
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
}

.g-3 {
  row-gap: 16px;
}

.g-4 {
  row-gap: 24px;
}

.g-5 {
  row-gap: 48px;
}

.align-items-center {
  align-items: center;
}

.position-relative {
  position: relative;
}

.text-center {
  text-align: center;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
}

a {
  text-decoration: none;
}

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

.site-header {
  padding: 18px 0;
  background: transparent;
  transition: padding .25s ease, background .25s ease, box-shadow .25s ease;
  backdrop-filter: none;
}

.site-header.scrolled {
  padding: 8px 0;
  background: rgba(0, 0, 0, .94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
  backdrop-filter: blur(10px);
}

.navbar {
  padding: 0;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  min-width: 142px;
}

.brand-lockup:hover {
  color: #fff;
}

.footer-logo,
.header-logo {
  width: 170px;
}

.footer-logo img,
.header-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* display: block; */
  /* filter: drop-shadow(0 0 10px rgba(237, 16, 24, .32)); */
}

.brand-lockup span {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
}

.navbar-nav {
  gap: 26px;
}

.nav-link {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 18px 0 !important;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--red);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--red);
}

.navbar-toggler {
  width: 44px;
  height: 40px;
  border: 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler span {
  width: 25px;
  height: 2px;
  background: #fff;
  display: block;
  margin-left: auto;
}

.btn-brand {
  --bs-btn-padding-x: 22px;
  --bs-btn-padding-y: 12px;
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--red);
  --bs-btn-border-color: var(--red);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--red-dark);
  --bs-btn-hover-border-color: var(--red-dark);
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 10px 24px rgba(237, 16, 24, .22);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn-brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(237, 16, 24, .34);
}

.btn-brand i {
  margin-left: 8px;
}

.hero-section {
  min-height: 800px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #000;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .9) 35%, rgba(0, 0, 0, .54) 63%, rgba(0, 0, 0, .25) 100%);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-pulse {
  position: absolute;
  right: 10%;
  top: 26%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 16, 24, .28), transparent 68%);
  filter: blur(10px);
  animation: pulseGlow 3.8s ease-in-out infinite;
  pointer-events: none;
}

.min-vh-hero {
  min-height: 800px;
  padding-top: 96px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}

.hero-section h1 {
  margin: 0;
  font-size: clamp(42px, 5.1vw, 58px);
  line-height: .97;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-section h1 span,
.section-title span {
  color: var(--red);
}

.hero-section h2 {
  margin: 16px 0 20px;
  color: #fff;
  text-transform: uppercase;
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 500;
}

.hero-copy {
  max-width: 505px;
  color: #e6e6e6;
  line-height: 1.75;
  font-size: 14px;
}

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

.hero-form-card {
  position: relative;
  /* max-width: 500px; */
  max-width: 650px;
  margin-left: auto;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 14%, rgba(228, 9, 20, .18), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .045));
  box-shadow:
    0 26px 70px rgba(0, 0, 0, .44),
    inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
}

.hero-form-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), #fff, var(--red), transparent);
}

.hero-form-card::after {
  content: "";
  position: absolute;
  right: -58px;
  bottom: -58px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(228, 9, 20, .34);
  border-radius: 50%;
  box-shadow: inset 0 0 34px rgba(228, 9, 20, .18);
  pointer-events: none;
}

.hero-form-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
}

.hero-form-head span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--red);
  box-shadow: 0 14px 28px rgba(228, 9, 20, .26);
}

.hero-form-head small {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-form-head h3 {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
}

.hero-contact-form {
  position: relative;
  z-index: 1;
}

.hero-contact-form .form-control,
.hero-contact-form .form-select {
  min-height: 48px;
  border-color: rgba(255, 255, 255, .14);
  background-color: rgba(255, 255, 255, .94);
}

.hero-contact-form textarea.form-control {
  min-height: 88px;
}

.hero-contact-form .btn-brand {
  width: 100%;
  min-height: 48px;
  justify-content: center;
}

.play-link {
  color: #fff;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.play-circle {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 13px;
  transition: background .25s ease, transform .25s ease;
}

.play-link:hover {
  color: #fff;
}

.play-link:hover .play-circle {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.08);
}

.section-pad {
  padding: var(--section-space) 0;
}

.section-title {
  margin: 0 0 22px;
  font-weight: 600;
  /* line-height: 1.08; */
  font-size: clamp(28px, 2.9vw, 40px);
  letter-spacing: 0;
}

.section-title.light {
  color: #fff;
}

.muted {
  color: var(--muted);
  line-height: 1.75;
  font-size: 13px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.stat-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 18px;
  align-items: center;
}

.stat-icon,
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-grid;
  place-items: center;
  color: var(--red);
  background: #ffe7e8;
  font-size: 25px;
  font-weight: 900;
}

.stat-icon i,
.service-icon i {
  font-size: 20px;
}

.stat-item strong {
  font-size: 26px;
  line-height: 1;
}

.stat-item small {
  color: #36393d;
  font-weight: 700;
  grid-column: 2;
  font-size: 11px;
}

.about-image {
  position: relative;
  max-width: 680px;
  margin-left: auto;
}

.about-image img {
  width: 100%;
  min-height: 330px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--card-shadow);
}

.mission-card {
  position: absolute;
  right: -44px;
  bottom: 28px;
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
}

.mission-card span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 900;
}

.mission-card strong {
  font-size: 18px;
  line-height: 1.25;
}

.services-section {
  padding: var(--section-space) 0;
}

.service-card,
.testimonial-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px 22px;
  /* box-shadow: var(--card-shadow); */
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.service-card:hover,
.testimonial-card:hover {
  transform: translateY(-7px);
  border-color: rgba(228, 9, 20, .32);
  box-shadow: 0 18px 38px rgba(15, 23, 42, .12);
}

.service-icon {
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  margin-bottom: 22px;
  transition: transform .35s cubic-bezier(.2, .7, .2, 1), box-shadow .35s ease;
}

.service-card:hover .service-icon {
  transform: translateY(-4px) rotate(-5deg) scale(1.08);
  box-shadow: 0 10px 24px rgba(228, 9, 20, .3);
}

.service-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 14px;
  transition: color .25s ease;
}

.service-card:hover h3 {
  color: var(--red);
}

.service-card p {
  color: var(--muted);
  line-height: 1.7;
  min-height: 82px;
  font-size: 13px;
}

.service-card a {
  color: var(--red);
  font-weight: 900;
  font-size: 14px;
}

.service-card a i {
  margin-left: 6px;
  font-size: 12px;
  transition: transform .2s ease;
}

.service-card a:hover i {
  transform: translateX(6px);
}

.services-slider {
  margin-top: 28px;
  padding: 2px 2px 18px;
}

.services-slider .swiper-wrapper {
  align-items: stretch;
}

.services-slider .swiper-slide {
  height: auto;
}

.service-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 12px;
  margin-top: 16px;
}

.service-pagination .service-bullet {
  width: 9px;
  height: 9px;
  display: block;
  border-radius: 999px;
  background: #c9cbd1;
  cursor: pointer;
  transition: width .3s ease, background-color .3s ease;
}

.service-pagination .service-bullet.active {
  width: 38px;
  background: var(--red);
}

.service-pagination:has(.service-bullet:only-child) {
  display: none;
}

.industries-section {
  background: radial-gradient(circle at 45% 25%, #15182b 0, #090b14 43%, #03040b 100%);
  color: #fff;
  padding: var(--section-space) 0 calc(var(--section-space) + 104px);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  margin-top: 34px;
}

.industry-grid div {
  min-height: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .18);
  font-weight: 500;
  line-height: 1.3;
  font-size: 13px;
}

.industry-grid div:last-child {
  border-right: 0;
}

.industry-grid div:last-child {
  display: flex!important;
}

.industry-grid i {
  color: var(--red);
  font-size: 36px;
  line-height: 1;
  margin-bottom: 12px;
}

.cta-wrap {
  margin-top: -118px;
  position: relative;
  z-index: 2;
}

.cta-banner {
  min-height: 246px;
  position: relative;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  padding: 46px 56px 38px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(6, 7, 10, .82), rgba(6, 7, 10, .6)),
    url("../images/banner/ready-to-elevate.webp") center / cover no-repeat;
  box-shadow:
    0 18px 34px rgba(0, 0, 0, .18),
    inset 0 1px 0 rgba(255, 255, 255, .08);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.cta-banner p {
  margin: 0 0 12px;
  color: var(--red);
  font-weight: 800;
  font-size: 14px;
  line-height: 1.25;
  text-transform: uppercase;
}

@media (min-width: 992px) {
  .cta-content { max-width: 760px; }
  .cta-content > p:last-of-type { white-space: nowrap; }
}

.cta-banner h2 {
  margin: 0 0 22px;
  font-size: clamp(34px, 3.2vw, 40px);
  line-height: 1.05;
  font-weight: 700;
}

.desktop-heading-break { display: none; }

@media (min-width: 992px) {
  .desktop-heading-break { display: inline; }
}

.cta-rocket {
  position: absolute;
  right: 44px;
  top: 50%;
  width: min(260px, 32vw);
  transform: translateY(-50%) rotate(18deg);
  filter:
    drop-shadow(0 0 8px rgba(228, 9, 20, .75)) drop-shadow(0 0 20px rgba(228, 9, 20, .35));
  pointer-events: none;
}

.cta-rocket img {
  width: 100%;
  height: auto;
  display: block;
}

.cta-banner .btn-brand {
  --bs-btn-padding-x: 24px;
  --bs-btn-padding-y: 11px;
  border-radius: 999px;
}

.clients-section {
  position: relative;
  z-index: 2;
  padding: var(--section-space) 0 16px;
  background: #fff;
}

.clients-panel {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  border-radius: 8px;
  padding: 48px 0px 44px;
  background: #fff;
}

.clients-panel::before,
.clients-panel::after {
  content: "";
  position: absolute;
  top: 18%;
  bottom: 12%;
  width: 110px;
  pointer-events: none;
  z-index: 2;
}

.clients-panel::before {
  left: 0;
  background: linear-gradient(90deg, #fff 18%, rgba(255, 255, 255, 0));
}

.clients-panel::after {
  right: 0;
  background: linear-gradient(270deg, #fff 18%, rgba(255, 255, 255, 0));
}

.clients-head {
  position: relative;
  z-index: 3;
  max-width: 820px;
  margin: 0 auto 54px;
}

.clients-head .eyebrow {
  color: var(--red);
  margin-bottom: 16px;
}

.clients-head .section-title {
  margin-bottom: 18px;
}

.clients-copy {
  max-width: 650px;
  margin: 0 auto;
  color: #666b74;
  text-align: center;
  line-height: 1.65;
  font-size: 16px;
}

.clients-carousel-wrap {
  position: relative;
  z-index: 3;
  /* max-width: 1120px;
  margin: 0 auto; */
}

.client-logo-slider {
  overflow: hidden;
  padding: 2px;
}

.client-logo-track {
  align-items: stretch;
}

.client-logo-slide {
  height: auto;
}

.client-logo-card {
  /* min-height: 140px; */
  /* height: 100%; */
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #e7e8eb;
  border-radius: 8px;
  background: #fff;
  color: #171a22;
  font-size: 22px;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(17, 20, 28, .035);
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.client-logo-card i {
  color: var(--red);
  font-size: 26px;
}

.client-logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.client-logo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(228, 9, 20, .34);
  box-shadow: 0 16px 34px rgba(17, 20, 28, .08);
}

.client-logo-text {
  min-width: 0;
  white-space: nowrap;
}

.aws-logo {
  color: #252b36;
  font-size: 42px;
  letter-spacing: 0;
  font-weight: 500;
}

.microsoft-logo {
  color: #5a5f68;
  font-size: 24px;
  font-weight: 500;
}

.microsoft-mark {
  width: 26px;
  height: 26px;
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}

.microsoft-mark::before,
.microsoft-mark::after,
.microsoft-mark span {
  content: "";
}

.microsoft-mark {
  background:
    linear-gradient(#f35325 0 0) left top / 11px 11px no-repeat,
    linear-gradient(#81bc06 0 0) right top / 11px 11px no-repeat,
    linear-gradient(#05a6f0 0 0) left bottom / 11px 11px no-repeat,
    linear-gradient(#ffba08 0 0) right bottom / 11px 11px no-repeat;
}

.google-logo {
  flex-direction: column;
  gap: 4px;
  color: #3c4043;
  font-size: 17px;
  font-weight: 500;
}

.google-logo i {
  font-size: 34px;
  color: #4285f4;
}

.ibm-logo {
  color: #1f70ac;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  letter-spacing: 1px;
}

.oracle-logo {
  color: #d4161c;
  font-size: 27px;
  letter-spacing: 2px;
  font-weight: 600;
}

.intel-logo {
  color: #0874bd;
  font-size: 36px;
  font-weight: 700;
  font-style: italic;
}

.client-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--red);
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 18, 26, .11);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  transform: translateY(-50%);
}

.client-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 16px 34px rgba(15, 18, 26, .15);
}

.client-prev {
  left: 0;
}

.client-next {
  right: 0;
}

.client-pagination {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}

.client-pagination .client-bullet {
  width: 6px;
  height: 6px;
  display: block;
  margin: 0 !important;
  border-radius: 999px;
  background: #c9cbd1;
  opacity: 1;
  cursor: pointer;
  transition: width 0.3s ease, background-color 0.3s ease;
}

.client-pagination .client-bullet.active {
  width: 58px;
  background: var(--red);
}

.reviews-section {
  padding: 16px 0 var(--section-space);
  background: #fff;
}

.reviews-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 38%, rgba(228, 9, 20, .58) 0 2px, transparent 4px),
    radial-gradient(circle at 96% 82%, rgba(228, 9, 20, .8) 0 4px, transparent 8px),
    radial-gradient(circle at 84% 5%, rgba(228, 9, 20, .7) 0 2px, transparent 4px),
    radial-gradient(circle at 90% 12%, rgba(228, 9, 20, .6) 0 2px, transparent 4px),
    radial-gradient(circle at 72% 42%, rgba(228, 9, 20, .14), transparent 28%),
    linear-gradient(180deg, rgba(4, 5, 8, .96), rgba(4, 5, 8, .99)),
    url("../images/extracted/hero-circuit-shot.png") center / cover no-repeat;
}

.reviews-panel {
  position: relative;
  min-height: 462px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 36% 64%;
  align-items: center;
  color: #fff;
  border-radius: 8px;
  padding: 48px 0 54px;
}

.reviews-panel::before {
  content: "";
  position: absolute;
  inset: auto -10% -30% 18%;
  height: 250px;
  opacity: .72;
  background:
    linear-gradient(8deg, transparent 0 26%, rgba(228, 9, 20, .3) 27%, transparent 28% 100%),
    repeating-linear-gradient(8deg, rgba(228, 9, 20, .34) 0 1px, transparent 1px 20px),
    repeating-linear-gradient(96deg, rgba(228, 9, 20, .26) 0 1px, transparent 1px 34px);
  transform: perspective(480px) rotateX(61deg);
  transform-origin: bottom;
  pointer-events: none;
}

.reviews-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background:
    radial-gradient(circle at 72% 8%, rgba(228, 9, 20, .14), transparent 22%),
    linear-gradient(90deg, rgba(0, 0, 0, .64), transparent 58%, rgba(0, 0, 0, .24)); */
  pointer-events: none;
}

.reviews-copy,
.reviews-stage {
  position: relative;
  z-index: 1;
}

.reviews-title {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(32px, 3.1vw, 46px);
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: 0;
}

.reviews-title span {
  color: var(--red);
}

.reviews-text {
  max-width: 420px;
  margin: 0;
  color: #d7d8dc;
  font-size: 14px;
  line-height: 1.7;
}

.review-stats {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 0;
  margin-top: 38px;
}

.review-stat {
  display: grid;
  grid-template-columns: 42px auto;
  align-items: center;
  column-gap: 14px;
  min-width: 126px;
  padding-right: 22px;
  margin-right: 22px;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.review-stat:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: 0;
}

.review-stat span {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--red);
  font-size: 28px;
  line-height: 1;
}

.review-stat strong {
  color: #fff;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 800;
}

.review-stat small {
  color: #c2c4cb;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 400;
}

.review-controls {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 44px;
}

.review-controls button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 6px;
  background: rgba(255, 255, 255, .02);
  color: #fff;
  font-size: 13px;
}

.review-pagination {
  position: static;
  width: auto !important;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
}

.review-pagination .review-bullet {
  width: 6px;
  height: 6px;
  display: block;
  margin: 0 !important;
  border-radius: 999px;
  background: rgba(255, 255, 255, .35);
  opacity: 1;
  cursor: pointer;
  transition: width 0.3s ease, background-color 0.3s ease;
}

.review-pagination .review-bullet.active {
  width: 58px;
  background: var(--red);
}

.reviews-stage {
  min-height: 410px;
  overflow: hidden;
  padding: 38px 0;
}

.reviews-slider-custom {
  overflow: visible;
  position: relative;
  width: 100%;
  cursor: grab;
  touch-action: pan-y;
}

.reviews-slider-custom:active {
  cursor: grabbing;
}

.reviews-track {
  align-items: center;
}

.reviews-slide {
  width: clamp(280px, 20vw, 340px);
  height: 430px;
  opacity: .3;
  transition: opacity .55s ease, filter .55s ease, transform .55s ease;
  user-select: none;
  filter: saturate(.8);
}

.reviews-slider-custom .swiper-slide-active {
  opacity: 1;
  z-index: 5;
  filter: saturate(1.08);
  transform: scale(1.08);
}

.reviews-slider-custom .swiper-slide-prev,
.reviews-slider-custom .swiper-slide-next {
  opacity: .72;
  z-index: 3;
}

.review-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  height: 100%;
  padding: 28px 28px 26px;
  border: 1px solid rgba(228, 9, 20, .36);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 20%, rgba(228, 9, 20, .16), transparent 25%),
    linear-gradient(145deg, rgba(42, 43, 47, .82), rgba(8, 9, 12, .96));
  box-shadow: 0 22px 46px rgba(0, 0, 0, .32);
  transition: border-color .35s ease, background .35s ease, box-shadow .35s ease;
}

.reviews-slider-custom .swiper-slide-active .review-card {
  text-align: center;
  border-color: rgba(255, 16, 27, .95);
  background:
    radial-gradient(circle at 50% 21%, rgba(228, 9, 20, .36), transparent 28%),
    linear-gradient(145deg, rgba(54, 55, 60, .94), rgba(9, 10, 14, .98));
  box-shadow: 0 34px 68px rgba(0, 0, 0, .44), 0 0 0 1px rgba(228, 9, 20, .45), 0 0 34px rgba(228, 9, 20, .3);
}

.review-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.review-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
}

.review-stars {
  color: var(--red);
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 900;
}

.review-avatar {
  display: block;
  width: 104px;
  height: 104px;
  margin: 8px auto 20px;
  object-fit: cover;
  border-radius: 50%;
  filter: grayscale(100%);
  opacity: .72;
  transition: width .35s ease, height .35s ease, opacity .35s ease, filter .35s ease;
}

.reviews-slider-custom .swiper-slide-active .review-avatar {
  width: 138px;
  height: 138px;
  filter: none;
  opacity: 1;
}

.review-card p {
  margin: 18px 0 24px;
  color: #f2f2f4;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .35s ease;
}

.reviews-slider-custom .swiper-slide-active .review-card p {
  color: #fff;
  font-size: 16px;
  line-height: 1.68;
}

.review-card strong {
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
}

.review-card small {
  display: block;
  margin-top: 7px;
  color: #c9cbd1;
  font-size: 14px;
  line-height: 1.2;
}

.portfolio-section {
  position: relative;
  overflow: hidden;
  /* background:
    radial-gradient(circle at 83% 12%, rgba(228, 9, 20, .08), transparent 22%),
    linear-gradient(180deg, #fff 0%, #f7f8fb 100%); */
}

.insights-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 91% 12%, rgba(228, 9, 20, .22), transparent 24%),
    linear-gradient(125deg, #02040a 0%, #07080d 55%, #190309 100%);
}

.insights-section::before {
  content: "";
  position: absolute;
  right: -5%;
  bottom: -28%;
  width: 62%;
  height: 74%;
  opacity: .28;
  background: repeating-linear-gradient(155deg, transparent 0 18px, rgba(228, 9, 20, .55) 19px 20px, transparent 21px 34px);
  transform: skewY(-8deg);
  pointer-events: none;
}

.insights-section::after {
  content: "";
  position: absolute;
  top: 42px;
  right: 34px;
  width: 180px;
  height: 120px;
  opacity: .4;
  background-image: radial-gradient(circle, var(--red) 1.5px, transparent 2px);
  background-size: 18px 18px;
  pointer-events: none;
}

.insights-section .container {
  position: relative;
  z-index: 1;
}

.insights-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 38px;
}

.insights-head .eyebrow {
  margin-bottom: 18px;
}

.insights-head .eyebrow::after {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-top: 15px;
  background: var(--red);
}

.insights-head .section-title {
  margin-bottom: 14px;
}

.insights-head p:last-child {
  max-width: 650px;
  margin: 0;
  color: #d9dbe1;
  font-size: 14px;
  line-height: 1.7;
}

.insights-all {
  min-width: 210px;
  justify-content: center;
  box-shadow: 0 0 0 7px rgba(228, 9, 20, .12), 0 12px 30px rgba(228, 9, 20, .28);
}

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

.insights-grid > * {
  width: 100%;
  padding: 0;
}

.insight-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 14px;
  background: #fff;
  color: #111318;
  box-shadow: 0 22px 50px rgba(0, 0, 0, .34);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.insight-card:hover {
  transform: translateY(-7px);
  border-color: rgba(228, 9, 20, .7);
  box-shadow: 0 30px 62px rgba(0, 0, 0, .46);
}

.insight-card > img {
  width: calc(100% - 20px);
  aspect-ratio: 16 / 9;
  display: block;
  margin: 10px 10px 0;
  border-radius: 10px;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2, .7, .2, 1), filter .35s ease;
}

.insight-card:hover > img {
  transform: scale(1.035);
  filter: saturate(1.1);
}

.insight-card-body {
  padding: 17px 22px 24px;
}

.insight-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #22262d;
  font-size: 10px;
  white-space: nowrap;
}

.insight-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.insight-category {
  padding: 7px 10px;
  border: 1px solid rgba(228, 9, 20, .32);
  border-radius: 8px;
  color: var(--red);
  font-weight: 600;
  transition: color .25s ease, background-color .25s ease, border-color .25s ease;
}

.insight-card:hover .insight-category {
  border-color: var(--red);
  background: rgba(228, 9, 20, .08);
}

.insight-card h3 {
  min-height: 58px;
  margin: 16px 0 10px;
  font-size: 19px;
  line-height: 1.45;
  font-weight: 800;
  transition: color .25s ease;
}

.insight-card h2 {
  min-height: 58px;
  margin: 16px 0 10px;
  font-size: 19px;
  line-height: 1.45;
  font-weight: 800;
  transition: color .25s ease;
}

.insight-card:hover h3,
.insight-card:hover h2 {
  color: var(--red);
}

.blog-listing-section {
  min-height: 100vh;
  padding: 150px 0 92px;
}

.blog-listing-section .insights-head {
  margin-bottom: 42px;
}

.blog-listing-section .section-title {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
}

.blog-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  color: #aeb2bd;
  font-size: 12px;
}

.blog-breadcrumb a {
  color: var(--red);
  font-weight: 600;
}

.blog-breadcrumb i {
  font-size: 8px;
}

.blog-listing-grid .insight-card {
  width: 100%;
}

.blog-hero {
  position: relative;
  overflow: hidden;
  padding: 175px 0 90px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .58) 34%, rgba(0, 0, 0, .08) 66%, rgba(0, 0, 0, .05) 100%),
    url("../images/blog/blog-hero-banner.webp") center center / cover no-repeat;
  font-family: inherit;
}

.blog-hero::after {
  display: none;
}

.blog-hero-inner {
  position: relative;
  z-index: 1;
}

.blog-hero-copy {
  max-width: 560px;
}

.blog-hero-copy h1 {
  margin: 18px 0 15px;
  font-size: clamp(28px, 2.9vw, 40px);
  line-height: 1.15;
  font-weight: 600;
}

.blog-hero-copy h1 span {
  color: var(--red);
}

.blog-hero-copy > p {
  max-width: 540px;
  margin: 0;
  color: #e0e1e5;
  font-size: 13px;
  line-height: 1.75;
}

.blog-hero-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 520px);
}

.blog-hero-visual::before {
  content: "";
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(228, 9, 20, .3);
  border-radius: 18px;
  box-shadow: 0 0 40px rgba(228, 9, 20, .18);
}

.blog-hero-visual img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

.blog-catalog {
  background: #f8f9fb;
  font-family: inherit;
}

.blog-catalog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 30px;
  align-items: start;
}

.blog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.blog-filter-group {
  display: flex;
  gap: 14px;
}

.blog-toolbar select,
.blog-search input,
.blog-newsletter input {
  height: 44px;
  border: 1px solid #e2e5ea;
  border-radius: 8px;
  background: #fff;
  color: #343943;
  padding: 0 14px;
  font: inherit;
  font-size: 11px;
  outline: none;
}

.blog-toolbar select:focus,
.blog-search input:focus,
.blog-newsletter input:focus {
  border-color: var(--red);
}

.blog-toolbar > span {
  color: #747b87;
  font-size: 11px;
}

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

.blog-empty-state {
  padding: 54px 24px;
  border: 1px solid #e2e5ea;
  border-radius: 12px;
  background: #fff;
  text-align: center;
}

.blog-empty-state > i { color: var(--red); font-size: 40px; }
.blog-empty-state h2 { margin: 16px 0 8px; font-size: 22px; font-weight: 700; }
.blog-empty-state p { margin: 0 0 20px; color: var(--muted); }

.blog-list-card {
  display: grid;
  grid-template-columns: minmax(220px, 38%) 1fr;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 7px 24px rgba(15, 23, 42, .045);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.blog-list-card:hover {
  transform: translateY(-6px);
  border-color: rgba(228, 9, 20, .3);
  box-shadow: 0 18px 38px rgba(15, 23, 42, .12);
}

.blog-list-card > img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2, .7, .2, 1), filter .35s ease;
}

.blog-list-card:hover > img {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.blog-list-card-body {
  display: flex;
  flex-direction: column;
  padding: 22px 24px 18px;
}

.blog-list-category {
  align-self: flex-start;
  padding: 4px 8px;
  border-radius: 999px;
  background: #ffe9eb;
  color: var(--red);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.blog-list-card h2 {
  margin: 12px 0 9px;
  color: #111318;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 800;
  transition: color .25s ease;
}

.blog-list-card:hover h2 {
  color: var(--red);
}

.blog-list-card p {
  margin: 0 0 16px;
  color: #68707c;
  font-size: 13px;
  line-height: 1.7;
}

.blog-list-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  font-size: 10px;
}

.blog-list-footer > div {
  display: flex;
  gap: 20px;
  color: #242933;
}

.blog-list-footer a {
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.blog-list-footer a i {
  transition: transform .25s ease;
}

.blog-list-footer a:hover i {
  transform: translateX(5px);
}

.blog-sidebar {
  position: sticky;
  top: 105px;
  display: grid;
  gap: 20px;
  padding: 2px 5px 10px 2px;
  /* max-height: calc(100vh - 125px); */
  /* overflow-y: auto; */
  /* scrollbar-color: rgba(228, 9, 20, .35) transparent; */
  /* scrollbar-width: thin; */
}

.blog-sidebar-card {
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 7px 24px rgba(15, 23, 42, .04);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.blog-sidebar-card:hover {
  transform: translateY(-3px);
  border-color: rgba(228, 9, 20, .24);
  box-shadow: 0 14px 32px rgba(15, 23, 42, .08);
}

.blog-sidebar-card h3 {
  margin: 0 0 18px;
  color: #16191f;
  font-size: 17px;
  font-weight: 800;
}

.blog-search {
  display: grid;
  grid-template-columns: 1fr 44px;
}

.blog-search input {
  width: 100%;
  border-radius: 8px 0 0 8px;
}

.blog-search button {
  border: 0;
  border-radius: 0 8px 8px 0;
  background: var(--red);
  color: #fff;
  transition: background-color .25s ease, transform .25s ease;
}

.blog-search button:hover {
  background: #ba0710;
  transform: scale(1.04);
}

.blog-category-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid #eef0f3;
  color: #333943;
  font-size: 12px;
  transition: color .25s ease, padding .25s ease;
}

.blog-category-link:hover {
  padding-left: 6px;
  color: var(--red);
}

.blog-category-link:last-child {
  border-bottom: 0;
}

.blog-category-link i {
  margin-right: 10px;
}

.blog-category-link i,
.blog-category-link strong {
  color: var(--red);
}

.popular-post {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 12px;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid #eef0f3;
  color: #20242b;
  transition: color .25s ease, transform .25s ease;
}

.popular-post:hover {
  color: var(--red);
  transform: translateX(4px);
}

.popular-post:last-child {
  border-bottom: 0;
}

.popular-post img {
  width: 68px;
  height: 54px;
  border-radius: 6px;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}

.popular-post:hover img {
  transform: scale(1.06);
  filter: saturate(1.1);
}

.popular-post strong,
.popular-post small {
  display: block;
}

.popular-post strong {
  font-size: 10px;
  line-height: 1.4;
}

.popular-post small {
  margin-top: 5px;
  color: #969ca6;
  font-size: 9px;
}

.blog-newsletter {
  text-align: center;
}

.blog-newsletter-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 20px;
  box-shadow: 0 10px 25px rgba(228, 9, 20, .26);
  animation: blog-icon-float 3s ease-in-out infinite;
}

.blog-newsletter p {
  color: #727985;
  font-size: 11px;
  line-height: 1.6;
}

.blog-newsletter form {
  display: grid;
  gap: 10px;
}

.blog-newsletter button {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  transition: background-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.blog-newsletter button:hover {
  background: #ba0710;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(228, 9, 20, .24);
}

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

.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.blog-pagination a,
.blog-pagination span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid #e2e5ea;
  border-radius: 7px;
  background: #fff;
  color: #343943;
  font-size: 11px;
  transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s ease;
}

.blog-pagination a:hover {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
  transform: translateY(-3px);
}

.blog-pagination a.active {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

@media (max-width: 991px) {
  .blog-catalog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: none;
    overflow: visible;
    padding: 0;
  }
}

/* Prevent testimonial card borders from being clipped by Swiper */
.reviews-carousel-shell {
  padding: 3px;
  overflow: hidden;
  border-radius: 37px;
}

.reviews-slider-custom {
  width: 100%;
  padding: 1px;
  box-sizing: border-box;
}

.reviews-slider-custom .swiper-wrapper {
  align-items: stretch;
}

.reviews-slider-custom .reviews-slide,
.reviews-slider-custom .review-card {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .reviews-carousel-shell {
    padding: 2px;
    border-radius: 24px;
  }
}

@media (max-width: 767px) {
  .blog-hero {
    padding: 135px 0 65px;
    background-position: 62% center;
  }

  .blog-hero-inner {
    text-align: center;
  }

  .article-prose {
    text-align: start;
  }

  .blog-hero-copy {
    max-width: 100%;
  }

  .blog-breadcrumb {
    justify-content: center;
  }

  .blog-hero-copy > p {
    margin-inline: auto;
  }

  .blog-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .blog-filter-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

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

  .blog-list-card > img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

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

@media (max-width: 480px) {
  .blog-filter-group {
    grid-template-columns: 1fr;
  }

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

.insight-card p {
  min-height: 68px;
  margin: 0 0 18px;
  color: #626874;
  font-size: 13px;
  line-height: 1.7;
}

.insight-card-body > a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--red);
  color: var(--red);
  font-size: 14px;
  font-weight: 600;
}

.insight-card-body > a i {
  transition: transform .25s ease;
}

.insight-card-body > a:hover i {
  transform: translateX(6px);
}

@media (max-width: 991px) {
  .insights-head {
    grid-template-columns: 1fr;
  }

  .insights-all {
    width: fit-content;
  }

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

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

  .insights-head {
    gap: 24px;
    margin-bottom: 28px;
    text-align: center;
  }

  .insights-head .eyebrow::after {
    margin-inline: auto;
  }

  .insights-all {
    width: 100%;
  }

  .insight-card-body {
    padding: 16px 18px 22px;
  }

  .insight-card h3,
  .insight-card h2,
  .insight-card p {
    min-height: 0;
  }
}

@media (max-width: 390px) {
  .insight-meta {
    flex-wrap: wrap;
    justify-content: flex-start;
    white-space: normal;
  }
}

.portfolio-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: flex-end;
  column-gap: 28px;
  margin-bottom: 22px;
}

.portfolio-head > div {
  display: contents;
}

.portfolio-head .eyebrow,
.portfolio-head .section-title {
  grid-column: 1 / -1;
}

.portfolio-head .section-title {
  margin-bottom: 22px;
  text-wrap: wrap;
}

.portfolio-head .muted {
  grid-column: 1;
  max-width: 510px;
  margin: 0;
}

.portfolio-head .btn-brand {
  grid-column: 2;
  align-self: end;
}

@media (min-width: 1200px) {
  .portfolio-head .section-title {
    white-space: nowrap;
  }
}

.portfolio-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.portfolio-tabs,
.device-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .8);
  box-shadow: var(--card-shadow);
}

.portfolio-tabs button,
.device-tabs button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 6px;
  padding: 0 16px;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}

.portfolio-tabs button.active,
.device-tabs button.active {
  color: var(--red);
  background: #fff;
  box-shadow: 0 8px 18px rgba(11, 14, 20, .08);
}

.portfolio-slider {
  position: relative;
  overflow: hidden;
  padding: 8px 4px 44px;
}

.portfolio-slider .swiper-wrapper {
  align-items: stretch;
}

.portfolio-slider .swiper-slide {
  height: auto;
}

.portfolio-slider .swiper-slide.is-filtered {
  display: none !important;
}

.portfolio-arrow {
  position: absolute;
  top: 43%;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--red);
  box-shadow: 0 18px 38px rgba(11, 14, 20, .12);
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.portfolio-arrow:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-2px);
}

.portfolio-prev {
  left: 4px;
}

.portfolio-next {
  right: 4px;
}

.portfolio-pagination {
  position: static;
  width: auto !important;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 26px;
}

.portfolio-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  margin: 0 !important;
  background: #c9ccd2;
  opacity: 1;
}

.portfolio-pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 999px;
  background: var(--red);
}

.project-card {
  height: 100%;
  cursor: pointer;
}

.project-visual {
  position: relative;
  min-height: 248px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 22px 22px 0;
  transition: min-height .25s ease;
}

.browser-frame,
.phone-frame {
  overflow: hidden;
  background: #050507;
  /* box-shadow: 0 22px 36px rgba(11, 14, 20, .18); */
}

.browser-frame {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 8px solid #101115;
  border-bottom-width: 14px;
  border-radius: 12px 12px 6px 6px;
  transition: width .25s ease, aspect-ratio .25s ease, border-radius .25s ease;
}

.phone-frame {
  position: absolute;
  right: 22px;
  bottom: 0;
  width: 74px;
  aspect-ratio: 9 / 17;
  border: 7px solid #0b0c10;
  border-radius: 18px;
  transition: opacity .25s ease, transform .25s ease, width .25s ease;
}

.portfolio-slider.preview-tablet .project-visual {
  min-height: 268px;
}

.portfolio-slider.preview-tablet .browser-frame {
  width: min(76%, 330px);
  aspect-ratio: 4 / 5;
  border-radius: 18px;
}

.portfolio-slider.preview-tablet .phone-frame {
  opacity: 0;
  transform: translateY(12px) scale(.86);
}

.portfolio-slider.preview-mobile .project-visual {
  min-height: 286px;
}

.portfolio-slider.preview-mobile .browser-frame {
  width: min(46%, 160px);
  aspect-ratio: 9 / 17;
  border-radius: 22px;
}

.portfolio-slider.preview-mobile .phone-frame {
  opacity: 0;
  transform: translateY(12px) scale(.84);
}

.browser-frame img,
.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-slider.preview-tablet .project-img-tablet,
.portfolio-slider.preview-mobile .project-img-mobile {
  /* object-fit: fill; */
  object-fit: contain;
}

.project-meta {
  min-height: 64px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 14px;
  margin: -4px 16px 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--card-shadow);
}

.project-meta strong {
  font-size: 14px;
  color: var(--ink);
}

.project-meta span {
  padding: 7px 18px;
  border-radius: 6px;
  background: #ffe7e8;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
}

.project-meta a {
  color: var(--ink);
  font-size: 16px;
}

.project-meta a:hover {
  color: var(--red);
}

.faq-section {
  position: relative;
  overflow: hidden;
  padding-bottom: 12px;
  background: #fff;
}

.faq-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(330px, .72fr) minmax(0, 1fr);
  gap: 94px;
  align-items: center;
  min-height: 438px;
  padding: 54px 86px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(2, 3, 7, .98) 0%, rgba(7, 9, 14, .96) 46%, rgba(11, 5, 8, .86) 100%),
    url("../images/hero-circuit.svg") right center / 58% auto no-repeat,
    #030304;
  box-shadow: 0 12px 22px rgba(0, 0, 0, .34);
}

.faq-shell::before,
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 55%, rgba(228, 9, 20, .16), transparent 20%),
    radial-gradient(circle at 92% 60%, rgba(228, 9, 20, .22), transparent 24%),
    linear-gradient(120deg, transparent 68%, rgba(228, 9, 20, .11) 100%);
  pointer-events: none;
}

.faq-intro {
  position: relative;
  z-index: 1;
  color: #fff;
}

.faq-intro .eyebrow,
.contact-info .eyebrow {
  color: var(--red);
  margin-bottom: 10px;
}

.faq-intro .section-title,
.contact-info .section-title {
  margin-bottom: 16px;
}

.faq-intro .section-title span,
.contact-info .section-title span {
  color: #ff101b;
}

.faq-copy {
  max-width: 420px;
  margin: 0;
  color: #c8cbd2;
  font-size: 16px;
  line-height: 1.75;
}

.faq-question-card {
  max-width: 352px;
  min-height: 244px;
  margin-top: 28px;
  padding: 30px 28px 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 22%, rgba(228, 9, 20, .22), transparent 32%),
    rgba(4, 6, 11, .56);
  box-shadow: inset 0 0 42px rgba(228, 9, 20, .09), 0 18px 36px rgba(0, 0, 0, .26);
  text-align: center;
}

.faq-question-icon {
  width: 72px;
  height: 72px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(228, 9, 20, .68);
  border-radius: 50%;
  color: var(--red);
  font-size: 32px;
  box-shadow: 0 0 32px rgba(228, 9, 20, .22);
}

.faq-question-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 21px;
  font-weight: 800;
}

.faq-question-card p {
  max-width: 270px;
  margin: 0 auto 18px;
  color: #c9ccd3;
  font-size: 13px;
  line-height: 1.65;
}

.faq-question-card .btn-brand {
  --bs-btn-padding-x: 18px;
  --bs-btn-padding-y: 11px;
  border-radius: 6px;
  font-size: 12px;
}

.faq-question-card .btn-brand i {
  margin-left: 12px;
}

.faq-content {
  position: relative;
  z-index: 1;
}

.faq-list {
  display: grid;
  gap: 8px;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.accordion-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(17, 20, 27, .72), rgba(5, 7, 12, .76));
  box-shadow: none;
}

.accordion-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.accordion-button {
  gap: 18px;
  min-height: 48px;
  padding: 12px 16px;
  color: #fff;
  background: transparent;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.accordion-button::before {
  content: "\2b";
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 32px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 50%;
  background: rgba(2, 4, 9, .78);
  color: #fff;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 15px;
}

.accordion-button:not(.collapsed) {
  /* align-items: flex-start; */
  align-items: center;
  min-height: 48px;
  padding-top: 14px;
  background: transparent;
  color: #fff;
  box-shadow: none;
}

.accordion-button:not(.collapsed)::before {
  content: "\f068";
  border-color: transparent;
  background: var(--red);
}

.accordion-button::after {
  display: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  max-width: 555px;
  padding: 0 22px 19px 68px;
  color: #c7c9cf;
  font-size: 13px;
  line-height: 1.75;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding-top: 12px;
  background:
    linear-gradient(90deg, rgba(3, 4, 8, .98), rgba(10, 4, 7, .92)),
    url("../images/banner/contact-us.webp") center / cover no-repeat,
    #030304;
  box-shadow: 0 12px 22px rgba(0, 0, 0, .34);
}

.contact-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(390px, .8fr) minmax(0, 1.12fr);
  gap: 70px;
  align-items: center;
  min-height: 430px;
  /* padding: 48px 0px; */
  border-radius: 8px;
}

.contact-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 9% 28%, rgba(228, 9, 20, .22) 0 2px, transparent 3px),
    radial-gradient(circle at 88% 62%, rgba(228, 9, 20, .22) 0 3px, transparent 4px);
  background-size: 26px 26px, 34px 34px;
  opacity: .36;
  pointer-events: none;
}

.contact-info,
.contact-form-card {
  position: relative;
  z-index: 1;
}

.contact-copy {
  max-width: 430px;
  margin: 0 0 28px;
  color: #d0d2d7;
  font-size: 16px;
  line-height: 1.72;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 34px;
  max-width: 520px;
}

.contact-detail {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  min-width: 0;
}

.contact-detail span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-size: 16px;
}

.contact-detail small {
  display: block;
  color: #d6d8dc;
  font-size: 12px;
  margin-bottom: 4px;
}

.contact-detail strong {
  display: block;
  color: #fff;
  font-size: 13px;
  line-height: 1.35;
}

.contact-detail strong a {
  color: inherit;
  text-decoration: none;
}

.contact-detail strong a:hover {
  color: var(--red);
}

.contact-socials {
  margin-top: 22px;
}

.contact-socials p {
  margin: 0 0 9px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.contact-socials div {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.contact-socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(228, 9, 20, .42);
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, .24);
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}

.contact-socials a:hover {
  border-color: var(--red);
  background: var(--red);
  transform: translateY(-2px);
}

.contact-form-card {
  min-height: 370px;
  padding: 42px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 72% 20%, rgba(228, 9, 20, .08), transparent 22%),
    #fff;
  box-shadow: 0 22px 50px rgba(0, 0, 0, .22);
}

.contact-form-card::after {
  content: "\f1d8";
  position: absolute;
  right: 48px;
  /* top: 40px; */
  top: 15px;
  color: var(--red);
  font-family: "Font Awesome 6 Free";
  font-size: 55px;
  font-weight: 900;
  transform: rotate(18deg);
  opacity: .95;
}

.contact-form-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 28px;
  padding-right: 90px;
}

.contact-form-head span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #ffe8ea;
  color: var(--red);
  font-size: 18px;
}

.contact-form-head h3 {
  margin: 0 0 4px;
  color: #111217;
  font-size: 22px;
  font-weight: 800;
}

.contact-form-head p {
  margin: 0;
  color: #6d727b;
  font-size: 13px;
}

.contact-form .form-control,
.contact-form .form-select,
.newsletter input {
  min-height: 46px;
  border: 1px solid #d9dde2;
  border-radius: 6px;
  font-size: 13px;
  color: #333;
  box-shadow: none;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: rgba(228, 9, 20, .55);
  box-shadow: 0 0 0 3px rgba(228, 9, 20, .08);
}

.contact-form textarea.form-control {
  min-height: 96px;
  resize: vertical;
}

.contact-form .btn-brand {
  min-width: 166px;
  border-radius: 6px;
  font-size: 13px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 70px 0 34px;
  background:
    radial-gradient(circle at 85% 20%, rgba(228, 9, 20, .18), transparent 24%),
    linear-gradient(180deg, #08090d 0%, #050506 100%);
  color: #dadada;
  border-top: 1px solid rgba(228, 9, 20, .28);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(228, 9, 20, .8), transparent);
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 70%, rgba(255, 255, 255, .025) 70% 71%, transparent 71% 100%),
    radial-gradient(circle at 92% 76%, rgba(228, 9, 20, .22) 0 3px, transparent 4px);
  opacity: .32;
  pointer-events: none;
}

.footer-shell {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  background:
    radial-gradient(circle at 0% 0%, rgba(228, 9, 20, .12), transparent 28%),
    linear-gradient(180deg, rgba(14, 15, 19, .96), rgba(8, 9, 12, .96));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .025),
    0 18px 44px rgba(0, 0, 0, .24);
  padding: 36px 30px 28px;
}

.footer-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(228, 9, 20, .18), transparent 26%, transparent 74%, rgba(228, 9, 20, .1));
  opacity: .4;
  pointer-events: none;
}

.footer-main {
  position: relative;
  z-index: 1;
  padding-bottom: 14px;
  row-gap: 28px;
}

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

.site-footer .footer-brand {
  display: inline-flex;
}

.footer-logo {
  max-width: 100%;
  margin-bottom: 0;
}

.site-footer p,
.site-footer a {
  color: #c9ccd2;
  font-size: 14px;
  line-height: 1.7;
}

.footer-about {
  position: relative;
  padding-right: 18px;
}

.footer-about::after {
  /* content: ""; */
  position: absolute;
  top: 16px;
  right: -12px;
  width: 1px;
  height: calc(100% - 34px);
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .1), transparent);
}

.footer-tagline {
  max-width: 360px;
  margin: 0;
  font-size: 14px;
  color: #c9ccd2;
}

.footer-contact-social {
  position: relative;
  padding-left: 18px;
}

.footer-contact-social::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 10px;
  width: 1px;
  height: calc(100% - 18px);
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .1), transparent);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 0;
}

.footer-contact-item.top-icon span {
  position: relative;
  top: -12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  line-height: 1.6;
  color: #d7d9de;
}

.footer-contact-item small {
  display: block;
  margin-top: 6px;
  color: #9ea3ab;
  font-size: 12px;
}

.footer-contact-item span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  color: var(--red);
  background: rgba(228, 9, 20, .1);
  border: 1px solid rgba(228, 9, 20, .22);
  border-radius: 50%;
  font-size: 15px;
  line-height: 1;
  margin-top: 2px;
}

.footer-links {
  position: relative;
  padding-left: 18px;
  padding-right: 18px;
}

.footer-links::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 10px;
  width: 1px;
  height: calc(100% - 18px);
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .1), transparent);
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* position: relative; */
  margin-top: 14px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-newsletter::before {
  display: none;
}

.site-footer h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  margin: 0 0 26px;
  letter-spacing: .4px;
  text-transform: uppercase;
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-footer h4::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 10px rgba(228, 9, 20, .55);
}

.site-footer h4::after {
  display: none;
}

.footer-links a {
  min-height: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-size: 14px;
  justify-content: flex-start;
  gap: 10px;
}

.footer-links a span {
  color: var(--red);
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.footer-links a i {
  color: var(--red);
  font-size: 12px;
  transition: transform .25s ease;
}

.footer-links a:hover i {
  transform: translateX(4px);
}

.footer-newsletter>p {
  margin: 0 0 22px;
  max-width: 520px;
  font-size: 14px;
  color: #bfc2c8;
}

.newsletter {
  display: flex;
  align-items: stretch;
  max-width: 720px;
  width: 700px;
  min-height: 56px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
  box-shadow: none;
}

.newsletter-icon {
  width: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  color: #d6d9df;
  font-size: 16px;
  opacity: .95;
}

.newsletter input {
  min-width: 0;
  width: 100%;
  background: transparent;
  color: #fff;
  border: 0;
  border-radius: 0;
  padding: 0 14px 0 4px;
  font-size: 14px;
}

.newsletter input::placeholder {
  color: #8b9098;
}

.newsletter button {
  border: 0;
  background: var(--red);
  color: #fff;
  padding: 0 20px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(228, 9, 20, .2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.follow-us {
  margin-top: 26px;
}

.follow-us h5 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.follow-us h5::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 10px rgba(228, 9, 20, .55);
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 0;
}

.socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
  margin: 0;
  font-weight: 800;
  font-size: 16px;
  box-shadow: none;
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}

.socials a:hover {
  background: rgba(228, 9, 20, .16);
  border-color: rgba(228, 9, 20, .78);
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom {
  position: relative;
  margin-top: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(228, 9, 20, .08), transparent 26%, transparent 74%, rgba(228, 9, 20, .08)),
    rgba(8, 9, 12, .96);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .03);
  text-align: center;
  overflow: hidden;
}

.footer-bottom::before,
.footer-bottom::after {
  display: none;
}

.footer-bottom::before {
  left: 26px;
}

.footer-bottom::after {
  right: 26px;
}

.footer-bottom-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-bottom-badge {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--red);
  background: rgba(228, 9, 20, .1);
  border: 1px solid rgba(228, 9, 20, .22);
  border-radius: 50%;
  font-size: 16px;
}

.footer-bottom p {
  margin: 0;
  color: #f0f0f0;
  font-size: 15px;
  font-weight: 700;
}

.footer-bottom small {
  display: block;
  max-width: 560px;
  color: #b8bbc2;
  font-size: 13px;
  line-height: 1.55;
}

.footer-bottom-decor {
  display: none;
}

.footer-red-line {
  display: block;
  width: 92px;
  height: 3px;
  margin: 34px 0 36px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 18px 0 0 -6px var(--red);
}

.site-footer a {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-bottom: 0;
}

.site-footer .socials a {
  justify-content: center;
}

.site-footer a.footer-brand {
  display: inline-flex;
  margin-bottom: 24px;
}

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

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1030;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 28px rgba(228, 9, 20, .34);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease, background .25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
}

.back-to-top i {
  font-size: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .7s ease, transform .7s ease;
}

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

.hero-anim {
  opacity: 0;
  animation: heroEnter .75s ease forwards;
}

.delay-1 {
  transition-delay: .1s;
  animation-delay: .12s;
}

.delay-2 {
  transition-delay: .2s;
  animation-delay: .24s;
}

.delay-3 {
  transition-delay: .3s;
  animation-delay: .36s;
}

.delay-4 {
  transition-delay: .4s;
  animation-delay: .48s;
}

.float-soft {
  animation: floatSoft 4.8s ease-in-out infinite;
}

@keyframes heroEnter {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes loaderGrid {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(54px, 54px, 0);
  }
}

@keyframes loaderMark {

  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow:
      0 20px 56px rgba(0, 0, 0, .35),
      inset 0 1px 0 rgba(255, 255, 255, .08);
  }

  50% {
    transform: translateY(-7px) scale(1.03);
    box-shadow:
      0 24px 68px rgba(228, 9, 20, .28),
      inset 0 1px 0 rgba(255, 255, 255, .1);
  }
}

@keyframes loaderProgress {
  from {
    transform: translateX(-115%);
  }

  to {
    transform: translateX(260%);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translateX(0);
  }

  to {
    transform: scale(1.06) translateX(-18px);
  }
}

@keyframes pulseGlow {

  0%,
  100% {
    opacity: .35;
    transform: scale(.9);
  }

  50% {
    opacity: .82;
    transform: scale(1.1);
  }
}

@keyframes ctaGlow {
  from {
    background-position: center;
  }

  to {
    background-position: 58% center;
  }
}

@keyframes floatSoft {

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

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

@keyframes dotDrift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-20px, 18px, 0);
  }
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: var(--red);
}

.about-points {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.container-fluid.custom-x-padding {
  padding: 0px 150px;
}

.industry-grid div:last-child {
    display: flex !important;
}

@media (min-width: 768px) and (max-width: 991px) {
  .industry-grid div:nth-child(6),
  .industry-grid div:nth-child(3) {
    border-right: 0px!important;
  }
  .industry-grid div:nth-child(4) {
    border-right: 1px solid rgba(255, 255, 255, .18)!important;
  }
  .industry-grid div:last-child {
    display: none!important;
  }
  .hero-section .col-lg-6.mm-0 {
    margin-top: 0px;
  }
  .min-vh-hero {
    padding-top: 130px;
  }
  .footer-contact-item.top-icon span {
    top: -10px;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media (min-width: 992px) {
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.666667%;
  }

  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.666667%;
  }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.333333%;
  }
}

@media (min-width: 1200px) {
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.666667%;
  }

  .offset-xl-1 {
    margin-left: 8.333333%;
  }
}

@media (max-width: 1199px) {
  .nav-link {
    font-size: 13px;
  }

  .navbar-nav {
    gap: 18px;
  }

  .mission-card {
    right: 20px;
  }

  .reviews-panel {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 42px 0px;
  }

  .reviews-text {
    max-width: 560px;
  }

  .reviews-stage {
    min-height: 400px;
  }
}

@media (max-width: 991px) {
  .site-header {
    padding: 10px 0;
  }

  .navbar-toggler {
    display: flex;
  }

  .navbar-collapse {
    margin-top: 14px;
    padding: 12px 0 18px;
    border-top: 1px solid rgba(255, 255, 255, .12);
  }

  .navbar-nav {
    gap: 0;
    padding: 10px 0;
  }

  .nav-link {
    padding: 11px 0 !important;
  }

  .nav-link.active::after {
    display: none;
  }

  .nav-quote {
    width: 100%;
  }

  .hero-bg {
    background: #000;
  }

  .hero-bg::after {
    background: linear-gradient(90deg, rgba(0, 0, 0, .95), rgba(0, 0, 0, .68));
  }

  .min-vh-hero,
  .hero-section {
    min-height: 760px;
  }

  .min-vh-hero {
    padding-bottom: 70px;
  }

  .hero-form-card {
    max-width: 100%;
    margin: 12px auto 0;
  }

  .about-image {
    margin: 0 auto;
  }

  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 22px;
  }

  .industry-grid div:nth-child(4) {
    border-right: 0;
  }

  .cta-wrap {
    margin-top: -120px;
  }

  .cta-banner {
    padding: 36px 28px;
  }

  .cta-rocket {
    right: 24px;
    width: 220px;
  }

  .clients-panel {
    padding: 42px 28px;
  }

  .clients-carousel-wrap {
    padding: 0 70px;
  }

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

  .review-stat {
    min-width: 0;
  }

  .reviews-stage {
    min-height: 430px;
  }

  .testimonials-slider {
    padding-inline: 0;
  }

  .testimonial-card {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
    padding: 24px;
  }

  .testimonial-preview {
    height: 360px;
  }

  .testimonial-body {
    min-height: 0;
    padding: 6px 0 8px;
  }

  .testimonial-arrow {
    display: none;
  }

  .portfolio-head {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

  .portfolio-head > div {
    display: block;
    width: 100%;
  }

  .portfolio-controls {
    align-items: flex-start;
    flex-direction: column;
  }

  .portfolio-arrow {
    display: none;
  }

  .faq-shell {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 44px 34px;
    background-size: 120% auto;
  }

  .faq-question-card {
    max-width: 100%;
  }

  .accordion-body {
    max-width: none;
  }

  .contact-shell {
    grid-template-columns: 1fr;
    gap: 34px;
    /* padding: 44px 34px; */
    padding: 0px 0px;
  }

  .contact-info .section-title {
    max-width: 620px;
  }

  .contact-form-card {
    padding: 34px;
  }

  .site-footer {
    padding-top: 56px;
  }

  .footer-main {
    row-gap: 42px;
  }

  .footer-logo {
    width: 240px;
  }

  .footer-tagline,
  .footer-newsletter>p {
    font-size: 16px;
  }

  .footer-shell {
    padding: 28px 24px 24px;
  }

  .footer-about::after,
  .footer-links::before,
  .footer-newsletter::before {
    display: none;
  }

  .footer-contact-social
  .footer-links,
  .footer-newsletter,
  .footer-about {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .industry-grid div:last-child {
    display: none !important;
  }

  :root {
    --section-space: 54px;
  }

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

  .brand-lockup {
    min-width: 120px;
  }

  .brand-mark {
    width: 35px;
    height: 48px;
  }

  .brand-lockup span {
    font-size: 29px;
  }

  .hero-section h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

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

  .stat-item {
    grid-template-columns: 52px 1fr;
  }

  .mission-card {
    position: static;
    margin: -42px 16px 0 auto;
    width: fit-content;
    min-width: 210px;
  }

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

  .industry-grid div {
    border-right: 0;
  }

  .industries-section {
    padding-bottom: calc(var(--section-space) + 96px);
  }

  .cta-wrap {
    margin-top: -84px;
  }

  .cta-banner {
    min-height: 220px;
    border-radius: 16px;
    padding: 30px 22px;
  }

  .cta-rocket {
    right: 16px;
    width: 170px;
    opacity: .9;
  }

  .clients-section {
    padding: var(--section-space) 0;
  }

  .clients-panel {
    padding: 34px 18px;
  }

  .clients-head {
    margin-bottom: 34px;
  }

  .clients-copy {
    font-size: 14px;
  }

  .clients-carousel-wrap {
    padding: 0 54px;
  }

  .client-logo-card {
    min-height: 118px;
  }

  .client-arrow {
    width: 46px;
    height: 46px;
  }

  .reviews-panel {
    padding: 34px 18px;
  }

  .reviews-title {
    font-size: 30px;
  }

  .review-stats {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 30px;
  }

  .review-stat {
    margin-right: 0;
    padding-right: 0;
    border-right: 0;
  }

  .stat-item:last-child,
  .review-stat:last-child {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .review-controls {
    flex-wrap: wrap;
    margin-top: 32px;
  }

  .review-card {
    min-height: 390px;
    padding: 24px 20px;
  }

  .reviews-slide {
    width: min(300px, calc(100vw - 76px));
    height: 390px;
  }

  .review-avatar {
    width: 86px;
    height: 86px;
    margin-bottom: 18px;
  }

  .reviews-slider-custom .swiper-slide-active .review-avatar {
    width: 104px;
    height: 104px;
  }

  .review-card p {
    font-size: 13px;
    line-height: 1.65;
  }

  .reviews-slider-custom .swiper-slide-active .review-card p {
    font-size: 14px;
  }

  .review-card strong {
    font-size: 15px;
  }

  .testimonials-head {
    margin-bottom: 28px;
  }

  .testimonials-head p {
    font-size: 14px;
  }

  .testimonial-card {
    border-radius: 18px;
    padding: 18px;
  }

  .testimonial-preview {
    height: 275px;
    border-radius: 12px;
  }

  .quote-mark {
    margin-bottom: 22px;
    font-size: 38px;
  }

  .testimonial-tag {
    top: 9px;
    left: 54px;
    min-height: 28px;
    padding: 0 14px;
    font-size: 12px;
  }

  .testimonial-body p {
    font-size: 15px;
    line-height: 1.75;
  }

  .client-avatar {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
    font-size: 11px;
  }

  .testimonial-client strong {
    font-size: 17px;
  }

  .testimonial-client a {
    font-size: 14px;
  }

  .portfolio-tabs,
  .device-tabs {
    width: 100%;
    overflow-x: auto;
  }

  .portfolio-tabs button,
  .device-tabs button {
    flex: 0 0 auto;
  }

  .project-visual {
    min-height: 220px;
  }

  .portfolio-slider.preview-tablet .project-visual,
  .portfolio-slider.preview-mobile .project-visual {
    min-height: 248px;
  }

  .phone-frame {
    width: 64px;
  }

  .faq-section {
    padding-bottom: 8px;
  }

  .faq-shell {
    padding: 34px 20px;
    border-radius: 8px;
  }

  .faq-copy {
    font-size: 14px;
  }

  .faq-question-card {
    min-height: 0;
    padding: 26px 18px 22px;
  }

  .accordion-button {
    /* align-items: flex-start; */
    align-items: center;
    padding: 13px 12px;
    font-size: 13px;
  }
  .faq-shell::before {
    content: none;
  }

  .accordion-button::before {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .accordion-body {
    padding: 0 14px 18px 60px;
  }

  .contact-section {
    padding-top: 8px;
  }

  .contact-shell {
    padding: 34px 20px;
    border-radius: 8px;
  }

  .contact-copy {
    font-size: 14px;
  }

  .contact-details {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .contact-form-card {
    padding: 26px 18px;
  }

  .contact-form-card::after {
    right: 22px;
    top: 24px;
    font-size: 42px;
  }

  .contact-form-head {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding-right: 48px;
  }

  .contact-form-head span {
    width: 44px;
    height: 44px;
  }

  .contact-form-head h3 {
    font-size: 19px;
  }

  .site-footer h4 {
    margin-bottom: 36px;
  }

  .footer-tagline {
    max-width: none;
  }

  .footer-contact-list p {
    margin-bottom: 18px;
  }

  .newsletter {
    min-height: 68px;
    flex-wrap: wrap;
  }

  .newsletter button {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .socials a {
    width: 54px;
    height: 54px;
    font-size: 20px;
  }

  .footer-bottom {
    padding: 22px 18px 24px;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }

  .loader-core {
    width: min(280px, calc(100vw - 44px));
    min-height: 280px;
  }

  .loader-mark {
    width: 88px;
    height: 88px;
    border-radius: 22px;
  }

  .loader-mark img {
    width: 58px;
    height: 58px;
  }

  .loader-copy {
    bottom: 34px;
  }

  .loader-copy strong {
    font-size: 20px;
  }

  .loader-copy small {
    font-size: 9px;
    letter-spacing: 1px;
  }

  .footer-bottom::before,
  .footer-bottom::after {
    width: 110px;
  }

  .footer-bottom p {
    font-size: 16px;
  }
}

.cookie-consent {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1500;
  width: min(560px, calc(100vw - 44px));
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px 16px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(228, 9, 20, .65);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(25, 26, 32, .98), rgba(5, 6, 10, .99));
  color: #fff;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .48), 0 0 28px rgba(228, 9, 20, .16);
  animation: cookieSlideIn .45s cubic-bezier(.16, 1, .3, 1);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent.is-hiding {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .25s ease, transform .25s ease;
}

.cookie-consent-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(228, 9, 20, .14);
  color: var(--red);
  font-size: 23px;
}

.cookie-consent-copy strong {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
}

.cookie-consent-copy p {
  margin: 0;
  color: #c9cbd1;
  font-size: 12px;
  line-height: 1.6;
}

.cookie-consent-actions {
  grid-column: 2;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-consent-actions button {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
}

.cookie-reject {
  border: 1px solid rgba(255, 255, 255, .22);
  background: transparent;
  color: #fff;
}

.cookie-accept {
  border: 1px solid var(--red);
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 22px rgba(228, 9, 20, .28);
}

@keyframes cookieSlideIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 575px) {
  .article-prose blockquote {
    flex-direction: column;
  }
  .blog-list-card-body {
    align-items: start;
    text-align: start;
  }
  .popular-post strong {
    font-size: 12px;
  }
  .popular-post {
    text-align: start;
  }
  .review-stat {
      padding: 10px 14px!important;
      border-radius: 10px;
      border: 1px solid #ffffff73!important;
  }
  .cookie-consent {
    right: 14px;
    bottom: 14px;
    width: calc(100vw - 28px);
    grid-template-columns: 42px 1fr;
    padding: 16px;
  }

  .cookie-consent-icon {
    width: 42px;
    height: 42px;
    font-size: 19px;
  }

  .cookie-consent-actions {
    grid-column: 1 / -1;
  }

  .cookie-consent-actions button {
    flex: 1;
  }
}

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

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

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

  .site-loader {
    transition-duration: .2s !important;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    align-items: center;
    flex-direction: column;
  }

  .hero-section .btn-brand,
  .hero-section .play-link {
    justify-content: center;
    text-align: center;
  }

  .btn-brand {
    width: 100%;
  }

  .play-link {
    width: 100%;
  }

  .section-title {
    font-size: 28px;
  }

  .about-image img {
    min-height: 255px;
  }

  .mission-card {
    margin: 14px 0 0;
    width: 100%;
  }

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

  .cta-wrap {
    margin-top: -72px;
  }

  .cta-banner {
    min-height: 200px;
  }

  .cta-banner h2 {
    font-size: 28px;
  }

  .cta-rocket {
    width: 136px;
    right: 12px;
    opacity: .72;
  }

  .clients-copy {
    font-size: 13px;
  }

  .clients-panel {
    padding: 30px 14px 34px;
  }

  .clients-panel::before,
  .clients-panel::after {
    width: 42px;
  }

  .clients-carousel-wrap {
    padding: 0 44px;
  }

  .client-logo-card {
    min-height: 104px;
  }

  .aws-logo,
  .ibm-logo {
    font-size: 34px;
  }

  .oracle-logo {
    font-size: 22px;
  }

  .intel-logo {
    font-size: 30px;
  }

  .client-pagination {
    gap: 10px;
    margin-top: 24px;
  }

  .client-pagination .client-bullet.active {
    width: 44px;
  }

  .testimonials-slider {
    padding-bottom: 58px;
  }

  .testimonial-card {
    padding: 14px;
  }

  .testimonial-preview {
    height: 210px;
  }

  .testimonial-body p {
    font-size: 15px;
  }

  .testimonial-client {
    align-items: flex-start;
  }

  .newsletter {
    flex-direction: column;
    gap: 10px;
    padding: 10px;
  }

  .newsletter-icon {
    width: 100%;
    justify-content: flex-start;
    padding-left: 16px;
  }

  .newsletter input,
  .newsletter button {
    min-height: 48px;
    border-radius: 8px;
  }

  .footer-bottom small {
    font-size: 14px;
  }
}

@media only screen and (min-width:1300px) and (max-width:1550px) {

  .hero-section,
  .min-vh-hero {
    min-height: 635px;
  }
}

@media (max-width: 575px) {
  .site-footer p {
    margin-right: 0px!important;
  }
  .footer-bottom-copy {
    text-align: center;
  }
  .footer-about {
    padding-left: 18px;
    padding-right: 18px;
  }
  .about-section .about-image.float-soft .mission-card {
    position: absolute;
    width: 60%;
    justify-content: start;
    right: 5px;
    bottom: 5px;
  }
  .about-section .about-image.float-soft {
    position: relative;
  }
  .hero-section .col-lg-6.mm-0,
  .about-section .col-lg-6.mm-0 {
    margin-top: 0px;
  }
  .accordion-item,
  .faq-question-card {
    background: black;
  }
  .faq-section .faq-copy,
  .faq-section .section-title.light {
    color: black;
  }
  .faq-shell {
    background: none;
    box-shadow: none;
  }
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  body {
    font-size: 13px;
  }

  .container {
    width: min(100% - 28px, var(--site-width));
    padding-left: 0;
    padding-right: 0;
  }

  main section,
  .site-footer,
  .footer-shell,
  .reviews-copy,
  .contact-info,
  .faq-intro,
  .portfolio-head,
  .clients-head,
  .service-card,
  .review-card,
  .faq-question-card,
  .cta-content,
  .footer-about,
  .footer-links,
  .footer-contact-social,
  .footer-newsletter,
  .footer-bottom {
    text-align: center;
  }

  .muted,
  .contact-copy,
  .faq-copy,
  .reviews-text,
  .clients-copy,
  .footer-tagline,
  .footer-newsletter>p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-form-card,
  .contact-form-card,
  .contact-form .form-control,
  .contact-form .form-select,
  .contact-form textarea.form-control,
  .newsletter input {
    text-align: left;
  }

  .btn-brand,
  .portfolio-tabs button,
  .device-tabs button,
  .newsletter button {
    justify-content: center;
  }

  .site-header {
    padding: 8px 0;
    background: rgba(0, 0, 0, .9);
    backdrop-filter: blur(10px);
  }

  .header-logo {
    width: 118px;
  }

  .navbar-collapse {
    margin-top: 10px;
    padding: 10px 0 14px;
  }

  .nav-link {
    font-size: 12px;
    padding: 9px 0 !important;
  }

  .hero-section,
  .min-vh-hero {
    min-height: 930px;
  }

  .min-vh-hero {
    padding-top: 116px;
    padding-bottom: 42px;
    align-items: flex-start !important;
    text-align: center;
  }

  .hero-section h1,
  .hero-section h2,
  .hero-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-section .btn-brand,
  .hero-section .play-link {
    justify-content: center;
  }

  .hero-form-card {
    padding: 22px 16px;
    margin: 10px auto 0;
    text-align: left;
  }

  .hero-form-head {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    margin-bottom: 18px;
    text-align: center;
  }

  .hero-form-head span {
    width: 42px;
    height: 42px;
  }

  .hero-form-head h3 {
    font-size: 20px;
  }

  .hero-contact-form .form-control,
  .hero-contact-form .form-select {
    min-height: 44px;
    font-size: 12px;
  }

  .hero-contact-form textarea.form-control {
    min-height: 78px;
  }

  .hero-bg::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, .98) 0%, rgba(0, 0, 0, .82) 58%, rgba(0, 0, 0, .66) 100%);
  }

  .hero-pulse {
    right: -82px;
    top: 170px;
    width: 190px;
    height: 190px;
  }

  .eyebrow {
    font-size: 10px;
    margin-bottom: 9px;
  }

  .hero-section h1 {
    max-width: auto;
    font-size: 38px;
    line-height: 1;
  }

  .hero-section h2 {
    max-width: 320px;
    margin: 12px 0 14px;
    font-size: 15px;
    line-height: 1.35;
  }

  .hero-copy,
  .muted {
    font-size: 12px;
    line-height: 1.65;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 20px;
  }

  .btn-brand {
    --bs-btn-padding-x: 18px;
    --bs-btn-padding-y: 11px;
    font-size: 12px;
  }

  .play-link {
    font-size: 12px;
  }

  .play-circle {
    width: 36px;
    height: 36px;
    font-size: 11px;
  }

  .section-pad,
  .services-section,
  .clients-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .section-title {
    margin-bottom: 16px;
    font-size: 26px;
    line-height: 1.18;
  }

  .stats-grid {
    justify-items: center;
    gap: 30px 0px;
    margin-top: 24px;
  }

  .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .stat-icon,
  .service-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .stat-item strong {
    font-size: 22px;
  }

  .about-image img {
    min-height: 230px;
    border-radius: 10px;
  }

  .mission-card {
    min-width: 0;
    justify-content: center;
    padding: 16px;
    border-radius: 12px;
  }

  .mission-card span {
    width: 42px;
    height: 42px;
  }

  .mission-card strong {
    font-size: 15px;
  }

  .industries-section {
    padding-top: 44px;
    padding-bottom: 116px;
  }

  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
  }
  .industry-grid div:last-child {
    display: none!important;
  }

  .industry-grid div {
    min-height: 104px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background: rgba(255, 255, 255, .025);
    font-size: 12px;
  }

  .industry-grid i {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .cta-wrap {
    margin-top: -82px;
  }

  .cta-banner {
    min-height: 190px;
    padding: 26px 18px;
    border-radius: 12px;
    background-position: center;
  }

  .cta-banner p {
    font-size: 11px;
  }

  .cta-banner h2 {
    margin-bottom: 18px;
    font-size: 24px;
    line-height: 1.16;
  }

  .service-card {
    padding: 18px 16px;
  }

  .services-section .row {
    --bs-gutter-y: 12px;
    row-gap: 12px;
  }

  .service-card .service-icon {
    margin-bottom: 12px;
  }

  .service-card h3 {
    margin-bottom: 8px;
    font-size: 16px;
  }

  .service-card p {
    min-height: 0;
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 1.5;
  }

  .reviews-panel {
    min-height: 0;
    gap: 22px;
    padding: 0px;
  }

  .reviews-title {
    font-size: 26px;
    line-height: 1.2;
  }

  .reviews-text {
    font-size: 12px;
  }

  .review-stats {
    gap: 12px;
    justify-content: center;
    margin-top: 22px;
  }

  .review-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .review-stat span {
    width: 34px;
    height: 34px;
    font-size: 22px;
  }

  .review-controls {
    justify-content: center;
    gap: 12px;
    margin-top: 22px;
  }

  .review-pagination .review-bullet.active {
    width: 36px;
  }

  .reviews-stage {
    min-height: 340px;
    padding: 16px 0 10px;
  }

  .reviews-slide {
    width: min(270px, calc(100vw - 52px));
    height: 340px;
  }

  .review-card {
    min-height: 340px;
    padding: 20px 18px;
  }

  .review-quote {
    font-size: 40px;
  }

  .review-stars {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .review-avatar,
  .reviews-slider-custom .swiper-slide-active .review-avatar {
    width: 78px;
    height: 78px;
    margin-bottom: 14px;
  }

  .review-card p,
  .reviews-slider-custom .swiper-slide-active .review-card p {
    margin: 14px 0 18px;
    font-size: 12px;
    line-height: 1.55;
  }

  .review-card strong {
    font-size: 14px;
  }

  .review-card small {
    font-size: 11px;
  }

  .clients-panel {
    padding: 28px 0 32px;
  }

  .clients-head {
    margin-bottom: 24px;
  }

  .clients-copy {
    max-width: 100%;
    font-size: 12px;
    line-height: 1.65;
  }

  .clients-carousel-wrap {
    padding: 0;
  }

  .client-logo-card {
    min-height: 96px;
    padding: 18px;
  }

  .portfolio-head {
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
  }

  .portfolio-head .btn-brand {
    width: 100%;
  }

  .portfolio-controls {
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }

  .portfolio-tabs,
  .device-tabs {
    display: grid;
    gap: 6px;
    padding: 5px;
    overflow: visible;
    width: 100%;
  }

  .portfolio-tabs button,
  .device-tabs button {
    min-height: 38px;
    width: 100%;
    min-width: 0;
    padding: 0 10px;
    font-size: 11px;
    line-height: 1.2;
    white-space: nowrap;
  }

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

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

  .project-visual {
    min-height: 205px;
    padding: 14px 8px 0;
  }

  .browser-frame {
    border-width: 6px;
    border-bottom-width: 10px;
    border-radius: 10px 10px 6px 6px;
  }

  .portfolio-slider.preview-tablet .project-visual,
  .portfolio-slider.preview-mobile .project-visual {
    min-height: 235px;
  }

  .portfolio-slider.preview-mobile .browser-frame {
    width: min(56%, 150px);
  }

  .project-meta {
    grid-template-columns: 1fr 0.4fr 0.1fr;
    gap: 8px;
    margin: 0 8px;
    padding: 13px 14px;
    justify-items: start;
  }
  .contact-socials div {
    justify-content: center;
  }

  .project-meta strong {
    font-size: 13px;
  }

  .project-meta span {
    grid-column: auto;
    grid-row: auto;
    justify-self: center;
    padding: 5px 10px;
    font-size: 10px;
  }

  .project-meta a {
    grid-column: auto;
    grid-row: auto;
  }

  .faq-section,
  .contact-section {
    padding-top: 0;
    padding-bottom: 44px;
  }

  .contact-shell,
  .faq-shell {
    padding: 0;
    gap: 26px;
    background-size: cover;
  } 

  .faq-copy,
  .contact-copy {
    font-size: 12px;
    line-height: 1.65;
  }

  .faq-question-card {
    padding: 22px 16px;
  }

  .faq-question-card h3 {
    font-size: 18px;
  }

  .accordion-button {
    justify-content: start;
    text-align: start;
    min-height: 54px;
    padding: 12px 10px;
    gap: 10px;
    font-size: 12px;
    line-height: 1.45;
  }

  .accordion-button::before {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    font-size: 10px;
  }

  .accordion-body {
    padding: 0 16px 16px;
    font-size: 12px;
    line-height: 1.65;
    text-align: start;
  }

  .contact-details {
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    gap: 14px;
  }

  .contact-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    text-align: center;
  }

  .contact-detail span {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .contact-detail strong {
    overflow-wrap: anywhere;
    font-size: 12px;
  }

  .contact-form-card {
    min-height: 0;
    padding: 22px 16px;
  }

  .contact-form-card::after {
    right: 16px;
    top: 18px;
    font-size: 34px;
  }

  .contact-form-head {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 20px;
    padding-right: 0;
    /* justify-items: center;
    text-align: center; */
    justify-items: start;
    text-align: start;
  }

  .contact-form-head span {
    width: 40px;
    height: 40px;
  }

  .contact-form-head h3 {
    font-size: 17px;
  }

  .contact-form-head p {
    font-size: 11px;
  }

  .contact-form .form-control,
  .contact-form .form-select {
    min-height: 44px;
    font-size: 12px;
  }

  .contact-form textarea.form-control {
    min-height: 92px;
  }

  .site-footer {
    padding: 44px 0 26px;
    text-align: left;
  }

  .footer-shell {
    padding: 24px 18px;
    border-radius: 12px;
    text-align: left;
  }

  .footer-logo {
    width: 150px;
    margin-left: 0;
    margin-right: auto;
  }

  .footer-tagline,
  .site-footer p,
  .site-footer a {
    font-size: 12px;
    line-height: 1.65;
  }

  .site-footer h4 {
    margin-bottom: 18px;
    font-size: 15px;
  }

  .footer-contact-social h4 {
    margin-bottom: 28px;
  }

  .footer-contact-list {
    align-items: flex-start;
    gap: 16px;
  }

  .newsletter {
    align-items: flex-start;
  }

  .footer-contact-item.top-icon span {
    top: -10px;
  }

  .footer-contact-item {
    align-items: flex-start;
    justify-content: flex-start;
    overflow-wrap: anywhere;
    font-size: 12px;
    text-align: left;
  }

  .newsletter-icon {
    justify-content: flex-start;
    padding-left: 16px;
  }

  .socials,
  .site-footer .socials {
    justify-content: flex-start;
  }

  .site-footer,
  .site-footer p,
  .site-footer a,
  .site-footer h4,
  .footer-about,
  .footer-links,
  .footer-contact-social,
  .footer-newsletter,
  .footer-bottom,
  .footer-tagline,
  .footer-newsletter>p {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
  }

  .site-footer .socials a {
    margin-right: 0px;
  }
  .socials a,
  .site-footer .socials a {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .footer-bottom {
    margin-top: 18px;
    padding: 18px 14px;
  }

  .footer-bottom p {
    font-size: 13px;
  }

  .footer-bottom small {
    font-size: 11px;
    line-height: 1.6;
  }
}

@media (max-width: 390px) {
  .container {
    width: min(100% - 22px, var(--site-width));
  }

  .hero-section h1 {
    font-size: 33px;
  }

  .section-title,
  .reviews-title {
    font-size: 23px;
  }

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

  .portfolio-tabs button,
  .device-tabs button {
    padding: 0 8px;
    font-size: 10px;
  }

  .reviews-slide {
    width: min(252px, calc(100vw - 38px));
  }
}

/* Reference-led review section */
.reviews-section {
  padding: 88px 0 96px;
  font-family: inherit;
  background:
    radial-gradient(circle at 96% 78%, rgba(228, 9, 20, .9) 0 3px, transparent 7px),
    radial-gradient(circle at 92% 12%, rgba(228, 9, 20, .7) 0 2px, transparent 6px),
    radial-gradient(circle at 76% 28%, rgba(228, 9, 20, .16), transparent 30%),
    linear-gradient(115deg, #02040b 0%, #08050b 42%, #1a0208 76%, #07020a 100%);
}

.reviews-section::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -22%;
  width: 70%;
  height: 72%;
  opacity: .32;
  pointer-events: none;
  background: repeating-radial-gradient(ellipse at right bottom, transparent 0 15px, rgba(228, 9, 20, .38) 16px 17px, transparent 18px 29px);
  transform: rotate(-8deg);
}

.reviews-panel {
  min-height: 500px;
  grid-template-columns: minmax(0, 43fr) minmax(0, 57fr);
  gap: 58px;
  overflow: visible;
  padding: 0;
  border-radius: 0;
}

.reviews-panel::before {
  inset: auto -15% -24% 8%;
  opacity: .42;
}

.reviews-copy {
  align-self: start;
}

.reviews-copy .eyebrow,
.reviews-stage > .eyebrow {
  margin-bottom: 22px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.reviews-title {
  max-width: 620px;
  margin-bottom: 26px;
  font-size: clamp(32px, 3.1vw, 46px);
  line-height: 1.15;
  letter-spacing: 0;
  font-weight: 800;
}

.reviews-text {
  max-width: 600px;
  color: #e0e0e3;
  font-size: 14px;
  line-height: 1.7;
}

.review-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  margin-top: 42px;
}

.review-stat {
  grid-template-columns: 48px auto;
  min-width: 0;
  margin-right: 18px;
  padding-right: 18px;
}

.review-stat span {
  width: 46px;
  height: 46px;
  font-size: 35px;
}

.review-stat strong {
  font-size: 18px;
}

.review-stat small {
  font-size: 11px;
  white-space: nowrap;
}

.reviews-stage {
  min-height: 500px;
  overflow: visible;
  padding: 0 72px 45px;
}

.reviews-carousel-shell {
  position: relative;
  width: 100%;
  max-width: 610px;
  margin: 0 auto;
}

.reviews-slider-custom {
  width: 100%;
  overflow: hidden;
  border-radius: 34px;
}

.reviews-slide {
  width: 100% !important;
  height: auto;
  opacity: 1;
  filter: none;
  transform: none !important;
}

.reviews-slider-custom .swiper-slide-active,
.reviews-slider-custom .swiper-slide-prev,
.reviews-slider-custom .swiper-slide-next {
  opacity: 1;
  filter: none;
  transform: none;
}

.review-card,
.reviews-slider-custom .swiper-slide-active .review-card {
  min-height: 410px;
  height: auto;
  padding: 28px 44px 30px;
  text-align: center;
  border: 1px solid rgba(255, 20, 37, .9);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 28%, rgba(228, 9, 20, .2), transparent 30%),
    linear-gradient(145deg, rgba(28, 29, 36, .97), rgba(7, 8, 13, .99));
  box-shadow: inset 0 0 42px rgba(228, 9, 20, .08), 0 18px 55px rgba(0, 0, 0, .5), 0 0 22px rgba(228, 9, 20, .18);
}

.review-quote {
  font-size: 42px;
  font-style: normal;
}

.review-stars {
  padding-top: 2px;
  font-size: 12px;
  letter-spacing: 2px;
}

.review-avatar,
.reviews-slider-custom .swiper-slide-active .review-avatar {
  width: 128px;
  height: 128px;
  margin: -8px auto 10px;
  border: 2px solid var(--red);
  /* filter: grayscale(100%); */
  opacity: 1;
  box-shadow: 0 0 20px rgba(228, 9, 20, .7);
}

.review-avatar-initials,
.reviews-slider-custom .swiper-slide-active .review-avatar-initials {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #292a31, #0b0c11);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  filter: none;
  user-select: none;
}

.review-card p,
.reviews-slider-custom .swiper-slide-active .review-card p {
  max-width: 490px;
  margin: 8px auto 16px;
  color: #fff;
  font-size: 16px;
  line-height: 1.68;
  -webkit-line-clamp: 3;
}

.review-card strong {
  font-size: 18px;
}

.review-card small {
  position: relative;
  margin-top: 6px;
  padding-bottom: 16px;
  font-size: 14px;
}

.review-card small::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 110px;
  height: 2px;
  background: var(--red);
  transform: translateX(-50%);
}

.review-pagination {
  justify-content: center;
  width: 100% !important;
  margin: 28px 0 0;
}

.review-pagination .review-bullet {
  width: 11px;
  height: 11px;
}

.review-pagination .review-bullet.active {
  width: 38px;
}

@media (max-width: 1199px) {
  .reviews-panel {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .reviews-copy {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .reviews-text {
    margin-inline: auto;
  }

  .reviews-stage {
    width: 100%;
    min-height: 0;
  }
}

@media (max-width: 767px) {
  .reviews-section {
    padding: 54px 0 60px;
  }

  .reviews-panel {
    gap: 32px;
    padding: 0;
  }

  .reviews-title {
    font-size: clamp(31px, 10vw, 43px);
    letter-spacing: -1px;
  }

  .reviews-text {
    font-size: 14px;
  }

  .review-stats {
    gap: 16px;
  }

  .review-stat {
    margin: 0;
    padding: 0;
  }

  .review-stat small {
    white-space: normal;
  }

  .reviews-stage {
    padding: 0 0 36px;
  }

  .reviews-stage > .eyebrow {
    text-align: center;
  }

  .reviews-carousel-shell {
    width: calc(100% - 54px);
  }

  .reviews-slider-custom {
    border-radius: 22px;
  }

  .reviews-slide {
    height: auto;
  }

  .review-card,
  .reviews-slider-custom .swiper-slide-active .review-card {
    min-height: 370px;
    padding: 22px 20px 24px;
    border-radius: 22px;
  }

  .review-avatar,
  .reviews-slider-custom .swiper-slide-active .review-avatar {
    width: 112px;
    height: 112px;
  }

  .review-avatar-initials,
  .reviews-slider-custom .swiper-slide-active .review-avatar-initials {
    font-size: 28px;
  }

  .review-card p,
  .reviews-slider-custom .swiper-slide-active .review-card p {
    font-size: 14px;
    line-height: 1.5;
  }

}
/* Blog article detail */
.article-hero {
  position: relative;
  overflow: hidden;
  padding: 135px 0 55px;
  color: #fff;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  background: linear-gradient(115deg, #02040b 0%, #08050b 48%, #1a0208 100%);
}

.article-hero.has-hero-image {
  background: linear-gradient(90deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .58) 34%, rgba(0, 0, 0, .08) 66%, rgba(0, 0, 0, .05) 100%),
    var(--article-hero-image) center center / cover no-repeat;
}

.article-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 78% 54%, rgba(228, 9, 20, .18), transparent 30%);
}

.article-hero-inner { position: relative; z-index: 1; }
.article-hero-copy { width: min(100%, 680px); }
.article-hero h1 { margin: 18px 0 15px; font-size: clamp(28px, 2.9vw, 40px); line-height: 1.15; font-weight: 600; }
.article-hero h1 span { color: var(--red); }
.article-hero-copy > p { max-width: 650px; margin: 0; color: #e2e3e7; font-size: 14px; line-height: 1.7; }
.article-meta { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-top: 24px; font-size: 12px; font-weight: 500; }
.article-meta i { margin-right: 7px; color: var(--red); }

.article-page { background: #fafafa; font-family: "Poppins", "Segoe UI", Arial, sans-serif; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; align-items: start; gap: 32px; }
.article-content { min-width: 0; }
.article-featured { width: 100%; max-height: 430px; display: block; object-fit: cover; border-radius: 10px; box-shadow: 0 10px 30px rgba(15, 23, 42, .08); }
.article-prose { padding: 24px 26px 0; color: var(--muted); font-size: 14px; font-weight: 400; line-height: 1.75; }
.article-rich-text { overflow-wrap: anywhere; }
.article-rich-text > :first-child { margin-top: 0; }
.article-rich-text > :last-child { margin-bottom: 0; }
.article-prose h2, .article-prose h3, .article-prose h4 { color: var(--ink); line-height: 1.4; font-weight: 700; }
.article-prose h2 { margin: 28px 0 10px; font-size: 22px; }
.article-prose h3 { margin: 24px 0 8px; font-size: 19px; }
.article-prose h4 { margin: 20px 0 7px; font-size: 16px; }
.article-prose p { margin: 0 0 14px; }
.article-rich-text ul, .article-rich-text ol { margin: 4px 0 18px; padding-left: 22px; }
.article-rich-text li { margin-bottom: 7px; padding-left: 3px; }
.article-rich-text li::marker { color: var(--red); font-weight: 700; }
.article-rich-text a { color: var(--red); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.article-rich-text a:hover { color: #a90810; }
.article-rich-text strong { color: #252a32; }
.article-rich-text figure { margin: 20px 0; }
.article-rich-text img { width: auto; max-width: 100%; height: auto; display: block; margin: 20px auto; border-radius: 10px; }
.article-rich-text figcaption { margin-top: 8px; color: #858c96; font-size: 12px; text-align: center; }
.article-rich-text .table { margin: 20px 0; overflow-x: auto; }
.article-rich-text table { width: 100%; border-collapse: collapse; background: #fff; }
.article-rich-text th, .article-rich-text td { padding: 10px 12px; border: 1px solid #e2e5ea; text-align: left; }
.article-rich-text th { background: #f4f5f7; color: #20242b; }
.article-prose blockquote { display: flex; gap: 20px; align-items: flex-start; margin: 22px 0; padding: 20px 24px; border: 1px solid #e2e5ea; border-radius: 10px; background: #fff; color: #303640; box-shadow: 0 6px 20px rgba(15, 23, 42, .035); }
.article-rich-text blockquote::before { content: "\f10d"; flex: 0 0 auto; color: var(--red); font-family: "Font Awesome 6 Free"; font-size: 30px; font-weight: 900; }
.article-prose blockquote > i { color: var(--red); font-size: 32px; }
.article-prose blockquote cite { display: block; margin-top: 6px; color: var(--red); font-size: 12px; font-style: normal; font-weight: 700; }
.article-stats { display: grid; grid-template-columns: repeat(4, 1fr); margin: 22px 0; overflow: hidden; border: 1px solid #e3e6eb; border-radius: 10px; background: #fff; }
.article-stats > div { min-width: 0; padding: 18px 15px; border-right: 1px solid #e8eaee; }
.article-stats > div:last-child { border: 0; }
.article-stats i { display: block; margin-bottom: 10px; color: var(--red); font-size: 20px; }
.article-stats strong { display: block; color: #1c2027; font-size: 17px; }
.article-stats span { display: block; margin-top: 5px; color: #747b86; font-size: 9px; line-height: 1.45; }
.article-content-banner { display: flex; align-items: center; justify-content: space-between; min-height: 150px; margin: 20px 0; padding: 22px 26px; overflow: hidden; border-radius: 10px; color: #fff; background: linear-gradient(90deg, rgba(0, 0, 0, .34), rgba(0, 0, 0, 0)), var(--article-content-image) center / cover no-repeat; box-shadow: inset 0 0 35px rgba(228, 9, 20, .16); }
.article-content-banner strong { font-size: 21px; line-height: 1.35; }
.article-content-banner span { color: var(--red); }
.article-takeaways { margin: 20px 0; padding: 18px 22px; border: 1px solid #e2e5ea; border-radius: 10px; background: #fff; }
.article-takeaways > strong { color: var(--red); }
.article-takeaways ul { display: grid; gap: 5px; margin: 10px 0 0; padding: 0; list-style: none; }
.article-takeaways li::before { content: "\f058"; margin-right: 8px; color: var(--red); font-family: "Font Awesome 6 Free"; font-weight: 900; }
.article-tags, .article-share { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 18px; color: #242933; font-size: 13px; }
.article-tags span { padding: 6px 11px; border-radius: 999px; background: #f0f1f4; color: #666e79; }
.article-share a { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: #eff2f6; color: #2872bd; transition: transform .25s ease, color .25s ease, background .25s ease; }
.article-share a:hover { transform: translateY(-3px); background: var(--red); color: #fff; }
.article-author { display: grid; grid-template-columns: 88px 1fr; gap: 18px; align-items: center; margin-top: 22px; padding: 18px; border: 1px solid #e2e5ea; border-radius: 10px; background: #fff; }
.article-author img { width: 88px; height: 88px; border: 3px solid #fff; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 1px #e1e4e9; }
.article-author h3 { margin: 0; color: #181c22; font-size: 19px; font-weight: 700; }
.article-author span { color: var(--red); font-size: 12px; font-weight: 600; }
.article-author p { margin: 7px 0 0; font-size: 13px; line-height: 1.7; }
.article-sidebar { top: 100px; }
.article-cta { position: relative; overflow: hidden; padding: 26px; border-radius: 10px; color: #fff; background: linear-gradient(145deg, #080a0f, #1a0207); box-shadow: inset 0 0 32px rgba(228, 9, 20, .16); }
.article-cta > i { position: absolute; right: 18px; bottom: 20px; color: var(--red); font-size: 76px; opacity: .45; }
.article-cta h3 { position: relative; margin: 0 0 10px; font-size: 17px; font-weight: 800; }
.article-cta p { position: relative; margin-bottom: 18px; color: #d6d8dc; font-size: 11px; line-height: 1.65; }
.article-cta a { position: relative; display: inline-flex; gap: 8px; align-items: center; padding: 11px 14px; border-radius: 7px; background: var(--red); color: #fff; font-size: 10px; font-weight: 700; }
.article-navigation { display: grid; grid-template-columns: 1fr 1fr; margin: 30px 352px 28px 0; overflow: hidden; border: 1px solid #e2e5ea; border-radius: 10px; background: #fff; }
.article-navigation > div { min-height: 82px; padding: 14px 20px; }
.article-navigation > div + div { border-left: 1px solid #e8eaee; text-align: right; }
.article-navigation small { display: block; margin-bottom: 5px; color: #8a9099; font-size: 12px; }
.article-navigation a { color: #171b21; font-size: 14px; font-weight: 700; }
.article-navigation a:hover { color: var(--red); }
.related-heading { display: flex; align-items: center; justify-content: space-between; margin: 0 352px 14px 0; }
.related-heading h2 { margin: 0; color: #171b21; font-size: 22px; font-weight: 700; }
.related-heading a { color: var(--red); font-size: 14px; font-weight: 700; }
.related-articles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-right: 352px; }
.related-card { overflow: hidden; border: 1px solid #e2e5ea; border-radius: 10px; background: #fff; transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.related-card:hover { transform: translateY(-6px); border-color: rgba(228, 9, 20, .35); box-shadow: 0 16px 32px rgba(15, 23, 42, .1); }
.related-card img { width: 100%; aspect-ratio: 16 / 8.5; display: block; object-fit: cover; transition: transform .45s ease; }
.related-card:hover img { transform: scale(1.05); }
.related-card > div { padding: 12px 14px 15px; }
.related-card span { color: var(--red); font-size: 11px; font-weight: 600; text-transform: uppercase; }
.related-card h3 { min-height: 58px; margin: 8px 0 10px; font-size: 16px; line-height: 1.45; font-weight: 700; }
.related-card h3 a { color: #171b21; }
.related-card small { color: #717985; font-size: 11px; }

@media (max-width: 991px) {
  .article-hero { background-position: center; background-size: cover; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); max-height: none; overflow: visible; }
  .article-navigation, .related-heading, .related-articles { margin-right: 0; }
}

@media (max-width: 767px) {
  .article-hero { padding: 125px 0 55px; text-align: center; background: linear-gradient(115deg, #02040b 0%, #08050b 48%, #1a0208 100%); }
  .article-hero.has-hero-image { background: linear-gradient(rgba(2, 3, 6, .82), rgba(2, 3, 6, .92)), var(--article-hero-image) center / cover no-repeat; }
  .article-hero .blog-breadcrumb, .article-meta { justify-content: center; }
  .article-hero h1 { font-size: 30px; }
  .article-prose { padding: 20px 0 0; }
  .article-stats { grid-template-columns: repeat(2, 1fr); }
  .article-stats > div:nth-child(2) { border-right: 0; }
  .article-stats > div:nth-child(-n+2) { border-bottom: 1px solid #e8eaee; }
  .article-author { grid-template-columns: 1fr; text-align: center; }
  .article-author img { margin: auto; }
  .article-sidebar { grid-template-columns: 1fr; }
  .article-navigation { grid-template-columns: 1fr; }
  .article-navigation > div + div { border-top: 1px solid #e8eaee; border-left: 0; }
  .related-articles { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .article-meta { gap: 12px 16px; }
  .article-prose blockquote { padding: 18px; }
  .article-content-banner strong { font-size: 17px; }
  .related-heading { align-items: flex-start; gap: 12px; flex-direction: column; }
}

/* Responsive homepage sections and blog carousel */
.blog-title-link {
  display: inline;
  color: inherit;
  cursor: pointer;
  pointer-events: auto;
  transition: color .25s ease;
}

.blog-title-link:hover,
.blog-title-link:focus-visible,
.popular-post:hover strong,
.popular-post:focus-visible strong {
  color: var(--red);
}

.blog-title-link:focus-visible,
.popular-post:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.insights-slider {
  width: 100%;
  overflow: hidden;
}

.insights-slider .swiper-wrapper { align-items: stretch; }
.insights-slider .swiper-slide { height: auto; }
.insights-slider .insight-card { display: flex; flex-direction: column; }
.insights-slider .insight-card-body { display: flex; flex: 1; flex-direction: column; }
.insights-slider .insight-card-body > a { margin-top: auto; align-self: flex-start; }

.insights-pagination,
.portfolio-pagination {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 12px;
  margin-top: 34px;
}

.insights-pagination .client-bullet,
.portfolio-pagination .client-bullet {
  width: 6px;
  height: 6px;
  display: block;
  margin: 0 !important;
  border-radius: 999px;
  background: rgba(255, 255, 255, .45);
  opacity: 1;
  cursor: pointer;
  transition: width .3s ease, background-color .3s ease;
}

.portfolio-pagination .client-bullet {
  background: black!important;
}

.portfolio-pagination .client-bullet.active {
  background: var(--red)!important;
}


.insights-pagination .client-bullet.active,
.portfolio-pagination .client-bullet.active {
  width: 58px;
  background: var(--red);
}

.portfolio-pagination[hidden],
.insights-pagination[hidden],
.related-pagination[hidden] { display: none; }

/* Contact form feedback matches dashboard alerts */
.frontend-alert {
  position: fixed;
  top: 92px;
  right: 24px;
  z-index: 10050;
  width: min(430px, calc(100vw - 32px));
  margin: 0;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
  text-align: left;
  box-shadow: 0 16px 40px rgba(15, 23, 42, .16);
  animation: frontendAlertIn .35s ease both;
}

@keyframes frontendAlertIn {
  from { opacity: 0; transform: translateX(28px); }
  to { opacity: 1; transform: translateX(0); }
}

.frontend-alert-success {
  border: 1px solid #a7f3d0;
  background: #ecfdf5;
  color: #065f46;
}

.frontend-alert-error {
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #991b1b;
}

.frontend-alert.frontend-alert-in-form {
  position: absolute;
  top: 18px;
  right: 18px;
  left: auto;
  width: min(390px, calc(100% - 36px));
}

@media (min-width: 576px) and (max-width: 991px) {
  .frontend-alert.frontend-alert-in-form {
    top: 16px;
    right: 16px;
    left: auto;
    width: min(390px, calc(100% - 32px));
  }
}

@media (max-width: 575px) {
  .frontend-alert {
    top: 78px;
    right: 16px;
    left: 16px;
    width: auto;
  }

  .frontend-alert.frontend-alert-in-form {
    top: 12px;
    right: 12px;
    left: auto;
    width: min(390px, calc(100% - 24px));
    text-align: left;
  }
}

/* Responsive blog listing filters */
.blog-toolbar {
  padding: 14px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .045);
}

.blog-filter-group {
  flex: 1 1 auto;
  min-width: 0;
}

.blog-toolbar select {
  width: auto;
  min-width: 180px;
  height: 48px;
  padding: 0 42px 0 16px;
  border-color: #dfe3e8;
  border-radius: 9px;
  background-color: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.blog-toolbar select[name="sort"] { min-width: 140px; }

.blog-toolbar select:hover {
  border-color: rgba(228, 9, 20, .45);
}

.blog-toolbar select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(228, 9, 20, .1);
}

.blog-toolbar > span {
  flex: 0 0 auto;
  font-size: 12px;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .blog-toolbar { align-items: stretch; flex-direction: column; }
  .blog-filter-group { width: 100%; }
  .blog-toolbar select { width: 100%; min-width: 0; }
  .blog-toolbar > span { width: 100%; }
}

@media (max-width: 575px) {
  .blog-toolbar { gap: 12px; padding: 12px; }
  .blog-filter-group { grid-template-columns: 1fr; gap: 10px; }
  .blog-toolbar select { height: 48px; font-size: 13px; }
  .blog-toolbar > span { text-align: center; white-space: normal; }
}

/* Consistent vertical rhythm across homepage sections */
.about-section,
.services-section,
.reviews-section,
.clients-section,
.insights-section,
.portfolio-section,
.contact-section,
.faq-section {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.clients-panel { padding-top: 0; padding-bottom: 0; }

@media (min-width: 768px) and (max-width: 991px) {
  .about-section,
  .services-section,
  .reviews-section,
  .clients-section,
  .insights-section,
  .portfolio-section,
  .contact-section,
  .faq-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

@media (max-width: 767px) {
  .about-section,
  .services-section,
  .reviews-section,
  .clients-section,
  .insights-section,
  .portfolio-section,
  .contact-section,
  .faq-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }
}

/* Equal title area across service cards */
.service-card h3 {
  min-height: 48px;
  display: flex;
  /* align-items: flex-start; */
  align-items: center;
  justify-content: start;
  margin-bottom: 14px;
  line-height: 1.35;
  text-align: start;
}

@media (max-width: 767px) {
  .service-card h3 {
    min-height: 44px;
    justify-content: center;
    margin-bottom: 10px;
  }
}

@media (max-width: 1199px) {
  .reviews-title { max-width: 720px; margin-inline: auto; }
  .reviews-title br { display: none; }
}

@media (max-width: 767px) {
  .about-section { padding: 54px 0; }
  .about-section .row { --bs-gutter-y: 34px; }
  .about-section .section-title { font-size: clamp(26px, 8vw, 34px); line-height: 1.25; }
  .about-section .muted { max-width: 560px; font-size: 14px; line-height: 1.75; }
  .about-section .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 16px; }
  .about-section .stat-item { width: 100%; grid-template-columns: 1fr; justify-items: center; gap: 10px; text-align: center; border-radius: 10px;  border: 1px solid #ffe7e8; padding: 18px 22px;}
  .about-section .stat-item:last-child { grid-column: 1 / -1; width: calc(50% - 8px); justify-self: center; }
  .about-section .about-image { width: 100%; margin-top: 0; }
  .about-section .about-image img { width: 100%; min-height: 240px; }

  .reviews-section { padding: 58px 0 64px; }
  .reviews-section .container { width: min(100% - 28px, var(--site-width)); }
  .reviews-panel { width: 100%; min-width: 0; gap: 36px; }
  .reviews-copy, .reviews-stage { width: 100%; min-width: 0; }
  .reviews-title { max-width: 560px; margin: 0 auto 20px; font-size: clamp(27px, 8.4vw, 38px); line-height: 1.2; letter-spacing: -.5px; overflow-wrap: anywhere; }
  .reviews-text { max-width: 560px; font-size: 14px; line-height: 1.7; }
  .review-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 14px; margin-top: 32px; }
  .review-stat { width: 100%; grid-template-columns: 1fr; justify-items: center; gap: 8px; text-align: center; }
  .review-stat:last-child { grid-column: 1 / -1; width: calc(50% - 7px); justify-self: center; }
  .review-stat span { margin: 0; }
  .reviews-stage { padding: 0 0 28px; overflow: hidden; }
  .reviews-carousel-shell { width: 100%; max-width: 560px; }
  .reviews-slider-custom { width: 100%; overflow: hidden; }
  .reviews-slide { width: 100% !important; min-width: 0; }
  .review-card, .reviews-slider-custom .swiper-slide-active .review-card { width: 100%; min-width: 0; min-height: 360px; padding: 22px 18px 25px; }
  .review-card p, .reviews-slider-custom .swiper-slide-active .review-card p { width: 100%; max-width: 100%; overflow-wrap: anywhere; }

  .insights-section { padding: 58px 0 64px; }
  .insights-slider { overflow: hidden; }
  .insights-slider .insight-card { text-align: left; }
  .insights-pagination { margin-top: 26px; }
}

@media (max-width: 390px) {
  .about-section .stats-grid, .review-stats { gap-inline: 10px; }
  .review-card, .reviews-slider-custom .swiper-slide-active .review-card { padding-inline: 15px; }
  .review-stars { letter-spacing: 1px; }
}

/* Keep Client Reviews heading copy consistent with other homepage sections */
.reviews-copy .eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

.reviews-copy .reviews-title {
  max-width: 650px;
  margin: 0 0 22px;
  font-size: clamp(28px, 2.9vw, 40px);
  line-height: 1.15;
  letter-spacing: 0;
  font-weight: 600;
}

.reviews-copy .reviews-text {
  max-width: 650px;
  margin: 0;
  color: #d9dbe1;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
}

@media (max-width: 1199px) {
  .reviews-copy .reviews-title,
  .reviews-copy .reviews-text {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  .reviews-copy .reviews-title {
    max-width: 560px;
    margin-bottom: 18px;
    font-size: 28px;
    line-height: 1.22;
    letter-spacing: 0;
    overflow-wrap: normal;
  }

  .reviews-copy .reviews-text {
    max-width: 560px;
    font-size: 13px;
    line-height: 1.75;
  }
}

@media (max-width: 390px) {
  .reviews-copy .reviews-title { font-size: 23px; }
}

/* Clear selected state for Our Work controls */
.portfolio-tabs button.active,
.device-tabs button.active,
.portfolio-tabs button[aria-pressed="true"],
.device-tabs button[aria-pressed="true"] {
  color: #fff;
  background: var(--red);
  box-shadow: 0 8px 20px rgba(228, 9, 20, .28);
}

.portfolio-tabs button.active i,
.device-tabs button.active i { color: #fff; }

.portfolio-tabs button:focus-visible,
.device-tabs button:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

/* Related articles carousel */
.related-slider {
  width: auto;
  margin-right: 352px;
  overflow: hidden;
}

.related-slider .swiper-wrapper { align-items: stretch; }
.related-slider .swiper-slide { height: auto; }
.related-slider .related-card { height: 100%; }

.related-pagination {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 12px;
  margin: 28px 352px 0 0;
}

.related-pagination .client-bullet {
  width: 6px;
  height: 6px;
  display: block;
  margin: 0 !important;
  border-radius: 999px;
  background: #c9cbd1;
  opacity: 1;
  cursor: pointer;
  transition: width .3s ease, background-color .3s ease;
}

.related-pagination .client-bullet.active {
  width: 58px;
  background: var(--red);
}

@media (max-width: 991px) {
  .related-slider,
  .related-pagination { margin-right: 0; }
}

@media (max-width: 767px) {
  .related-slider { width: 100%; }
  .related-slider .related-card { text-align: left; }
  .related-pagination { margin-top: 24px; }
}

.related-pagination[hidden] { display: none; }
