:root {
  --primary: #c21616;
  --primary-light: #ff5d5d;
  --primary-dark: #981010;
  --secondary: #35013f;
  --secondary-deep: #210027;
  --text: #000;
  --muted: #5d5960;
  --white: #fff;
  --off-white: #f7f4f7;
  --light-yellow: #f6bf4f;
  --border: #e8e1e9;
  --font: "Red Hat Display", sans-serif;
  --fs-body: 1rem;
  --section-space: 110px;
  --radius: 4px;
  --shadow: 0 18px 55px rgba(36, 0, 43, 0.12);
  --transition: 0.3s ease;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}
p {
  color: var(--muted);
  margin: 0 0 1rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--secondary);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin: 0 0 1rem;
}
button,
a {
  outline-offset: 4px;
}

.text-light-yellow {
  color: var(--light-yellow) !important;
}

.text-light-red {
  color: var(--primary-light) !important;
}

.skip-link {
  position: fixed;
  left: 20px;
  top: -100px;
  z-index: 9999;
  background: var(--white);
  padding: 10px 18px;
  color: var(--secondary);
  font-weight: 700;
}
.skip-link:focus {
  top: 20px;
}
.container {
  max-width: 1240px;
}
.section-space {
  padding: var(--section-space) 0;
}
.section-title {
  font-size: clamp(2.25rem, 4vw, 4rem);
}
.section-title em,
.hero h1 em,
.hero h2 em {
  font-style: normal;
  color: var(--primary);
}
.section-lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: #302d31;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow span {
  width: 30px;
  height: 2px;
  background: currentColor;
}
.btn {
  border-radius: 0;
  padding: 14px 24px;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.015em;
}
.btn i {
  margin-left: 8px;
}
.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}
.btn-light {
  color: var(--secondary);
  background: var(--white);
  border-color: var(--white);
}
.btn-light:hover {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
}
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background: var(--secondary-deep);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.page-loader-inner {
  position: relative;
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
}
.loader-ring {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-top-color: var(--primary);
  border-right-color: var(--primary);
  border-radius: 50%;
  animation: loaderSpin 0.9s linear infinite;
}
.loader-ring:after {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom-color: rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  animation: loaderSpin 1.35s linear infinite reverse;
}
.loader-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--secondary);
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
}
.loader-text {
  position: absolute;
  top: calc(100% + 16px);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.32em;
  text-indent: 0.32em;
}
.page-loader:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  animation: loaderProgress 3.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes loaderSpin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes loaderProgress {
  to {
    width: 92%;
  }
}
.topbar {
  background: var(--secondary-deep);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  padding: 8px 0;
}
.topbar p {
  color: inherit;
}
.topbar i {
  color: #ff6a6a;
  margin-right: 7px;
}
.topbar-links {
  display: flex;
  gap: 28px;
}
.topbar a:hover {
  color: var(--white);
}
.navbar {
  min-height: 88px;
  background: var(--white);
  box-shadow: 0 5px 25px rgba(35, 0, 41, 0.07);
  z-index: 100;
}
.site-header.navbar-is-fixed {
  padding-bottom: var(--fixed-navbar-height, 88px);
}
.site-header.navbar-is-fixed .navbar {
  position: fixed;
  z-index: 1500;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 10px 35px rgba(35, 0, 41, 0.14);
  animation: navbarSlideDown 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes navbarSlideDown {
  from {
    opacity: 0;
    transform: translate3d(0, -18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 47px;
  height: 47px;
  background: var(--secondary);
  color: var(--white);
  font-weight: 900;
  font-size: 1.75rem;
  position: relative;
  overflow: hidden;
}
.brand-mark:after {
  content: "";
  position: absolute;
  width: 42px;
  height: 8px;
  background: var(--primary);
  transform: rotate(-45deg);
  right: -15px;
  bottom: 4px;
}
.brand-mark span {
  position: relative;
  z-index: 1;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-copy strong {
  font-size: 1.48rem;
  letter-spacing: 0.05em;
  color: var(--secondary);
  font-weight: 900;
}
.brand-copy small {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #504b51;
  margin-top: 5px;
}
.nav-link {
  font-weight: 700;
  color: #282329 !important;
  padding: 31px 18px !important;
  position: relative;
}
.nav-link:after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 20px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: var(--transition);
}
.nav-link:hover:after,
.nav-link.active:after {
  transform: scaleX(1);
}
.header-cta {
  padding: 12px 18px;
}
.navbar-toggler {
  border: 0;
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(194, 22, 22, 0.2);
}
.mobile-menu-header,
.mobile-menu-backdrop {
  display: none;
}
.hero {
  position: relative;
  overflow: hidden;
}
.hero-slider,
.hero-slide {
  height: min(760px, calc(100vh - 122px));
  min-height: 600px;
}
.hero-slide {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.hero-slide-one {
  background-image: url("../images/home/banner1.jpg");
}
.hero-slide-two {
  background-image: url("../images/home/banner2.jpg");
}
.hero-slide-three {
  background-image: url("../images/home/banner3.jpg");
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(30, 0, 36, 0.95) 0%,
    rgba(53, 1, 63, 0.76) 48%,
    rgba(53, 1, 63, 0.15) 100%
  );
}
.hero-content {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-bottom: 55px;
}
.hero h1,
.hero h2 {
  color: var(--white);
  font-size: 4.375rem;
  max-width: 1060px;
  letter-spacing: -0.055em;
}
.hero h1 em,
.hero h2 em {
  display: block;
}
.hero-lead {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.18rem;
  line-height: 1.7;
  margin: 24px 0 34px;
}
.hero-slide .eyebrow,
.hero-slide h1,
.hero-slide h2,
.hero-slide .hero-lead,
.hero-slide .btn {
  opacity: 0;
  transform: translateY(42px);
  filter: blur(3px);
}
.hero-slide.swiper-slide-active .eyebrow {
  animation: heroReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}
.hero-slide.swiper-slide-active h1,
.hero-slide.swiper-slide-active h2 {
  animation: heroReveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.38s forwards;
}
.hero-slide.swiper-slide-active .hero-lead {
  animation: heroReveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.62s forwards;
}
.hero-slide.swiper-slide-active .btn {
  animation: heroReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.82s forwards;
}
.hero-slide.swiper-slide-active {
  animation: heroZoom 8.8s ease-out forwards;
}
.hero-controls {
  position: absolute !important;
  z-index: 5;
  bottom: 55px !important;
  left: 50% !important;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  height: 48px;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-button-next {
  position: static;
  width: 46px;
  height: 46px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  pointer-events: auto;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 14px;
  font-weight: 900;
}
.swiper-pagination {
  position: static !important;
  width: auto !important;
  color: var(--white);
  font-weight: 700;
  pointer-events: auto;
}
.swiper-pagination-current {
  font-size: 1.25rem;
}
.hero-trust {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 8;
  width: 315px;
  background: var(--primary);
  color: var(--white);
  padding: 27px 35px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.hero-trust-number {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}
.hero-trust p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.84rem;
  line-height: 1.45;
}
.hero-trust strong {
  color: var(--white);
}
@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
@keyframes heroZoom {
  from {
    background-size: 100% auto;
  }
  to {
    background-size: 108% auto;
  }
}
.value-strip {
  background: var(--white);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 10;
}
.value-item {
  min-height: 125px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 25px 38px;
  border-right: 1px solid var(--border);
}
.value-item:last-child {
  border: 0;
}
.value-item > i {
  font-size: 2.3rem;
  color: var(--primary);
}
.value-item div {
  display: flex;
  flex-direction: column;
}
.value-item strong {
  color: var(--secondary);
  font-size: 1.05rem;
}
.value-item span {
  font-size: 0.84rem;
  color: var(--muted);
}
.about-visual {
  position: relative;
  padding: 0 45px 48px 0;
}
.about-visual img {
  width: 100%;
  height: 570px;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--secondary);
  color: var(--white);
  padding: 28px 32px;
  min-width: 270px;
  display: flex;
  flex-direction: column;
}
.about-badge strong {
  font-size: 1.25rem;
}
.about-badge span {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.72);
}
.dot-pattern {
  position: absolute;
  left: -28px;
  bottom: 12px;
  width: 95px;
  height: 95px;
  z-index: -1;
  background-image: radial-gradient(var(--primary) 1.5px, transparent 1.5px);
  background-size: 10px 10px;
}
.approach-list {
  margin: 27px 0;
}
.approach-list div {
  display: flex;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}
.approach-list i {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  flex: none;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.8rem;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--primary);
  font-weight: 800;
  border-bottom: 1px solid var(--primary);
  padding-bottom: 4px;
}
.text-link:hover {
  color: var(--secondary);
  border-color: var(--secondary);
  gap: 14px;
}
.services-section {
  background: var(--secondary);
  position: relative;
  overflow: hidden;
}
.services-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 90% 5%,
      rgba(194, 22, 22, 0.28),
      transparent 28%
    ),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: auto, 60px 60px, 60px 60px;
}
.services-section .container {
  position: relative;
}
.services-intro {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.08rem;
  margin: 0;
}
.service-card {
  height: 100%;
  min-height: 335px;
  background: var(--white);
  padding: 38px 34px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.service-card.featured,
.service-card:hover {
  background: var(--primary);
  transform: translateY(-7px);
}
.service-card > i {
  font-size: 2.8rem;
  color: var(--primary);
  display: block;
  margin-bottom: 28px;
}
.service-card h3 {
  font-size: 1.45rem;
  max-width: 260px;
}
.service-card p {
  font-size: 0.92rem;
  line-height: 1.65;
}
.service-number {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(53, 1, 63, 0.06);
}
.service-card > a {
  position: absolute;
  right: 28px;
  bottom: 27px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  color: var(--secondary);
}
.service-card.featured > i,
.service-card:hover > i,
.service-card.featured h3,
.service-card:hover h3,
.service-card.featured p,
.service-card:hover p {
  color: var(--white);
}
.service-card.featured p,
.service-card:hover p {
  opacity: 0.78;
}
.service-card.featured .service-number,
.service-card:hover .service-number {
  color: rgba(255, 255, 255, 0.12);
}
.service-card.featured > a,
.service-card:hover > a {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.section-heading {
  max-width: 730px;
  margin-bottom: 60px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.process-grid:before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 55px;
  border-top: 1px dashed #d5cbd7;
}
.process-grid article {
  text-align: center;
  position: relative;
  padding: 0 25px;
}
.process-grid article > span {
  position: absolute;
  top: -12px;
  left: calc(50% + 26px);
  background: var(--primary);
  color: var(--white);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.66rem;
  font-weight: 800;
  z-index: 2;
}
.process-grid article > i {
  position: relative;
  z-index: 1;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--off-white);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  margin: 0 auto 25px;
  color: var(--secondary);
  font-size: 2.35rem;
  transition: var(--transition);
}
.process-grid article:hover > i {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-5px);
}
.process-grid h3 {
  font-size: 1.25rem;
}
.process-grid p {
  font-size: 0.9rem;
}
.insight-section {
  margin-bottom: -90px;
  position: relative;
  z-index: 3;
}
.insight-panel {
  background: var(--primary);
  padding: 55px 65px;
  box-shadow: 0 20px 50px rgba(60, 0, 70, 0.2);
}
.insight-panel h2 {
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  color: var(--white);
  margin: 0;
  max-width: 780px;
}
.site-footer {
  background: var(--secondary-deep);
  color: var(--white);
  padding-top: 180px;
}
.footer-main {
  padding-bottom: 70px;
}
.footer-brand .brand-mark {
  background: var(--white);
  color: var(--secondary);
}
.footer-brand .brand-copy strong,
.footer-brand .brand-copy small {
  color: var(--white);
}
.footer-about {
  color: rgba(255, 255, 255, 0.64);
  max-width: 420px;
  margin: 25px 0;
}
.social-links {
  display: flex;
  gap: 9px;
}
.social-links a {
  width: 39px;
  height: 39px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  display: grid;
  place-items: center;
}
.social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.site-footer h2 {
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer li {
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}
.site-footer li a:hover {
  color: var(--white);
  padding-left: 4px;
}
.contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.contact-list i {
  color: #ff6565;
  font-size: 1rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}
.footer-bottom a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-left: 25px;
}
.footer-bottom a:hover {
  color: var(--white);
}
.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 45px;
  height: 45px;
  border: 0;
  background: var(--primary);
  color: var(--white);
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition);
}
.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.reveal-item {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal-item.reveal-left {
  transform: translate3d(-28px, 0, 0);
}
.reveal-item.reveal-right {
  transform: translate3d(28px, 0, 0);
}
.reveal-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

/* ================================================================
   LEGAL PAGES
   ================================================================ */
.legal-hero {
  background-image: linear-gradient(
      90deg,
      rgba(33, 0, 39, 0.96),
      rgba(53, 1, 63, 0.74)
    ),
    url("../images/about/about-hero.jpg");
  background-position: center;
}
.legal-hero h1 {
  max-width: 850px;
}
.legal-content {
  background: var(--off-white);
}
.legal-document {
  max-width: 920px;
  margin: 0 auto;
  padding: 60px 70px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(53, 1, 63, 0.07);
}
.legal-document section {
  padding: 0 0 28px;
  margin: 0 0 32px;
  border-bottom: 1px solid var(--border);
}
.legal-document section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.legal-document h2 {
  margin-bottom: 15px;
  color: var(--secondary);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}
.legal-document h3 {
  margin: 24px 0 10px;
  color: var(--secondary);
  font-size: 1.05rem;
}
.legal-document p {
  margin-bottom: 14px;
}
.legal-document p:last-child {
  margin-bottom: 0;
}
.legal-document ul {
  margin: 0 0 18px;
  padding-left: 21px;
}
.legal-document li {
  margin-bottom: 7px;
  color: var(--muted);
}
.legal-document a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-document address {
  margin: 0;
  color: var(--muted);
  font-style: normal;
  line-height: 1.9;
}
.legal-page .site-footer {
  padding-top: 90px;
}

/* ================================================================
   SERVICES PAGE
   ================================================================ */
.services-hero {
  background-image: linear-gradient(
      90deg,
      rgba(33, 0, 39, 0.96),
      rgba(53, 1, 63, 0.72)
    ),
    url("../images/home/banner3.jpg");
  background-position: center 45%;
}

.service-orbit {
  position: relative;
  width: min(100%, 620px);
  aspect-ratio: 1.35;
  margin-left: auto;
  background: radial-gradient(
    circle at center,
    rgba(194, 22, 22, 0.1),
    transparent 34%
  );
}
.service-orbit::before,
.service-orbit::after {
  content: "";
  position: absolute;
  inset: 9% 20%;
  border: 1px dashed rgba(53, 1, 63, 0.2);
  border-radius: 50%;
}
.service-orbit::after {
  inset: 22% 31%;
}
.orbit-core {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background: var(--secondary);
  box-shadow: 0 0 0 15px rgba(194, 22, 22, 0.1);
  transform: translate(-50%, -50%);
}
.orbit-core strong {
  margin-top: 9px;
  line-height: 1.15;
}
.orbit-node {
  position: absolute;
  z-index: 3;
  width: 108px;
  height: 82px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(53, 1, 63, 0.1);
}
.orbit-node i {
  color: var(--primary);
  font-size: 1.65rem;
}
.orbit-node span {
  margin-top: 3px;
  font-size: 0.76rem;
  font-weight: 800;
}
.orbit-1 {
  left: 3%;
  top: 8%;
}
.orbit-2 {
  left: 42%;
  top: 0;
}
.orbit-3 {
  right: 2%;
  top: 17%;
}
.orbit-4 {
  right: 3%;
  bottom: 9%;
}
.orbit-5 {
  left: 43%;
  bottom: 0;
}
.orbit-6 {
  left: 2%;
  bottom: 15%;
}

.service-catalog {
  position: relative;
  overflow: hidden;
  background: var(--secondary-deep);
}
.service-catalog::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 90% 5%,
      rgba(194, 22, 22, 0.25),
      transparent 25%
    ),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: auto, 60px 60px, 60px 60px;
}
.service-catalog .container {
  position: relative;
}
.catalog-intro {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.06rem;
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.catalog-card {
  position: relative;
  min-height: 355px;
  padding: 38px;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 25px;
  background: var(--white);
  transition: var(--transition);
}
.catalog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}
.catalog-icon {
  position: relative;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--primary);
}
.catalog-icon i {
  font-size: 2rem;
}
.catalog-icon span {
  position: absolute;
  right: -8px;
  top: -12px;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--secondary);
  background: var(--white);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  font-size: 0.65rem;
  font-weight: 900;
}
.catalog-label {
  margin: 0 0 5px;
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.catalog-card h3 {
  margin-bottom: 6px;
  font-size: 1.42rem;
}
.catalog-card h4 {
  margin-bottom: 15px;
  color: #4e4750;
  font-size: 0.9rem;
  letter-spacing: 0;
}
.catalog-card p:not(.catalog-label) {
  font-size: 0.88rem;
}
.catalog-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.catalog-card li {
  padding: 5px 9px;
  color: var(--secondary);
  background: var(--off-white);
  font-size: 0.68rem;
  font-weight: 700;
}

.approach-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.approach-path::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 69px;
  border-top: 2px dashed var(--border);
}
.approach-step {
  position: relative;
  z-index: 1;
  padding: 0 22px;
  text-align: center;
}
.step-icon {
  width: 138px;
  height: 138px;
  margin: 0 auto 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(53, 1, 63, 0.08);
  font-size: 2.4rem;
  transition: var(--transition);
}
.approach-step:hover .step-icon {
  color: var(--white);
  background: var(--secondary);
  transform: translateY(-5px);
}
.step-number {
  position: absolute;
  z-index: 2;
  left: calc(50% + 34px);
  top: 2px;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--primary);
  font-size: 0.7rem;
  font-weight: 900;
}
.approach-step h3 {
  font-size: 1.25rem;
}
.approach-step p {
  min-height: 72px;
  font-size: 0.86rem;
}
.approach-step small {
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.client-fit {
  padding-bottom: 190px;
  background: var(--off-white);
}
.fit-radar {
  position: relative;
  min-height: 550px;
}
.fit-radar::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 430px;
  height: 430px;
  border: 1px dashed rgba(53, 1, 63, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.fit-center {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--secondary);
  text-align: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 15px rgba(194, 22, 22, 0.1);
}
.fit-center i {
  margin-bottom: 8px;
  color: #ff5d5d;
  font-size: 2rem;
}
.fit-center strong {
  line-height: 1.15;
}
.fit-item {
  position: absolute;
  z-index: 2;
  width: 190px;
  min-height: 105px;
  padding: 18px 18px 15px 56px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(53, 1, 63, 0.08);
}
.fit-item span {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--primary);
  font-size: 0.72rem;
  font-weight: 900;
}
.fit-item i {
  color: var(--primary);
  font-size: 1.35rem;
}
.fit-item p {
  margin: 5px 0 0;
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
}
.fit-item:nth-of-type(2) {
  left: 3%;
  top: 3%;
}
.fit-item:nth-of-type(3) {
  right: 3%;
  top: 3%;
}
.fit-item:nth-of-type(4) {
  right: 0;
  top: 42%;
}
.fit-item:nth-of-type(5) {
  right: 16%;
  bottom: 0;
}
.fit-item:nth-of-type(6) {
  left: 8%;
  bottom: 5%;
}

.hero .hero-controls {
  z-index: 20;
  width: 100% !important;
  max-width: 1240px;
  justify-content: flex-end;
  gap: 12px;
  padding: 0 345px 0 24px;
}
.hero .swiper-pagination {
  min-width: 48px;
  text-align: center;
}
.hero .swiper-button-prev,
.hero .swiper-button-next {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative !important;
  inset: auto !important;
  flex: 0 0 52px;
  width: 52px !important;
  height: 52px !important;
  border: 0;
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(33, 0, 39, 0.28);
  transition: background 0.25s ease, transform 0.25s ease;
}
.hero .swiper-button-prev:hover,
.hero .swiper-button-next:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}
.hero .swiper-button-prev:after,
.hero .swiper-button-next:after {
  font-size: 16px;
  color: var(--white);
}

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.inner-hero {
  position: relative;
  padding: 105px 0 85px;
  overflow: hidden;
  background: linear-gradient(
      90deg,
      rgba(33, 0, 39, 0.96),
      rgba(53, 1, 63, 0.78)
    ),
    url("../images/home/banner1.jpg") center 42% / cover no-repeat;
}
.inner-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -130px;
  width: 420px;
  height: 420px;
  border: 80px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
}
.inner-hero .container {
  z-index: 1;
}
.inner-hero h1 {
  max-width: 850px;
  color: var(--white);
  font-size: clamp(3rem, 5.3vw, 4em);
}
.inner-hero h1 em {
  display: block;
  color: #ff5d5d;
  font-style: normal;
}
.breadcrumb {
  margin: 0;
}
.breadcrumb-item,
.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}
.breadcrumb-item.active {
  color: var(--white);
}
.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}

.about-collage {
  position: relative;
  padding: 0 48px 55px 0;
}
.about-collage-main {
  width: 100%;
  height: 570px;
  object-fit: cover;
}
.about-collage-card {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 290px;
  padding: 27px 30px;
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 14px;
  color: var(--white);
  background: var(--primary);
  box-shadow: var(--shadow);
}
.about-collage-card i {
  grid-row: 1 / 3;
  align-self: center;
  font-size: 2.1rem;
}
.about-collage-card strong {
  font-size: 1.05rem;
}
.about-collage-card span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.76rem;
}
.about-quote {
  margin: 28px 0 0;
  padding: 20px 24px;
  border-left: 4px solid var(--primary);
  color: var(--secondary);
  background: var(--off-white);
  font-size: 1.08rem;
  font-weight: 700;
}

.intersection-section {
  position: relative;
  overflow: hidden;
  background: var(--secondary-deep);
}
.intersection-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at center,
      rgba(194, 22, 22, 0.18),
      transparent 32%
    ),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: auto, 60px 60px, 60px 60px;
}
.intersection-section .container {
  position: relative;
}
.intersection-map {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 210px 1fr;
  grid-template-areas: "business core finance" ". tech .";
  gap: 32px;
  align-items: center;
  max-width: 1080px;
  margin: auto;
}
.intersection-map::before,
.intersection-map::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 64%;
  left: 18%;
  top: 115px;
  border-top: 1px dashed rgba(255, 255, 255, 0.28);
}
.intersection-map::after {
  width: 1px;
  height: 145px;
  left: 50%;
  top: 200px;
  border-top: 0;
  border-left: 1px dashed rgba(255, 255, 255, 0.28);
}
.intersection-node {
  position: relative;
  z-index: 1;
  min-height: 230px;
  padding: 32px;
  background: var(--white);
}
.node-business {
  grid-area: business;
}
.node-finance {
  grid-area: finance;
}
.node-tech {
  grid-area: tech;
}
.intersection-node > span,
.principle-card > span {
  position: absolute;
  right: 20px;
  top: 13px;
  color: rgba(53, 1, 63, 0.09);
  font-size: 2.8rem;
  font-weight: 900;
}
.intersection-node > i {
  color: var(--primary);
  font-size: 2.5rem;
}
.intersection-node h3 {
  margin-top: 20px;
  font-size: 1.4rem;
}
.intersection-node p {
  margin: 0;
  font-size: 0.9rem;
}
.intersection-core {
  grid-area: core;
  position: relative;
  z-index: 2;
  width: 190px;
  height: 190px;
  margin: auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background: var(--secondary);
  box-shadow: 0 0 0 16px rgba(194, 22, 22, 0.14);
}
.intersection-core strong {
  margin-top: 12px;
  line-height: 1.2;
}

.belief-section {
  background: var(--off-white);
}
.principle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.principle-card {
  position: relative;
  min-height: 245px;
  padding: 30px;
  border-bottom: 3px solid transparent;
  background: var(--white);
  transition: var(--transition);
}
.principle-card:hover {
  border-bottom-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.principle-card > i {
  color: var(--primary);
  font-size: 2rem;
}
.principle-card h3 {
  margin-top: 22px;
  font-size: 1.2rem;
}
.principle-card p {
  margin: 0;
  font-size: 0.88rem;
}

.founder-section {
  background: var(--secondary);
}
.founder-photo {
  position: relative;
  height: 100%;
  min-height: 650px;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.founder-photo-label {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 16px 24px;
  background: rgb(194 22 22 / 90%);
  display: flex;
  flex-direction: column;
}
.founder-photo-label h6 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.founder-photo-label small {
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.03rem;
}
.founder-content {
  height: 100%;
  padding: 85px 75px;
  color: var(--white);
  background: radial-gradient(
    circle at 100% 0,
    rgba(194, 22, 22, 0.35),
    transparent 34%
  );
}
.founder-content h2 {
  color: var(--white);
  font-size: clamp(2.4rem, 4vw, 4rem);
}
.founder-content h2 em {
  color: #ff5d5d;
  font-style: normal;
}
.founder-content > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}
.founder-points {
  margin-top: 35px;
}
.founder-points > div {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.founder-points i {
  flex: none;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--primary);
  font-size: 1.2rem;
}
.founder-points span {
  display: flex;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
}
.founder-points strong {
  color: var(--white);
  font-size: 1rem;
}

.operating-flow {
  display: grid;
  grid-template-columns: 1fr 64px 1fr 64px 1fr;
  align-items: center;
}
.flow-stage {
  position: relative;
  min-height: 345px;
  padding: 35px;
  border: 1px solid var(--border);
  background: var(--off-white);
}
.flow-stage > i {
  color: var(--primary);
  font-size: 2.7rem;
}
.flow-stage > .brand-mark {
  margin-bottom: 10px;
}
.flow-stage > div > span {
  display: block;
  margin-top: 20px;
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.flow-stage h3 {
  margin-top: 4px;
  font-size: 1.3rem;
}
.flow-stage ul {
  list-style: none;
  padding: 18px 0 0;
  margin: 18px 0 0;
  border-top: 1px solid var(--border);
}
.flow-stage li {
  position: relative;
  padding: 5px 0 5px 18px;
  color: var(--muted);
  font-size: 0.88rem;
}
.flow-stage li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}
.flow-stage-vyan {
  border-color: var(--secondary);
  background: var(--secondary);
  transform: scale(1.04);
  box-shadow: var(--shadow);
}
.flow-stage-vyan h3 {
  color: var(--white);
}
.flow-stage-vyan li {
  color: rgba(255, 255, 255, 0.68);
}
.flow-stage-vyan ul {
  border-color: rgba(255, 255, 255, 0.14);
}
.flow-arrow {
  color: var(--primary);
  text-align: center;
  font-size: 1.7rem;
}
.about-vision {
  padding-bottom: 180px;
}
.about-vision-panel {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  padding: 55px 65px;
  color: var(--white);
  background: var(--secondary-deep);
}
.vision-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.25);
  font-size: 2.6rem;
}
.about-vision-panel h2 {
  max-width: 900px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2rem);
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-hero {
  background-image: linear-gradient(
      90deg,
      rgba(33, 0, 39, 0.96),
      rgba(53, 1, 63, 0.7)
    ),
    url("../images/home/banner2.jpg");
  background-position: center 48%;
}
.contact-hero h1 {
  max-width: 980px;
}

.contact-channels {
  position: relative;
  z-index: 5;
  margin-top: -34px;
}
.channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  box-shadow: var(--shadow);
}
.channel-card {
  position: relative;
  min-height: 160px;
  padding: 32px 28px;
  border-right: 1px solid var(--border);
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  overflow: hidden;
  background: var(--white);
}
.channel-card:last-child {
  border-right: 0;
}
.channel-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.channel-card:hover {
  background: var(--off-white);
}
.channel-card:hover::after {
  transform: scaleX(1);
}
.channel-number {
  position: absolute;
  right: 16px;
  top: 5px;
  color: rgba(53, 1, 63, 0.06);
  font-size: 3.2rem;
  font-weight: 900;
}
.channel-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--primary);
  font-size: 1.4rem;
}
.channel-card small {
  color: var(--primary);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.channel-card h2 {
  margin: 2px 0 4px;
  font-size: 1.18rem;
}
.channel-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}
.channel-arrow {
  position: absolute;
  right: 22px;
  bottom: 18px;
  color: var(--primary);
}

.conversation-intro {
  height: 100%;
  padding: 60px 48px;
  color: var(--white);
  background: var(--secondary);
  box-shadow: var(--shadow);
}
.conversation-intro h2 {
  color: var(--white);
  font-size: clamp(2.3rem, 3.8vw, 3.8rem);
}
.conversation-intro h2 em {
  color: #ff6262;
  font-style: normal;
}
.conversation-intro > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}
.privacy-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 30px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
}
.privacy-note i {
  color: #ff6262;
  font-size: 1.2rem;
}
.privacy-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
}

.contact-form-shell {
  height: 100%;
  padding: 52px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 18px 55px rgba(53, 1, 63, 0.08);
}
.form-heading {
  margin-bottom: 32px;
  padding-bottom: 23px;
  border-bottom: 1px solid var(--border);
}
.form-heading > span {
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.form-heading h2 {
  margin: 4px 0 8px;
  font-size: 2rem;
}
.form-heading p {
  margin: 0;
  font-size: 0.9rem;
}
.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 800;
}
.contact-form label span {
  color: var(--primary);
}
.input-wrap {
  position: relative;
}
.input-wrap > i {
  position: absolute;
  z-index: 2;
  left: 17px;
  top: 50%;
  color: var(--primary);
  transform: translateY(-50%);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0;
  color: var(--text);
  background: var(--off-white);
  font: 500 0.88rem var(--font);
  transition: border-color 0.25s ease, box-shadow 0.25s ease,
    background 0.25s ease;
}
.contact-form input,
.contact-form select {
  height: 54px;
  padding: 0 42px 0 46px;
}
.contact-form textarea {
  padding: 16px;
  resize: vertical;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(194, 22, 22, 0.09);
}
.select-wrap::after {
  content: "\F282";
  position: absolute;
  right: 17px;
  top: 50%;
  color: var(--secondary);
  font-family: "bootstrap-icons";
  transform: translateY(-50%);
  pointer-events: none;
}
.contact-form select {
  appearance: none;
}

.location-section {
  overflow: hidden;
  background: var(--secondary-deep);
}
.location-layout {
  display: grid;
  grid-template-columns: 58% 42%;
  min-height: 570px;
}
.map-wrap {
  min-height: 570px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 570px;
  border: 0;
  filter: grayscale(1) contrast(1.05);
}
.location-panel {
  padding: 75px 70px;
  color: var(--white);
  background: radial-gradient(
      circle at 100% 0,
      rgba(194, 22, 22, 0.35),
      transparent 32%
    ),
    var(--secondary);
}
.location-panel h2 {
  color: var(--white);
  font-size: clamp(2.3rem, 4vw, 4rem);
}
.location-panel h2 em {
  color: #ff6262;
  font-style: normal;
}
.location-panel > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}
.address-block {
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 35px 0;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.address-block > i {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--primary);
  font-size: 1.5rem;
}
.address-block div {
  display: flex;
  flex-direction: column;
}
.address-block small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.address-block strong {
  margin-top: 4px;
  color: var(--white);
  line-height: 1.4;
}

.contact-page .site-footer {
  padding-top: 90px;
}

/* ================================================================
   PRODUCTS PAGE
   ================================================================ */
.products-hero {
  background-image: linear-gradient(
      90deg,
      rgba(33, 0, 39, 0.96),
      rgba(53, 1, 63, 0.72)
    ),
    url("../images/products/products-hero.jpg");
  background-position: center;
}
.products-hero h1 {
  max-width: 990px;
}

.product-launchboard {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(53, 1, 63, 0.12);
  background: var(--white);
  box-shadow: 0 28px 65px rgba(53, 1, 63, 0.14);
}
.product-launchboard::after {
  content: "";
  position: absolute;
  right: -75px;
  bottom: -95px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(194, 22, 22, 0.06);
}
.launchboard-topbar {
  min-height: 62px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  color: var(--white);
  background: var(--secondary);
}
.launchboard-topbar > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.launchboard-topbar strong {
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff6262;
  box-shadow: 0 0 0 5px rgba(255, 98, 98, 0.15);
}
.launch-status {
  padding: 6px 10px;
  color: #ffdede;
  background: rgba(255, 255, 255, 0.09);
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.launch-status i {
  margin-right: 4px;
}
.launchboard-body {
  position: relative;
  z-index: 1;
  padding: 28px;
}
.portfolio-label {
  margin-bottom: 22px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.portfolio-label > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--primary);
  font-size: 1.25rem;
  font-weight: 900;
}
.portfolio-label strong,
.portfolio-label small {
  display: block;
}
.portfolio-label strong {
  color: var(--secondary);
  font-size: 1rem;
}
.portfolio-label small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.7rem;
}
.product-module-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.product-module-grid article {
  position: relative;
  min-height: 92px;
  padding: 18px 38px 18px 58px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  background: var(--off-white);
  transition: var(--transition);
}
.product-module-grid article:hover {
  border-color: rgba(194, 22, 22, 0.35);
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(53, 1, 63, 0.08);
}
.product-module-grid article > i {
  position: absolute;
  left: 17px;
  color: var(--primary);
  font-size: 1.55rem;
}
.product-module-grid article strong,
.product-module-grid article small {
  display: block;
}
.product-module-grid article strong {
  color: var(--secondary);
  font-size: 0.78rem;
}
.product-module-grid article small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.62rem;
}
.product-module-grid article > span {
  position: absolute;
  right: 11px;
  top: 9px;
  color: rgba(53, 1, 63, 0.18);
  font-size: 0.67rem;
  font-weight: 900;
}
.launch-pipeline {
  margin-top: 25px;
  padding: 22px 18px 14px;
  background: rgba(53, 1, 63, 0.035);
}
.pipeline-progress {
  height: 3px;
  margin: 0 12.5% -10px;
  background: rgba(53, 1, 63, 0.13);
}
.pipeline-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.launch-pipeline ol {
  position: relative;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}
.launch-pipeline li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: var(--secondary);
  font-size: 0.63rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.launch-pipeline li i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--secondary);
  font-size: 0.9rem;
  box-shadow: 0 0 0 5px var(--white);
}
.launch-pipeline li:last-child i {
  background: var(--primary);
}

.product-showcase {
  position: relative;
  overflow: hidden;
  background: var(--secondary-deep);
}
.product-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 10% 10%,
      rgba(194, 22, 22, 0.2),
      transparent 24%
    ),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: auto, 60px 60px, 60px 60px;
}
.product-showcase .container {
  position: relative;
}
.product-story {
  display: grid;
  grid-template-columns: 46% 54%;
  min-height: 660px;
  margin-bottom: 42px;
  background: var(--white);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.2);
}
.product-story:last-child {
  margin-bottom: 0;
}
.product-story-reverse .product-visual {
  order: 2;
}
.product-story-reverse .product-content {
  order: 1;
}
.product-visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #e9e5ea;
}
.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-story:hover .product-visual img {
  transform: scale(1.035);
}
.product-index {
  position: absolute;
  right: 22px;
  top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 4.6rem;
  font-weight: 900;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.product-sector {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 16px 24px;
  display: flex;
  gap: 9px;
  align-items: center;
  color: var(--white);
  background: var(--primary);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-content {
  padding: 48px 50px;
}
.product-content h3 {
  max-width: 650px;
  font-size: clamp(2rem, 3vw, 3.2rem);
}
.product-content > p:not(.eyebrow) {
  font-size: 0.92rem;
}
.product-info-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  margin-top: 28px;
  padding-top: 25px;
  border-top: 1px solid var(--border);
}
.product-info-grid h4 {
  display: flex;
  gap: 9px;
  align-items: center;
  color: var(--secondary);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}
.product-info-grid h4 i {
  color: var(--primary);
}
.product-info-grid ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px 18px;
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.product-info-grid li {
  position: relative;
  padding-left: 14px;
  color: var(--muted);
  font-size: 0.72rem;
}
.product-info-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
}
.fit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}
.fit-tags span {
  padding: 6px 9px;
  color: var(--secondary);
  background: var(--off-white);
  font-size: 0.68rem;
  font-weight: 800;
}
.benefit-strip {
  margin-top: 28px;
  padding: 18px;
  display: flex;
  gap: 15px;
  align-items: center;
  color: var(--secondary);
  background: rgba(194, 22, 22, 0.06);
}
.benefit-strip > i {
  flex: none;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--primary);
}
.benefit-strip span {
  color: var(--muted);
  font-size: 0.73rem;
}
.benefit-strip strong {
  display: block;
  color: var(--secondary);
  font-size: 0.8rem;
}

.implementation-section {
  background: var(--off-white);
}
.implementation-path {
  position: relative;
}
.implementation-path::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 45px;
  bottom: 45px;
  border-left: 2px dashed rgba(53, 1, 63, 0.18);
}
.implementation-path article {
  position: relative;
  min-height: 91px;
  margin-bottom: 13px;
  padding: 18px 24px 18px 104px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  background: var(--white);
  transition: var(--transition);
}
.implementation-path article:last-child {
  margin-bottom: 0;
}
.implementation-path article:hover {
  transform: translateX(6px);
  border-color: rgba(194, 22, 22, 0.35);
  box-shadow: 0 10px 28px rgba(53, 1, 63, 0.07);
}
.implementation-path article > span {
  position: absolute;
  z-index: 2;
  left: 16px;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--primary);
  font-size: 0.66rem;
  font-weight: 900;
}
.implementation-path article > i {
  position: absolute;
  left: 60px;
  color: var(--primary);
  font-size: 1.5rem;
}
.implementation-path h3 {
  margin: 0 0 2px;
  font-size: 1rem;
}
.implementation-path p {
  margin: 0;
  font-size: 0.78rem;
}

.product-why {
  padding: 0 0 var(--section-space);
  background: var(--off-white);
}
.why-panel {
  display: grid;
  grid-template-columns: 42% 58%;
  overflow: hidden;
  background: var(--secondary);
  box-shadow: var(--shadow);
}
.why-heading {
  padding: 58px;
  color: var(--white);
  background: radial-gradient(
    circle at 0 100%,
    rgba(194, 22, 22, 0.38),
    transparent 35%
  );
}
.why-heading h2 {
  color: var(--white);
  font-size: clamp(2.1rem, 3.5vw, 3.6rem);
}
.why-heading h2 em {
  color: #ff6262;
  font-style: normal;
}
.why-heading > p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.why-grid article {
  min-height: 175px;
  padding: 28px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  transition: var(--transition);
}
.why-grid article:hover {
  background: var(--primary);
}
.why-grid i {
  margin-bottom: 14px;
  color: #ff6262;
  font-size: 2rem;
}
.why-grid article:hover i {
  color: var(--white);
}
.why-grid span {
  font-size: 0.78rem;
  font-weight: 800;
}

.product-demo {
  padding-top: 0;
}
.demo-shell {
  display: grid;
  grid-template-columns: 105px 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 45px 50px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 16px 45px rgba(53, 1, 63, 0.08);
}
.demo-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--primary);
  font-size: 2.5rem;
  box-shadow: 0 0 0 12px rgba(194, 22, 22, 0.08);
}
.demo-shell h2 {
  margin-bottom: 8px;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}
.demo-shell p:not(.eyebrow) {
  margin: 0;
}
.products-page .site-footer {
  padding-top: 90px;
}
