* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: "Inter", sans-serif;
  font-size: 100%;
}

body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
.preit-question {
  font-family: "Sora", sans-serif;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

/* Scoped variables and base styles */
.oqsha-wrap {
  --bg0: #030817;
  --bg1: #0b1324;
  --card: rgba(10, 18, 35, 0.72);
  --stroke: rgba(255, 255, 255, 0.08);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.7);
  --muted2: rgba(255, 255, 255, 0.45);
  --accent: #1160fb;
  --accent2: #4180fc;
  --green: #23c55e;
  --orange: #fb6a2a;

  background:
    radial-gradient(
      900px 500px at 18% 22%,
      rgba(17, 96, 251, 0.15),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 78% 12%,
      rgba(255, 255, 255, 0.04),
      transparent 60%
    ),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  color: var(--text);
  padding: clamp(12px, 3vw, 24px);
  font-family: "Inter", sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

.oqsha-wrap.solutions-page-active,
.oqsha-wrap.industries-page-active,
.oqsha-wrap.why-oqsha-page-active,
.oqsha-wrap.cs-lcpmo-page-active {
  background: none;
}

.oqsha-wrap.resources-about-oqsha-page-active {
  background: rgba(248, 250, 252, 1);
}
.oqsha-wrap.case-study-page-active {
  background: linear-gradient(
    135deg,
    rgba(219, 234, 254, 0.4) 0%,
    rgba(219, 234, 254, 0) 100%
  );
}

.oqsha-wrap.industries-page-active,
.oqsha-wrap.why-oqsha-page-active,
.oqsha-wrap.resources-about-oqsha-page-active,
.oqsha-wrap.case-study-page-active,
.oqsha-wrap.cs-lcpmo-page-active {
  min-height: auto;
}

/* Layout Containers */
.oqsha-header {
  max-width: 1360px;
  margin: 0 auto clamp(16px, 3vw, 24px);
  position: relative;
  z-index: 100;
  font-family: "Inter", sans-serif;
}

/* NAV ITEM WRAPPER */
.oqsha-nav-item {
  position: relative;
}

/* NAV LINK */
.oqsha-navlink {
  display: inline-block;
  padding: 20px 16px;
  text-decoration: none;
  color: #1e2a3b;
  font-weight: 500;
}

/* MEGA MENU PANEL */
.oqsha-mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  /* background: #E6F0FF; */
  background: #fff;
  box-shadow: 0 8px 24px rgb(5 29 75 / 35%);
  padding: 40px 60px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

/* SHOW ON HOVER */
@media (min-width: 1025px) {
  .oqsha-nav-item:hover .oqsha-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* INNER CONTAINER */
.oqsha-mega-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  gap: 30px;
  justify-content: end;
}

/* COLUMNS */
.oqsha-mega-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 360px;
}

@media (min-width: 1024px) {
  .width-500 {
    width: 500px;
  }
}

.oqsha-mega-column h4 {
  font-size: 16px;
  font-weight: 600;
  color: rgb(88, 141, 244);
}

.oqsha-mega-column a {
  text-decoration: none;
  color: rgba(5, 29, 75, 1);
  font-size: 16px;
  font-weight: 500;
  transition: color 0.2s ease;
  padding: 4px 0;
  margin-left: 20px;
}

.oqsha-mega-column a:hover {
  background-color: rgba(204, 242, 255, 1);
  font-weight: 700;
}

.oqsha-header.solutions-page-active,
.oqsha-header.industries-page-active,
.oqsha-header.why-oqsha-page-active,
.oqsha-header.resources-about-oqsha-page-active,
.oqsha-header.case-study-page-active,
.oqsha-header.cs-lcpmo-page-active {
  max-width: 1400px;
}

.oqsha-toprow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 8px;
  padding-right: 8px;
  font-weight: 400;
  font-size: 12px;
}

.oqsha-logo-mark {
  width: 200px;
  height: auto;
}

/* Navigation */
.oqsha-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
  gap: 16px;
  font-weight: 700;
  font-size: 16px;
}

.oqsha-navlinks {
  display: flex;
  gap: 32px;
  align-items: center;
}

.oqsha-navlink {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.oqsha-navlink:hover {
  color: #fff;
}

.oqsha-header.solutions-page-active .oqsha-navlink,
.oqsha-header.industries-page-active .oqsha-navlink,
.oqsha-header.why-oqsha-page-active .oqsha-navlink,
.oqsha-header.resources-about-oqsha-page-active .oqsha-navlink,
.oqsha-header.case-study-page-active .oqsha-navlink,
.oqsha-header.cs-lcpmo-page-active .oqsha-navlink {
  color: rgba(2, 10, 25, 1);
}

/* Nav CTA Button */
.oqsha-nav .oqsha-btn {
  padding: 10px 18px;
  font-size: 13px;
  border-radius: 10px;
  white-space: nowrap;
}

/* Hamburger Menu */
.oqsha-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
}

.oqsha-header.solutions-page-active .oqsha-menu-toggle,
.oqsha-header.industries-page-active .oqsha-menu-toggle,
.oqsha-header.why-oqsha-page-active .oqsha-menu-toggle,
.oqsha-header.resources-about-oqsha-page-active .oqsha-menu-toggle,
.oqsha-header.case-study-page-active .oqsha-menu-toggle,
.oqsha-header.cs-lcpmo-page-active .oqsha-menu-toggle {
  color: rgba(5, 29, 75, 1);
}

.oqsha-nav-child {
  display: flex;
  justify-content: space-between;
  width: 90%;
}

/* Hero Card */
.oqsha-hero-card {
  max-width: 1360px;
  margin: 0 auto;
  border-radius: 32px;
  border: 1px solid var(--stroke);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.01)
  );
  padding: clamp(24px, 5vw, 48px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.oqsha-hero-card.solutions-page-active,
.oqsha-hero-card.industries-page-active,
.oqsha-hero-card.why-oqsha-page-active,
.oqsha-hero-card.resources-about-oqsha-page-active,
.oqsha-hero-card.case-study-page-active,
.oqsha-hero-card.cs-lcpmo-page-active {
  max-width: 1400px;
  padding: clamp(24px, 5vw, 48px) 8px;
  background: none;
  border: none;
  box-shadow: none;
  overflow: visible;
}

.oqsha-hero-card.industries-page-active,
.oqsha-wrap.industries-page-active {
  padding-bottom: 0;
}

@media (min-width: 1025px) {
  .oqsha-hero-card.why-oqsha-page-active,
  .oqsha-wrap.why-oqsha-page-active {
    padding-bottom: 0;
  }
}

.oqsha-hero-card.indus-manufacturing-page-active,
.oqsha-wrap.indus-manufacturing-page-active {
  padding: clamp(24px, 5vw, 48px) 8px;
}

.oqsha-hero-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.oqsha-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: center;
  position: relative;
  z-index: 2;
  font-family: "Inter", sans-serif;
}

.oqsha-wrap.industries-page-active .oqsha-hero-grid,
.oqsha-wrap.why-oqsha-page-active .oqsha-hero-grid,
.oqsha-wrap.resources-about-oqsha-page-active .oqsha-hero-grid {
  grid-template-columns: 1.2fr 0.8fr;
}
.oqsha-wrap.case-study-page-active .oqsha-hero-grid {
  grid-template-columns: 1fr 0.8fr;
  gap: 40px;
}
.oqsha-wrap.cs-lcpmo-page-active .oqsha-hero-grid {
  grid-template-columns: 1fr 1fr;
}

.oqsha-hero-badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(30, 100, 247, 1);
  background-color: rgba(239, 246, 255, 1);
  border-radius: 999px;
  margin-bottom: 8px;
}

.oqsha-h1 {
  margin: 0 0 20px;
  line-height: 1.25;
  font-family: "Sora", sans-serif;
  font-size: clamp(40px, 4vw, 72px);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.oqsha-hero-card.solutions-page-active .oqsha-h1,
.oqsha-hero-card.industries-page-active .oqsha-h1,
.oqsha-hero-card.why-oqsha-page-active .oqsha-h1,
.oqsha-hero-card.resources-about-oqsha-page-active .oqsha-h1,
.oqsha-hero-card.case-study-page-active .oqsha-h1,
.oqsha-hero-card.cs-lcpmo-page-active .oqsha-h1 {
  font-size: clamp(40px, 4vw, 64px);
  color: rgba(11, 18, 32, 1);
}

.oqsha-hero-card.case-study-page-active .oqsha-h1,
.oqsha-hero-card.cs-lcpmo-page-active .oqsha-h1 {
  font-size: clamp(40px, 4vw, 54px);
}

.oqsha-accent {
  color: var(--accent2);
  background: linear-gradient(to right, #4180fc, #88b0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.oqsha-hero-card.solutions-page-active .oqsha-accent,
.oqsha-hero-card.industries-page-active .oqsha-accent,
.oqsha-hero-card.why-oqsha-page-active .oqsha-accent,
.oqsha-hero-card.resources-about-oqsha-page-active .oqsha-accent,
.oqsha-hero-card.case-study-page-active .oqsha-accent {
  color: rgba(30, 100, 247, 1);
  -webkit-text-fill-color: unset;
}

.oqsha-sub {
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 24px;
  line-height: 1.6;
  max-width: 632px;
}

.oqsha-hero-card.solutions-page-active .oqsha-sub,
.oqsha-hero-card.industries-page-active .oqsha-sub,
.oqsha-hero-card.why-oqsha-page-active .oqsha-sub,
.oqsha-hero-card.resources-about-oqsha-page-active .oqsha-sub,
.oqsha-hero-card.case-study-page-active .oqsha-sub,
.oqsha-hero-card.cs-lcpmo-page-active .oqsha-sub {
  color: rgba(82, 98, 122, 1);
}

.oqsha-hero-card.industries-page-active .oqsha-sub,
.oqsha-hero-card.why-oqsha-page-active .oqsha-sub {
  max-width: 690px;
  font-size: 20px;
}

.oqsha-hero-card.resources-about-oqsha-page-active .oqsha-sub,
.oqsha-hero-card.cs-lcpmo-page-active .oqsha-sub {
  max-width: 570px;
  font-size: 20px;
}

.oqsha-sub .oqsha-accent {
  background: rgba(255, 193, 7, 1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Background Image */
.oqsha-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.oqsha-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.oqsha-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    35.99% 58.14% at 67.41% 40.66%,
    rgba(15, 23, 42, 0) 0%,
    #0f172a 100%
  );
}

/* Trust Badge */
.oqsha-trust {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.oqsha-trust-icons span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -6px;
  border: 1px solid rgba(10, 47, 84, 1);
}

.oqsha-trust-icons span:first-child {
  margin-left: 0;
}

.oqsha-trust-icons img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.oqsha-trust-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}

/* Buttons */
.oqsha-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.oqsha-btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 30px rgba(17, 96, 251, 0.3);
}

.oqsha-btn--primary:hover {
  background: var(--accent2);
  transform: translateY(-2px);
}

.oqsha-btn--ghost {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.oqsha-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.oqsha-hero-card.indus-manufacturing-page-active .oqsha-btn--ghost,
.oqsha-hero-card.why-oqsha-page-active .oqsha-btn--ghost {
  border: 1px solid rgba(0, 4, 13, 1);
  color: rgba(0, 4, 13, 1);
}

.oqsha-hero-card.resources-about-oqsha-page-active .oqsha-btn--ghost,
.oqsha-hero-card.case-study-page-active .oqsha-btn--ghost,
.oqsha-hero-card.cs-lcpmo-page-active .oqsha-btn--ghost {
  background: rgba(255, 255, 255, 1);
  border: 1px solid rgba(203, 213, 225, 1);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  color: rgba(51, 65, 85, 1);
}

.oqsha-hero-card.case-study-page-active .oqsha-btn--ghost,
.oqsha-hero-card.cs-lcpmo-page-active .oqsha-btn--ghost {
  font-weight: 700;
}

.oqsha-hero-card.indus-manufacturing-page-active .oqsha-btn--ghost:hover,
.oqsha-hero-card.why-oqsha-page-active .oqsha-btn--ghost:hover,
.oqsha-hero-card.resources-about-oqsha-page-active .oqsha-btn--ghost:hover,
.oqsha-hero-card.case-study-page-active .oqsha-btn--ghost:hover,
.oqsha-hero-card.cs-lcpmo-page-active .oqsha-btn--ghost:hover {
  background-color: rgba(0 0 0 / 0.07);
  transform: translateY(-2px);
}

.oqsha-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.watch-play-icon {
  width: 20px;
  height: 20px;
}

/* Features */
.oqsha-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 650px;
}

.oqsha-hero-card.solutions-page-active .oqsha-features {
  grid-column: 1 / -1;
  max-width: none;
  order: 2;
}

.oqsha-hero-card.indus-manufacturing-page-active .oqsha-features,
.oqsha-hero-card.why-oqsha-page-active .oqsha-features {
  max-width: none;
}

.oqsha-hero-card.why-oqsha-page-active .oqsha-features {
  margin-bottom: 20px;
}

.oqsha-hero-card.resources-about-oqsha-page-active .oqsha-features {
  display: flex;
  gap: 24px;
}

.oqsha-hero-card.cs-lcpmo-page-active .oqsha-features {
  display: flex;
  max-width: 500px;
  justify-content: space-between;
  gap: 0;
  margin-bottom: 40px;
}
.oqsha-hero-card.cs-lfp-page-active .oqsha-features {
  max-width: 440px;
}
.oqsha-hero-card.cs-acmo-page-active .oqsha-features {
  max-width: 380px;
}

.oqsha-feature {
  padding: 20px;
  border-radius: 12px;
  transition: border-color 0.3s;
  background: rgba(255 255 255 / 0.03);
  border: 1px solid var(--color-white-5, rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.oqsha-feature:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.oqsha-hero-card.solutions-page-active .oqsha-feature {
  background-color: rgba(5, 29, 75, 1);
}

.oqsha-hero-card.solutions-high-risk-active .oqsha-feature {
  background-color: white;
}

.oqsha-hero-card.indus-manufacturing-page-active .oqsha-feature,
.oqsha-hero-card.why-oqsha-page-active .oqsha-feature,
.oqsha-hero-card.resources-about-oqsha-page-active .oqsha-feature,
.oqsha-hero-card.cs-lcpmo-page-active .oqsha-feature {
  padding: 0;
}

.oqsha-feature-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.oqsha-hero-card.solutions-page-active .oqsha-feature-header {
  align-items: center;
}

.oqsha-hero-card.resources-about-oqsha-page-active .oqsha-feature-header {
  gap: 8px;
}
.oqsha-hero-card.cs-lcpmo-page-active .oqsha-feature-header {
  gap: 4px;
  align-items: center;
}

.oqsha-feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.oqsha-hero-card.solutions-high-risk-active .oqsha-feature-icon,
.oqsha-hero-card.indus-manufacturing-page-active .oqsha-feature-icon,
.oqsha-hero-card.why-oqsha-page-active .oqsha-feature-icon {
  font-weight: 700;
  min-width: 58px;
  height: 48px;
}

.feature-icon-1 {
  background: rgba(17, 96, 251, 0.2);
}
.oqsha-hero-card.solutions-high-risk-active .feature-icon-1,
.oqsha-hero-card.indus-manufacturing-page-active .feature-icon-1,
.oqsha-hero-card.why-oqsha-page-active .feature-icon-1 {
  background: rgba(207, 223, 254, 1);
  color: rgba(17, 96, 251, 1);
}

.feature-icon-2 {
  background: rgba(25, 169, 22, 0.2);
  color: rgba(25, 169, 22, 1);
}
.oqsha-hero-card.solutions-high-risk-active .feature-icon-2,
.oqsha-hero-card.indus-manufacturing-page-active .feature-icon-2,
.oqsha-hero-card.why-oqsha-page-active .feature-icon-2 {
  background: rgba(209, 238, 208, 1);
}

.feature-icon-3 {
  background: rgba(255, 81, 29, 0.2);
  color: rgba(255, 81, 29, 1);
}
.oqsha-hero-card.solutions-high-risk-active .feature-icon-3,
.oqsha-hero-card.indus-manufacturing-page-active .feature-icon-3,
.oqsha-hero-card.why-oqsha-page-active .feature-icon-3 {
  background:
    linear-gradient(0deg, #ffb9a5, #ffb9a5),
    linear-gradient(0deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3));
}

.oqsha-hero-card.resources-about-oqsha-page-active .oqsha-feature-icon {
  min-width: 20px;
  width: 20px;
  height: auto;
}
.oqsha-hero-card.cs-lcpmo-page-active .oqsha-feature-icon {
  min-width: 16px;
  width: 16px;
  height: auto;
}

.oqsha-feature-texts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.oqsha-hero-card.solutions-page-active .oqsha-feature-texts {
  flex-direction: row;
}

.oqsha-hero-card.solutions-high-risk-active .oqsha-feature-texts {
  flex-direction: column;
}

.oqsha-feature-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
}

.oqsha-hero-card.solutions-high-risk-active .oqsha-feature-title,
.oqsha-hero-card.indus-manufacturing-page-active .oqsha-feature-title,
.oqsha-hero-card.why-oqsha-page-active .oqsha-feature-title {
  color: rgba(11, 18, 32, 1);
}

.oqsha-hero-card.resources-about-oqsha-page-active .oqsha-feature-title {
  color: rgba(51, 65, 85, 1);
}

.oqsha-hero-card.cs-lcpmo-page-active .oqsha-feature-title {
  font-size: 14px;
  color: rgba(100, 116, 139, 1);
}

.oqsha-feature-sub {
  font-size: 14px;
  color: var(--muted2);
  line-height: 1.4;
}

.oqsha-hero-card.solutions-page-active .oqsha-feature-sub {
  color: rgba(207, 223, 254, 1);
}

.oqsha-hero-card.solutions-high-risk-active .oqsha-feature-sub,
.oqsha-hero-card.indus-manufacturing-page-active .oqsha-feature-sub,
.oqsha-hero-card.why-oqsha-page-active .oqsha-feature-sub {
  color: rgba(82, 98, 122, 1);
}

/* Media Area */
.oqsha-hero-tablet-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: none;
}

.oqsha-hero-card.solutions-page-active .oqsha-hero-tablet-img {
  display: block;
  border-radius: 20px;
  background: linear-gradient(
    45deg,
    rgba(30, 100, 247, 0.1) 0%,
    rgba(30, 100, 247, 0) 100%
  );
}

.oqsha-hero-card.industries-page-active .oqsha-hero-tablet-img,
.oqsha-hero-card.why-oqsha-page-active .oqsha-hero-tablet-img {
  display: block;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  object-position: right;
}

.oqsha-hero-card.why-oqsha-page-active .oqsha-hero-tablet-img {
  object-position: center;
}

@media (min-width: 576px) {
  .oqsha-hero-card.indus-manufacturing-page-active .oqsha-hero-tablet-img {
    border-radius: 30px;
  }
}

.oqsha-hero-card.solutions-page-active .oqsha-media-frame {
  position: relative;
  border-radius: 20px;
  aspect-ratio: 10/5;
  border: 4px solid rgba(255, 255, 255, 1);
  box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.oqsha-hero-card.industries-page-active .oqsha-media,
.oqsha-hero-card.why-oqsha-page-active .oqsha-media {
  height: 100%;
}

.oqsha-hero-card.industries-page-active .oqsha-media-frame,
.oqsha-hero-card.why-oqsha-page-active .oqsha-media-frame {
  aspect-ratio: 4/5;
  height: 100%;
  position: relative;
}

.oqsha-hero-card.indus-manufacturing-page-active .oqsha-media-frame {
  aspect-ratio: 4/5;
}

@media (max-width: 1024px) {
  .oqsha-hero-tablet-img-parent {
    overflow: hidden;
    border-radius: 24px;
  }
}

.oqsha-hero-card.industries-page-active .oqsha-hero-tablet-img-parent,
.oqsha-hero-card.why-oqsha-page-active .oqsha-hero-tablet-img-parent {
  height: 100%;
}

.oqsha-hero-img,
.oqsha-hero-card.solutions-page-active .oqsha-hero-tablet-img {
  transition: transform 0.6s ease-in-out;
}

.oqsha-hero-bg.is-zoom .oqsha-hero-img {
  transform: scale(1.08);
}
.oqsha-hero-card.solutions-page-active
  .oqsha-hero-tablet-img-parent.is-zoom
  .oqsha-hero-tablet-img {
  transform: scale(1.02);
}

/* Stat Chip */
.oqsha-chip {
  position: absolute;
  bottom: 24px;
  right: 24px;
  padding: 16px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  background: rgba(255 255 255 / 0.03);
  border: 1px solid var(--color-white-5, rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.oqsha-hero-card.solutions-page-active .oqsha-chip {
  bottom: -30px;
  right: -30px;
  box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
  background: rgba(0, 0, 0, 0.5);
  overflow: visible !important;
}

.oqsha-chip-icon {
  width: 40px;
  height: 40px;
  background: rgba(52, 211, 153, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(25, 169, 22, 1);
}

.oqsha-hero-card.solutions-page-active .oqsha-chip-icon {
  background: rgba(52, 211, 153, 1);
  color: rgba(255, 255, 255, 1);
}

.oqsha-chip-value {
  font-size: 18px;
  font-weight: 800;
  display: block;
  line-height: 1.2;
}

.oqsha-chip-label {
  font-size: 14px;
  color: var(--muted2);
  white-space: nowrap;
  line-height: 1.2;
}

.oqsha-hero-card.solutions-page-active .oqsha-chip-label {
  color: rgba(255, 255, 255, 1);
}

.oqsha-hero-card.solutions-page-active .audit-score-card {
  position: absolute;
  top: 40px;
  left: -24px;
  width: 100px;
  height: auto;
  background: rgba(255, 255, 255, 1);
  border: 1px solid rgba(230, 238, 248, 1);
  border-radius: 12px;
  box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.oqsha-hero-card.solutions-page-active .audit-score-label {
  color: rgba(11, 18, 32, 1);
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
}

.oqsha-hero-card.solutions-page-active .audit-score-value {
  color: rgba(30, 100, 247, 1);
  font-size: 18px;
  font-weight: 800;
  line-height: 28px;
}

/* Face Hotspot */
.oqsha-zoom-hotspot {
  left: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  z-index: 10;
}

.oqsha-hero-card.solutions-page-active .oqsha-zoom-hotspot {
  left: auto;
  width: 100%;
}

/* Mobile Responsive */
@media (max-width: 1100px) and (min-width: 1025px) {
  .oqsha-hero-card.industries-page-active .oqsha-media-frame,
  .oqsha-hero-card.why-oqsha-page-active .oqsha-media-frame {
    aspect-ratio: 4/6;
  }
}

@media (max-width: 1275px) {
  .oqsha-btn {
    padding: 14px 26px;
    font-size: 16px;
  }
  .oqsha-nav {
    gap: 14px;
  }
  .oqsha-nav-child {
    width: 88%;
  }
  .usp-bg-img {
    object-fit: fill !important;
  }

  .oqsha-mega-container {
    gap: 0;
  }
  .oqsha-mega-column {
    min-width: 300px;
  }
  .oqsha-mega-column a {
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
  .oqsha-hero-card.industries-page-active .oqsha-h1,
  .oqsha-hero-card.why-oqsha-page-active .oqsha-h1,
  .oqsha-hero-card.resources-about-oqsha-page-active .oqsha-h1,
  .oqsha-hero-card.case-study-page-active .oqsha-h1,
  .oqsha-hero-card.cs-lcpmo-page-active .oqsha-h1 {
    font-size: clamp(40px, 6vw, 64px);
  }
  .oqsha-hero-card.industries-page-active .oqsha-sub,
  .oqsha-hero-card.why-oqsha-page-active .oqsha-sub,
  .oqsha-hero-card.resources-about-oqsha-page-active .oqsha-sub,
  .oqsha-hero-card.case-study-page-active .oqsha-sub,
  .oqsha-hero-card.cs-lcpmo-page-active .oqsha-sub {
    font-size: 24px;
  }
  .oqsha-hero-grid,
  .oqsha-hero-card.industries-page-active .oqsha-hero-grid,
  .oqsha-hero-card.why-oqsha-page-active .oqsha-hero-grid,
  .oqsha-hero-card.resources-about-oqsha-page-active .oqsha-hero-grid,
  .oqsha-hero-card.case-study-page-active .oqsha-hero-grid,
  .oqsha-hero-card.cs-lcpmo-page-active .oqsha-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .oqsha-copy {
    order: 2;
    text-align: center;
  }
  .oqsha-hero-card.resources-about-oqsha-page-active .oqsha-copy,
  .oqsha-hero-card.case-study-page-active .oqsha-copy,
  .oqsha-hero-card.cs-lcpmo-page-active .oqsha-copy {
    order: initial;
  }

  .oqsha-sub {
    margin-inline: auto;
  }
  .oqsha-cta {
    justify-content: center;
  }
  .oqsha-media {
    order: 1;
  }
  .oqsha-btn {
    font-size: 15px;
  }
  .oqsha-nav {
    gap: 12px;
  }
  .oqsha-hero-tablet-img {
    display: block;
  }
  .oqsha-media-frame {
    position: relative;
    border-radius: 24px;
    aspect-ratio: 9/5;
    border: 1px solid var(--stroke);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  }
  .oqsha-hero-card.industries-page-active .oqsha-media-frame,
  .oqsha-hero-card.why-oqsha-page-active .oqsha-media-frame {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .oqsha-hero-bg {
    display: none;
  }
  .oqsha-navlinks {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgb(4, 22, 57);
    box-shadow: 0 8px 24px rgb(147 184 255 / 20%);
    flex-direction: column;
    padding: 24px;
    gap: 0px;
    border: 1px solid var(--stroke);
    border-radius: 16px;
    margin-top: 8px;
    z-index: 50;
  }
  .oqsha-header.solutions-page-active .oqsha-navlinks,
  .oqsha-header.industries-page-active .oqsha-navlinks,
  .oqsha-header.why-oqsha-page-active .oqsha-navlinks,
  .oqsha-header.resources-about-oqsha-page-active .oqsha-navlinks,
  .oqsha-header.case-study-page-active .oqsha-navlinks,
  .oqsha-header.cs-lcpmo-page-active .oqsha-navlinks {
    /* background: #E6F0FF; */
    background: #fff;
    box-shadow: 0 8px 24px rgb(5 29 75 / 35%);
  }
  .oqsha-navlinks.active {
    display: flex;
    align-items: start;
  }
  .oqsha-menu-toggle {
    display: block;
    transform: scale(1.4);
  }
  .oqsha-nav-child {
    flex-direction: row-reverse;
    width: auto;
    padding-left: 0;
  }
  .oqsha-toprow {
    display: none;
  }
  .oqsha-logo {
    position: static;
  }
  .oqsha-logo-mark {
    width: 160px;
  }
  .oqsha-nav {
    justify-content: space-between;
  }
  .usp-bg-img {
    display: none;
  }
  .usp-wrapper {
    margin-bottom: 40px;
  }

  .oqsha-hero-card.solutions-page-active .audit-score-card {
    top: 20px;
    left: 20px;
  }
  .oqsha-hero-card.solutions-page-active .oqsha-chip {
    bottom: 20px;
    right: 20px;
  }

  .oqsha-hero-card.indus-manufacturing-page-active .oqsha-feature-texts,
  .oqsha-hero-card.why-oqsha-page-active .oqsha-feature-texts {
    text-align: start;
  }
  .oqsha-hero-card.indus-manufacturing-page-active .oqsha-feature-header {
    gap: 14px;
  }

  .oqsha-hero-card.why-oqsha-page-active .oqsha-hero-tablet-img-parent {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .oqsha-hero-card.resources-about-oqsha-page-active .oqsha-features,
  .oqsha-hero-card.cs-lcpmo-page-active .oqsha-features {
    max-width: none;
    justify-content: center;
    gap: 16px;
  }

  .oqsha-hero-card.cs-lcpmo-page-active .oqsha-feature-title {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .oqsha-features {
    grid-template-columns: none;
  }
  .oqsha-feature-texts {
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 16px;
  }
  .oqsha-hero-card.solutions-high-risk-active .oqsha-feature-texts {
    align-items: start;
  }

  .oqsha-hero-card.indus-manufacturing-page-active .oqsha-feature,
  .oqsha-hero-card.why-oqsha-page-active .oqsha-feature {
    width: 500px;
    margin: auto;
  }
  .oqsha-hero-card.indus-manufacturing-page-active .oqsha-feature-header,
  .oqsha-hero-card.why-oqsha-page-active .oqsha-feature-header {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .oqsha-features {
    grid-template-columns: 1fr;
  }
  .oqsha-wrap {
    padding: 12px;
  }
  .oqsha-hero-card {
    border-radius: 20px;
    padding: 20px;
  }
  .oqsha-sub {
    font-size: 16px;
  }
  .oqsha-btn {
    padding: 12px 20px;
    font-size: 14px;
  }
  .oqsha-cta {
    flex-direction: column;
    align-items: center;
  }

  .oqsha-hero-card.resources-about-oqsha-page-active .oqsha-features,
  .oqsha-hero-card.cs-lcpmo-page-active .oqsha-features {
    gap: 14px;
  }
  .oqsha-hero-card.resources-about-oqsha-page-active .oqsha-feature-title {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .oqsha-hero-card.indus-manufacturing-page-active .oqsha-feature,
  .oqsha-hero-card.why-oqsha-page-active .oqsha-feature {
    width: 90%;
  }
  .oqsha-hero-card.indus-manufacturing-page-active .oqsha-feature-texts,
  .oqsha-hero-card.why-oqsha-page-active .oqsha-feature-texts {
    flex-direction: column;
    align-items: start;
    gap: 4px;
  }
  .oqsha-hero-tablet-img-parent {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .oqsha-hero-card.resources-about-oqsha-page-active .oqsha-features,
  .oqsha-hero-card.cs-lcpmo-page-active .oqsha-features {
    flex-direction: column;
    width: 200px;
    margin: auto;
  }
  .oqsha-hero-card.cs-lcpmo-page-active .oqsha-features {
    margin-bottom: 40px;
    width: 260px;
  }
  .oqsha-hero-card.cs-lcpmo-page-active .oqsha-feature-header {
    gap: 8px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .oqsha-wrap {
    padding: 8px;
  }
  .oqsha-header {
    padding: 0 4px;
  }
  .oqsha-hero-card {
    border-radius: 16px;
    padding: 16px;
  }
  .oqsha-h1 {
    font-size: 28px;
  }
  .oqsha-sub {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .oqsha-btn {
    padding: 10px 16px;
    font-size: 13px;
    width: 100%;
    justify-content: center;
  }
  .oqsha-nav .oqsha-btn {
    padding: 8px 12px;
    font-size: 12px;
    width: auto;
  }
  .oqsha-logo-mark {
    width: 110px;
  }
  .oqsha-nav {
    gap: 8px;
  }
  .oqsha-trust-text {
    white-space: normal;
    font-size: 12px;
  }
  .oqsha-trust {
    flex-wrap: wrap;
  }
  .oqsha-chip {
    position: static;
    margin: 16px auto 0;
    padding: 10px 16px;
    gap: 10px;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 100px;
  }
  .oqsha-chip-icon {
    width: 28px;
    height: 28px;
  }
  .oqsha-chip-icon svg {
    width: 16px;
    height: 16px;
  }
  .oqsha-chip-value {
    font-size: 15px;
  }
  .oqsha-chip-label {
    font-size: 13px;
  }

  .oqsha-hero-card.solutions-page-active .oqsha-chip {
    bottom: 10px;
    right: 10px;
  }
  .oqsha-hero-card.solutions-page-active .audit-score-label {
    line-height: 10px;
  }
  .oqsha-hero-card.solutions-page-active .audit-score-card {
    top: 10px;
    left: 10px;
    padding: 8px;
  }
}

/* Unified Safety Platform Section */

.usp-wrapper {
  max-width: 1360px;
  margin: 80px auto 75px auto;
  padding: 0 24px 80px 24px;
  font-family: "Inter", sans-serif;
  color: #0b1320;
  position: relative;
}
.usp-wrapper.solutions-high-risk-active {
  margin: 80px auto 120px auto;
}

.usp-bg-img {
  position: absolute;
  top: 75px;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
  background-size: contain;
}

.usp-wrapper.solutions-page-active .usp-bg-img {
  top: auto;
  bottom: -80px;
  height: auto;
}
.usp-wrapper.solutions-high-risk-active .usp-bg-img {
  bottom: -120px;
}

/* Dark Panel */
.usp-panel {
  background: linear-gradient(135deg, #050b18, #0b1630);
  color: #ffffff;
  border-radius: 16px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 32px;
}

.usp-wrapper.solutions-high-risk-active .usp-panel {
  align-items: center;
  grid-template-columns: 3fr 1px 2fr 2fr;
  margin-bottom: 100px;
}

.usp-column h3 {
  margin: 12px 0;
  font-size: 24px;
  font-weight: 600;
}

.usp-column p {
  color: #b8c1d9;
  line-height: 1.65;
  font-size: 16px;
}

.usp-label {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(0, 191, 255, 1);
  font-weight: 600;
}

.usp-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.usp-wrapper.solutions-page-active .usp-divider {
  height: 50%;
}

/* Headline */
.usp-headline {
  text-align: center;
  margin: 40px 0 28px;
}

.usp-headline h2 {
  font-size: 40px;
  font-weight: 700;
  color: rgba(0, 4, 13, 1);
}

.usp-headline p {
  margin-top: 16px;
  color: rgba(65, 65, 65, 1);
  font-size: 17px;
  line-height: 1.6;
}

.usp-wrapper.solutions-high-risk-active .usp-headline {
  text-align: start;
  margin: 40px 0 0;
}

/* Metrics */
.usp-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.usp-wrapper.solutions-page-active .usp-metrics {
  grid-template-columns: repeat(4, 1fr);
}

.usp-wrapper.solutions-high-risk-active .usp-metrics {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 991px) {
  .usp-wrapper.solutions-page-active .usp-metrics {
    grid-template-columns: 1fr;
  }
}

.metric-card {
  background: linear-gradient(135deg, #050b18, #0b1630);
  color: #ffffff;
  border-radius: 14px;
  padding: 28px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
}

.metric-card h3 {
  font-size: 36px;
  color: rgba(0, 191, 255, 1);
}

.metric-card span {
  display: block;
  margin-top: 8px;
  font-weight: 600;
  font-size: 16px;
}

.metric-card p {
  margin-top: 12px;
  font-size: 15px;
  color: #b8c1d9;
  line-height: 1.6;
}

.usp-wrapper.solutions-page-active .metric-card {
  background: rgba(5, 14, 34, 1);
  backdrop-filter: blur(64px);
}

.usp-wrapper.solutions-high-risk-active .metric-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
.usp-wrapper.solutions-high-risk-active .metric-card p {
  width: 80%;
  margin-top: 40px;
}
.usp-wrapper.solutions-high-risk-active .metric-card h3 {
  color: white;
}
.usp-wrapper.solutions-high-risk-active .metric-glow {
  position: absolute;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  filter: blur(64px);
  bottom: -40px;
  right: -40px;
}

.usp-wrapper.solutions-high-risk-active .blue-metric-glow {
  background: rgba(30, 100, 247, 0.6);
}

.usp-wrapper.solutions-high-risk-active .green-metric-glow {
  background: rgba(34, 197, 94, 0.6);
}

.usp-wrapper.solutions-high-risk-active .orange-metric-glow {
  background: rgba(249, 115, 22, 0.6);
}

/* ROI */
.usp-roi {
  text-align: center;
  margin-top: 24px;
}

.usp-roi a {
  color: rgba(17, 96, 251, 1);
  font-size: 14px;
  text-decoration: none;
  font-weight: 700;
}

.usp-roi a:hover {
  text-decoration: underline;
}

.usp-wrapper.solutions-high-risk-active .usp-roi {
  text-align: end;
  margin-top: 4px;
  margin-bottom: 24px;
}

/* AI Tagline */
.usp-tagline {
  text-align: center;
  margin-top: 60px;
}

.usp-tagline p {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 1024px) {
  .usp-panel {
    grid-template-columns: 1fr;
  }
  .usp-wrapper.solutions-high-risk-active .usp-panel {
    align-items: center;
    grid-template-columns: auto;
  }

  .usp-divider {
    display: none;
  }

  .usp-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .usp-metrics {
    grid-template-columns: 1fr;
  }

  .usp-headline h2 {
    font-size: 28px;
  }
}

/* Why Teams Choose OQSHA */
.why-oqsha {
  background: rgba(2, 10, 25, 1);
  padding: 60px 24px;
  font-family: "Inter", sans-serif;
}

.why-oqsha.solutions-high-risk-active {
  background: rgba(5, 14, 34, 1);
}

.why-oqsha-container {
  max-width: 1360px;
  margin: 0 auto;
}

.why-oqsha h2 {
  text-align: center;
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
}

.why-oqsha.solutions-high-risk-active h2 {
  margin-bottom: 30px;
}

.why-oqsha.solutions-high-risk-active .why-oqsha-container-subheading {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 40px;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-card {
  background: rgba(5, 29, 75, 0.34);
  border-radius: 18px;
  padding: 36px 32px;
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.why-oqsha.solutions-high-risk-active .why-card {
  background: none;
  border: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 22px;
  font-weight: 700;
}

.why-oqsha.indus-manufacturing-page-active .why-icon {
  background-color: rgba(0, 191, 255, 0.2);
}

.icon-ai {
  background: rgba(47, 210, 255, 0.15);
  color: #2fd2ff;
}

.icon-mobile {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.icon-proof {
  background: rgba(255, 81, 29, 0.2);
  color: #f97316;
}

.why-oqsha.solutions-high-risk-active .why-icon {
  background: rgba(30, 100, 247, 1);
  border-radius: 999px;
  width: 64px;
  height: 64px;
}

.why-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #b8c1d9;
}

/* Responsive */
@media (max-width: 1024px) {
  .why-cards {
    grid-template-columns: 1fr;
  }

  .why-oqsha h2 {
    font-size: 32px;
  }
}

/* Solve Core Safety Workflows */
.oqsha-workflows {
  padding: 60px 24px;
  background: #ffffff;
  font-family: "Inter", sans-serif;
}

.oqsha-workflows.solutions-page-active {
  background: linear-gradient(90deg, #08307e 0%, #051d4b 100%);
}
.oqsha-workflows.solutions-high-risk-active {
  background:
    linear-gradient(0deg, #cfdffe, #cfdffe6b),
    linear-gradient(0deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8));
}

.oqsha-workflows-inner {
  max-width: 1360px;
  margin: 0 auto;
}

.oqsha-workflows h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: rgba(8, 48, 126, 1);
  margin-bottom: 12px;
}

.oqsha-workflows .subtitle {
  text-align: center;
  font-size: 16px;
  color: #5f6b85;
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.oqsha-workflows.solutions-page-active h2,
.oqsha-workflows.solutions-page-active .subtitle {
  color: #ffffff;
}

.oqsha-workflows.solutions-high-risk-active h2 {
  color: rgba(11, 18, 32, 1);
  font-weight: 800;
  margin-bottom: 50px;
}
.oqsha-workflows.solutions-high-risk-active .subtitle {
  margin-bottom: 8px;
  color: rgba(30, 100, 247, 1);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.workflow-card {
  background: rgba(2, 10, 25, 1);
  border-radius: 18px;
  padding: 32px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.oqsha-workflows.solutions-high-risk-active .workflow-card-icon {
  padding: 16px 0;
  margin-bottom: 30px;
}

.oqsha-workflows.solutions-high-risk-active .workflow-card-icon span {
  border-radius: 12px;
  padding: 16px;
  background-color: rgba(239, 246, 255, 1);
  color: rgba(30, 100, 247, 1);
  font-size: 16px;
  font-weight: 700;
}

.oqsha-workflows.solutions-high-risk-active .workflow-card {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0px 10px 30px -5px rgba(11, 18, 32, 0.05);
}

.oqsha-workflows.solutions-high-risk-active .workflow-card:hover {
  box-shadow:
    0px 20px 50px -10px rgba(11, 18, 32, 0.15),
    0px 0px 0px 1.5px rgba(11, 18, 32, 0.08);
  transform: translateY(-3px);
}

.workflow-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.oqsha-workflows.solutions-high-risk-active .workflow-card h3 {
  color: rgba(11, 18, 32, 1);
  font-weight: 800;
}

.workflow-card .problem {
  color: rgba(255, 193, 7, 1);
  font-size: 14px;
  margin-bottom: 16px;
}

.oqsha-workflows.solutions-high-risk-active .workflow-card .problem {
  color: rgba(82, 98, 122, 1);
  background: rgba(255, 193, 7, 0.05);
  border-left: 3px solid rgba(30, 100, 247, 1);
  padding: 14px;
  font-style: italic;
}

.oqsha-workflows.solutions-high-risk-active .workflow-card-inner {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  height: 100%;
}

.oqsha-workflows.solutions-high-risk-active .workflow-card .problem-accent {
  background-color: rgba(255, 193, 7, 0.2);
  padding: 4px;
  font-weight: 600;
}

.workflow-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.workflow-tag {
  background: rgba(30, 41, 59, 1);
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 8px;
  color: rgba(203, 213, 225, 1);
}

.workflow-card p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(148, 163, 184, 1);
  margin-bottom: 20px;
}

.oqsha-workflows.solutions-high-risk-active .workflow-card p {
  color: rgba(82, 98, 122, 1);
  height: 100%;
}

.workflow-card a,
.our-methodology {
  color: rgba(17, 96, 251, 1);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.workflow-card a:hover,
.our-methodology:hover {
  text-decoration: underline;
}

/* Bottom row */
.workflow-grid.bottom {
  grid-template-columns: 1fr 2fr;
  margin-top: 32px;
}

/* AI mock */
.ai-mock {
  background: linear-gradient(135deg, #040a16, #091735);
  border-radius: 14px;
  padding: 20px;
  margin-top: 16px;
}

.ai-query {
  background: #0b3a82;
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 0 8px 8px 8px;
  font-size: 13px;
  width: fit-content;
  margin-bottom: 10px;
}

.ai-response {
  background: rgba(47, 210, 255, 0.15);
  color: #cfefff;
  padding: 12px 14px;
  border-radius: 8px 0 8px 8px;
  font-size: 13px;
  line-height: 1.5;
  max-width: 420px;
  border: 1px solid rgba(0, 191, 255, 0.2);
}

/* Responsive */
@media (max-width: 1024px) {
  .workflow-grid,
  .workflow-grid.bottom {
    grid-template-columns: 1fr;
  }

  .oqsha-workflows h2 {
    font-size: 32px;
  }
}

/* Ask OQO section */
.ask-qoo-section {
  background: radial-gradient(circle at top left, #0a2e73, #061733);
  padding: 50px 5%;
  font-family: "Inter", sans-serif;
  color: #ffffff;
}

.ask-qoo-section.solutions-page-active {
  background: #fff;
}

.ask-qoo-section.solutions-high-risk-active {
  background: linear-gradient(135deg, #1e64f7 0%, #0a47c9 100%);
}

.ask-qoo-container {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

/* Left Content */

.ask-qoo-content {
  flex: 1;
}

.ask-qoo-content.solutions-page-active {
  color: rgba(5, 29, 75, 1);
}

.ask-qoo-content.solutions-high-risk-active .ask-qoo-content-badge {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 1);
}

.ask-qoo-heading {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.ask-qoo-section.solutions-high-risk-active .ask-qoo-heading {
  color: #fff;
  margin-top: 20px;
}

.ask-qoo-subtext {
  font-size: 16px;
  color: #c9d4f0;
  max-width: 520px;
  margin-bottom: 24px;
}

.ask-qoo-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.ask-qoo-features li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #dbe4ff;
  position: relative;
}

.ask-qoo-subtext.solutions-page-active,
.ask-qoo-features.solutions-page-active li {
  color: rgba(0, 4, 13, 1);
}

.ask-qoo-features.solutions-high-risk-active li {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

.ask-qoo-features.solutions-high-risk-active li strong {
  color: #fff;
}

.ask-qoo-features .icon {
  background: rgba(0, 191, 255, 0.2);
  border-radius: 50%;
  min-width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ask-qoo-features.solutions-high-risk-active .icon {
  background: rgba(255, 255, 255, 0.2);
  width: 32px;
  height: 32px;
}

.ask-qoo-features img {
  width: 20px;
  height: 20px;
}

.ask-qoo-highlight {
  color: rgba(255, 193, 7, 1);
  font-weight: 600;
  font-size: 15px;
}

.ask-qoo-highlight.solutions-page-active {
  color: rgba(17, 96, 251, 1);
}

.ask-qoo-highlight.solutions-high-risk-active {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  font-style: italic;
  padding: 8px 20px;
  max-width: 410px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
}

/* Chat UI */
.ask-qoo-chat-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}

.ask-qoo-chat {
  width: 100%;
  max-width: 420px;
  background: rgba(2, 10, 25, 1);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.ask-qoo-chat-wrapper.solutions-high-risk-active .ask-qoo-chat {
  max-width: 510px;
}

.ask-qoo-chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  background: rgba(5, 29, 75, 1);
}

.ask-qoo-avatar {
  background: rgba(17, 96, 251, 1);
  border-radius: 50%;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ask-qoo-avatar img {
  width: 32px;
  height: 32px;
}

.ask-qoo-title {
  font-weight: 600;
}

.ask-qoo-chat-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ask-qoo-user-message {
  align-self: flex-end;
  background: rgba(5, 29, 75, 1);
  padding: 12px 14px;
  border-radius: 16px 2px 16px 16px;
  font-size: 14px;
  max-width: 85%;
}

.ask-qoo-ai-message {
  background: rgba(0, 191, 255, 0.3);
  padding: 14px;
  border-radius: 2px 16px 16px 16px;
  border: 1px solid rgba(0, 191, 255, 0.2);
  font-size: 14px;
  color: rgba(207, 223, 254, 1);
  max-width: 80%;
}

.ask-qoo-ai-message ul {
  padding-left: 18px;
  margin: 8px 0 12px 0;
}

.ask-qoo-btn {
  background: #2563eb;
  border: none;
  color: white;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
}

.ask-qoo-btn:hover {
  background: #1d4ed8;
}

.ask-qoo-chat-footer {
  padding: 14px 16px;
  background: rgba(2, 10, 25, 1);
  color: #7c8db5;
  font-size: 14px;
  border-radius: 8px;
}

.ask-qoo-chat-footer-parent {
  background-color: rgba(5, 29, 75, 1);
  padding: 16px;
}

/* Responsive */

@media (max-width: 900px) {
  .ask-qoo-container {
    flex-direction: column;
  }

  .ask-qoo-heading {
    font-size: 34px;
  }
}

/* Built for field */
.field-built-section {
  background: #ffffff;
  padding: 50px 60px;
  font-family: "Inter", sans-serif;
  color: #0f172a;
}

.field-built-section.industries-page-active {
  background: linear-gradient(135deg, #1e64f7 0%, #0a47c9 100%);
}

.field-built-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  align-items: center;
}

/* Image */

.field-built-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.field-built-image img {
  width: 100%;
  max-width: 460px;
  border-radius: 24px;
  border: 1px solid #e5f0ff;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
}

.field-built-section.industries-page-active .field-built-image img {
  border: none;
}

/* Content */

.field-built-content {
  flex: 1;
}

.field-built-content h2 {
  font-size: 40px;
  line-height: 1.25;
  color: rgba(8, 48, 126, 1);
  margin-bottom: 20px;
}

.field-built-section.industries-page-active .field-built-content h2 {
  color: rgba(255, 255, 255, 1);
}

.field-built-subtext {
  font-size: 16px;
  color: #475569;
  max-width: 520px;
  margin-bottom: 24px;
}

.field-built-section.industries-page-active .field-built-subtext {
  color: rgba(255, 255, 255, 0.8);
}

/* Features */

.field-built-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.field-built-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  font-size: 20px;
  color: #0ea5e9;
  margin-top: 2px;
}

.feature-icon img {
  width: 20px;
  height: 20px;
}

.field-built-feature h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #0f172a;
}

.field-built-section.industries-page-active .field-built-feature h4 {
  color: rgba(255, 255, 255, 1);
}

.field-built-feature p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

.field-built-section.industries-page-active .field-built-feature p {
  color: rgba(255, 255, 255, 0.8);
}

/* Responsive */

@media (max-width: 900px) {
  .field-built-container {
    flex-direction: column;
    text-align: center;
  }

  .field-built-content h2 {
    font-size: 32px;
  }

  .field-built-feature {
    text-align: left;
  }
}

/* Teams proof section */
.teams-proof-section {
  background:
    linear-gradient(0deg, #f2f6ff, #f2f6ff),
    linear-gradient(0deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9));
  padding: 16px 60px 30px;
  font-family: "Inter", sans-serif;
  color: #0f172a;
}

.teams-proof-section.solutions-page-active {
  padding: 72px 32px 112px 32px;
}

.teams-proof-section.industries-page-active {
  padding: 80px 60px 30px;
}

.teams-proof-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Heading */

.teams-proof-heading {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 32px;
}

/* Testimonial Card */

/* Testimonial Carousel */
.testimonial-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 24px;
}

.carousel-track-container {
  overflow: hidden;
  flex: 1;
  border-radius: 20px;
  box-shadow:
    0px 4px 6px rgba(0, 0, 0, 0.1),
    0px 10px 15px rgba(0, 0, 0, 0.1);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
  transition:
    opacity 0.3s ease,
    transform 0.5s ease;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}

.carousel-dot:hover {
  background: #94a3b8;
}

.carousel-dot.active {
  background: #2563eb;
  transform: scale(1.2);
}

.teams-proof-card {
  background: #fff;
  max-width: 720px;
  margin: 0 auto;
  padding: 36px 40px;
  text-align: left;
}

.teams-proof-quote {
  font-size: 18px;
  line-height: 1.6;
  color: #1e293b;
  margin-bottom: 22px;
}

.teams-proof-author {
  font-size: 14px;
  color: #334155;
  margin-bottom: 24px;
}

.teams-proof-author span {
  color: #64748b;
}

.teams-proof-divider {
  height: 1px;
  background: #e5edf8;
  margin-bottom: 18px;
}

/* Tags */

.teams-proof-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 500;
}

.tag-green {
  background: rgba(209, 238, 208, 1);
  color: rgba(7, 51, 7, 1);
}

.tag-blue {
  background: rgba(207, 223, 254, 1);
  color: rgba(2, 10, 25, 1);
}

.tag-yellow {
  background: rgba(255, 243, 205, 1);
  color: rgba(178, 135, 4, 1);
}

/* Industries */

.teams-proof-industries {
  font-size: 15px;
  color: rgba(71, 85, 105, 1);
  margin: 20px 0;
}

/* Logo Marquee */

.logo-marquee {
  width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 5%,
    black 95%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    black 5%,
    black 95%,
    transparent
  );
}

.logo-marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 40s linear infinite;
  width: max-content;
}

.logo-marquee:hover .logo-marquee-track {
  animation-play-state: paused;
}

.logo-marquee-item {
  flex-shrink: 0;
  width: 120px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%);
  opacity: 0.7;
  transition:
    filter 0.3s ease,
    opacity 0.3s ease;
}

.logo-marquee-item:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.logo-marquee-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* CTA */

.teams-proof-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #2563eb;
  color: #ffffff;
  border: none;
  padding: 14px 26px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary:hover {
  background: #1d4ed8;
}

.btn-secondary {
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 1);
  color: rgba(0, 0, 0, 1);
  padding: 14px 26px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.btn-secondary:hover {
  background: #f1f5f9;
}

/* Responsive */

@media (max-width: 768px) {
  .teams-proof-heading {
    font-size: 32px;
  }

  .teams-proof-card {
    padding: 28px;
  }

  .testimonial-carousel {
    gap: 8px;
  }

  .logo-marquee-track {
    gap: 40px;
  }

  .logo-marquee-item {
    width: 100px;
    height: 40px;
  }

  .teams-proof-section {
    padding: 16px 24px 30px;
  }
}

.demo-request-section {
  background: #f8fafc;
  padding: 40px 60px 60px;
  font-family: "Inter", sans-serif;
  color: #0f172a;
}

.demo-request-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */

.demo-request-header {
  text-align: center;
  margin-bottom: 40px;
}

.demo-request-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0f172a;
}

.demo-request-header p {
  font-size: 16px;
  color: rgba(65, 65, 65, 1);
}

/* Grid */

.demo-request-grid {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 40px;
  align-items: flex-start;
}

/* Left Card */

.demo-request-card {
  border-radius: 16px;
  overflow: hidden;
  color: #ffffff;
  /*box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);*/
  margin: auto;
}

.demo-request-image {
  width: 84%;
  height: 384px;
  display: block;
  object-fit: cover;
  object-position: left;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  margin-left: 10px;
}

.demo-request-card-content {
  padding: 28px 28px 32px 28px;
  background: #0b1220;
  border-radius: 12px;
}

.demo-request-card-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
  color: #ffffff;
}

.demo-request-card-content p {
  font-size: 14px;
  color: rgba(160, 191, 253, 1);
  margin-bottom: 20px;
  line-height: 1.6;
}

.demo-request-card-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.demo-request-card-content li {
  font-size: 14px;
  margin-bottom: 10px;
  padding-left: 26px;
  position: relative;
  color: rgba(207, 223, 254, 1);
  line-height: 1.5;
}

.demo-request-list-title {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.demo-request-list-description {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.demo-request-card-content li:last-child {
  margin-bottom: 0;
}

.demo-request-card-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
  font-size: 16px;
}

.demo-request-section.solutions-high-risk-active
  .demo-request-card-content
  li::before {
  color: rgba(30, 100, 247, 1);
}

/* Form */

.demo-request-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}

.form-group input,
.form-group textarea {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  transition: border-color 0.2s;
  background: #ffffff;
  color: #0f172a;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

/* Checkboxes */

.form-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: #334155;
}

.form-checkboxes label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 400;
}

.form-checkboxes input[type="checkbox"] {
  cursor: pointer;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Button */

.demo-request-btn {
  margin-top: 6px;
  background: rgba(17, 96, 251, 1);
  color: #ffffff;
  border: none;
  padding: 16px 24px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  width: 100%;
}

.demo-request-btn:hover {
  background: #1d4ed8;
}

.demo-request-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.demo-request-privacy {
  font-size: 13px;
  font-weight: 600;
  color: rgba(65, 65, 65, 1);
  text-align: center;
  margin-top: 0;
  line-height: 1.5;
}

/* Form Messages */
.form-message {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
  display: none;
}

.form-message:not(:empty) {
  display: block;
}

.form-message--success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.form-message--error {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

/* Honeypot field - hidden from humans */
.form-group--honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}

/* Cloudflare Turnstile widget */
.cf-turnstile {
  margin-bottom: 16px;
}

/* Responsive */

@media (max-width: 1024px) {
  .demo-request-grid {
    grid-template-columns: 380px 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .demo-request-section {
    padding: 60px 24px;
  }

  .demo-request-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .demo-request-header {
    margin-bottom: 40px;
  }

  .demo-request-header h2 {
    font-size: 32px;
    color: rgba(5, 29, 75, 1);
  }

  .demo-request-card-content {
    padding: 24px 20px 28px 20px;
  }

  .demo-request-image {
    height: 240px;
  }
}

/* Last section */
.preit-section {
  background: radial-gradient(circle at top, #0b1220, #020617);
  color: #e5e7eb;
  font-family: "Inter", sans-serif;
}

/* FAQ */

.preit-faq {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 20px 50px;
  text-align: center;
}

.preit-faq h2 {
  font-size: 28px;
  margin-bottom: 8px;
}

.preit-subtitle {
  font-size: 14px;
  color: rgba(148, 163, 184, 1);
  margin-bottom: 36px;
}

.preit-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: start;
}

.preit-item {
  background-color: rgba(15, 23, 42, 1);
  transition: background-color 0.5s ease;
  border-radius: 12px;
}

.preit-item.active {
  background: rgba(255, 255, 255, 1);
}

.preit-question {
  width: 100%;
  padding: 16px 20px;
  background: transparent;
  border: none;
  color: #e5e7eb;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.preit-item.active .preit-question {
  color: rgba(0, 4, 13, 1);
}

.preit-question span {
  color: #94a3b8;
  transition: transform 0.3s ease;
}

.preit-item.active .preit-question span {
  transform: rotate(180deg);
}

.preit-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  padding: 0 20px;
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
}

.preit-item.active .preit-answer {
  max-height: 200px;
  padding: 0 20px 16px;
  color: rgba(0, 4, 13, 1);
  font-weight: 300;
}

/* Footer Links */

.preit-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 50px 60px;
}

.preit-footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 36px;
}

.preit-footer-grid a {
  text-decoration: none;
  color: rgba(207, 223, 254, 1);
}

.preit-brand img {
  width: 120px;
  height: 44px;
}

.preit-brand h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.preit-brand p {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(207, 223, 254, 1);
  line-height: 1.6;
}

.preit-brand address {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  font-size: 12px;
  color: rgba(207, 223, 254, 0.7);
  line-height: 1.5;
  font-style: normal;
}

.preit-brand address svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.preit-footer h5 {
  font-size: 14px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 1);
}

.preit-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.preit-footer li {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 10px;
}

/* Bottom Bar */

.preit-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 12px;
  color: #64748b;
}

.preit-bottom-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.preit-bottom-links a {
  text-decoration: none;
  color: #64748b;
}

/* Responsive */

@media (max-width: 900px) {
  .preit-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .preit-brand {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .preit-footer-grid {
    grid-template-columns: 1fr;
  }

  .preit-brand {
    grid-column: span 1;
  }

  .preit-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* ===== MOBILE / TABLET ===== */
@media (max-width: 1024px) {
  /* Disable desktop mega hover behavior */
  .oqsha-mega-menu {
    position: static;
    width: 100%;
    padding: 0;
    opacity: 1;
    visibility: visible;
    background: none;
    box-shadow: none;
    display: none;
    margin-bottom: 22px;
  }

  .oqsha-navlink {
    font-weight: 700;
  }
  .oqsha-header.solutions-page-active .oqsha-navlink,
  .oqsha-header.industries-page-active .oqsha-navlink,
  .oqsha-header.why-oqsha-page-active .oqsha-navlink,
  .oqsha-header.resources-about-oqsha-page-active .oqsha-navlink,
  .oqsha-header.case-study-page-active .oqsha-navlink,
  .oqsha-header.cs-lcpmo-page-active .oqsha-navlink {
    color: rgb(8, 46, 120);
  }

  .oqsha-nav-item {
    width: 100%;
  }

  /* When dropdown is open */
  .oqsha-nav-item.open > .oqsha-mega-menu {
    display: block;
  }

  .oqsha-mega-container {
    flex-direction: column;
    gap: 34px;
    padding: 30px 0 30px 30px;
    border-top: 4px solid rgb(255 255 255 / 62%);
    border-bottom: 4px solid rgb(255 255 255 / 62%);
  }
  .oqsha-header.solutions-page-active .oqsha-mega-container,
  .oqsha-header.industries-page-active .oqsha-mega-container,
  .oqsha-header.why-oqsha-page-active .oqsha-mega-container,
  .oqsha-header.resources-about-oqsha-page-active .oqsha-mega-container,
  .oqsha-header.case-study-page-active .oqsha-mega-container,
  .oqsha-header.cs-lcpmo-page-active .oqsha-mega-container {
    border-top: 4px solid rgb(5 29 75 / 25%);
    border-bottom: 4px solid rgb(5 29 75 / 25%);
  }

  .oqsha-mega-column {
    gap: 10px;
  }

  .oqsha-mega-column h4 {
    margin-bottom: 6px;
  }

  .oqsha-mega-column a {
    color: #fff;
  }
  .oqsha-header.solutions-page-active .oqsha-mega-column a,
  .oqsha-header.industries-page-active .oqsha-mega-column a,
  .oqsha-header.why-oqsha-page-active .oqsha-mega-column a,
  .oqsha-header.resources-about-oqsha-page-active .oqsha-mega-column a,
  .oqsha-header.case-study-page-active .oqsha-mega-column a,
  .oqsha-header.cs-lcpmo-page-active .oqsha-mega-column a {
    color: rgba(5, 29, 75, 1);
  }

  /* Nav link row with arrow */
  .oqsha-navlink-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }

  .dropdown-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
    color: #fff;
  }
  .oqsha-header.solutions-page-active .dropdown-arrow,
  .oqsha-header.industries-page-active .dropdown-arrow,
  .oqsha-header.why-oqsha-page-active .dropdown-arrow,
  .oqsha-header.resources-about-oqsha-page-active .dropdown-arrow,
  .oqsha-header.case-study-page-active .dropdown-arrow,
  .oqsha-header.cs-lcpmo-page-active .dropdown-arrow {
    color: rgb(8, 46, 120);
  }

  .oqsha-nav-item.open .dropdown-arrow {
    transform: rotate(180deg);
  }
}

@media (max-width: 600px) {
  .oqsha-mega-column {
    min-width: 250px;
  }
  .oqsha-mega-column a {
    margin-left: 0;
  }
  .oqsha-mega-container {
    padding: 30px 0 30px 15px;
  }
}

/* Built for the Field, Not Just the Office section */
.field-section {
  padding: 100px 60px;
  font-family: "Inter", sans-serif;
}

.field-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 100px;
  align-items: center;
}

.field-image-wrapper {
  position: relative;
  padding: 16px;
  border: 1px solid rgba(230, 238, 248, 1);
  border-radius: 20px;
  box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.offline-badge {
  position: absolute;
  top: -30px;
  left: -30px;
  padding: 14px;
  background: rgba(5, 14, 34, 1);
  box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}

.offline-badge .small-text,
.offline-badge .offline-sync-text {
  color: rgba(255, 255, 255, 1);
  font-weight: 700;
}

.offline-badge .small-text {
  font-size: 10px;
  letter-spacing: 1px;
  line-height: 15px;
}

.offline-badge .offline-sync-text {
  font-size: 18px;
  line-height: 28px;
}

.field-image-wrapper img {
  border-radius: 20px;
}

.field-content h2 {
  color: rgba(11, 18, 32, 1);
  font-size: 36px;
  line-height: 40px;
  font-weight: 800;
}

.field-content p {
  color: rgba(11, 18, 32, 1);
  font-weight: 700;
}

.field-content .subtitle {
  color: rgba(82, 98, 122, 1);
  font-weight: 400;
}

.field-content .feature-card {
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(230, 238, 248, 1);
  border-radius: 12px;
  padding: 12px;
}

.field-content .check-icon {
  background: rgba(219, 234, 254, 1);
  color: rgba(30, 100, 247, 1);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}

.field-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (max-width: 1024px) and (min-width: 901px) {
  .field-container {
    gap: 60px;
  }
}

@media (max-width: 900px) {
  .field-container {
    flex-direction: column-reverse;
  }
  .field-image-wrapper img {
    min-height: 300px;
    max-height: 600px;
  }
}

@keyframes chipIconSlideUp {
  from {
    opacity: 0.8;
    bottom: -100px;
  }
  to {
    opacity: 1;
    bottom: -30px;
  }
}

@keyframes auditCardSlideUp {
  from {
    opacity: 0.8;
    top: 0px;
  }
  to {
    opacity: 1;
    top: 30px;
  }
}

.oqsha-chip {
  animation: chipIconSlideUp 1.5s ease forwards;
}

.audit-score-card {
  animation: auditCardSlideUp 1.5s ease 0.15s both;
}

@keyframes metricH3SlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.metric-card h3 {
  opacity: 0;
}

.metric-card.in-view h3 {
  animation: metricH3SlideUp 1.2s ease forwards;
}

/* Section Background */
.industries-section {
  padding: 100px 30px;
  background: linear-gradient(90deg, #08307e 0%, #051d4b 100%);
  color: #fff;
}

.industries-section-container {
  max-width: 1360px;
  margin: 0 auto;
}

/* Header */
.industries-header {
  margin-bottom: 60px;
}

.industries-header h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 15px;
}

.industries-header p {
  color: rgba(203, 213, 225, 1);
  max-width: 710px;
  font-size: 18px;
  line-height: 28px;
}

/* Grid */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Card */
.industry-card {
  background: rgba(2, 10, 25, 1);
  border-radius: 20px;
  overflow: hidden;
  transform: translateY(60px);
  opacity: 0;
  transition:
    transform 0.6s ease,
    opacity 0.6s ease,
    box-shadow 0.3s ease;
}

.industry-card.card-visible {
  transform: translateY(0);
  opacity: 1;
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.industry-image {
  position: relative;
  overflow: hidden;
}

/* Image */
.industry-image img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}

/* Gradient overlay */
.industry-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.4) 0%,
    rgba(30, 41, 59, 0.4) 100%
  );
}

/* Content */
.industry-content {
  padding: 30px;
}

.industry-content h3 {
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 700;
}

.industry-quote {
  color: rgba(255, 193, 7, 1);
  font-style: italic;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 20px;
}

.industry-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 36px;
}

.industry-content ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  margin-bottom: 10px;
  color: rgba(148, 163, 184, 1);
  font-size: 14px;
}

/* Link */
.industry-link {
  color: rgba(17, 96, 251, 1);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

.industry-link:hover {
  text-decoration: underline;
}

/* Footer */
.industries-footer {
  text-align: center;
  margin-top: 60px;
}

.view-all-link {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  opacity: 0.85;
}

.view-all-link:hover {
  opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .industries-header h2 {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .industries-section {
    padding: 100px 20px;
  }
}

/* SECTION BACKGROUND */
.industry-workflows {
  padding: 100px 20px;
  font-family: "Inter", sans-serif;
}

.industry-workflows-container {
  max-width: 1360px;
  margin: 0 auto;
}

/* GRID LAYOUT */
.industry-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
}

/* LEFT SIDE */
.industry-left h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 18px;
  color: rgba(100, 116, 139, 1);
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 500px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  position: relative;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-list li img {
  padding: 2px;
  background-color: rgba(0, 82, 204, 0.1);
  border-radius: 9999px;
}

.feature-list li span {
  color: rgba(51, 65, 85, 1);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

/* RIGHT SIDE CARDS */
.industry-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.industry-workflow-card {
  background: rgba(248, 250, 252, 1);
  border-radius: 14px;
  padding: 20px 50px 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  transition: all 0.25s ease;
  cursor: pointer;
  border: 1px solid rgba(226, 232, 240, 1);
  text-decoration: none;
}

.industry-workflow-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.card-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-box {
  width: 44px;
  height: 44px;
  background: #eef4ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 18px;
}

.industry-workflow-card h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 4px;
  color: rgba(10, 25, 47, 1);
}

.industry-workflow-card p {
  font-size: 14px;
  color: rgba(100, 116, 139, 1);
  margin: 0;
}

.industry-arrow {
  font-size: 22px;
  color: rgba(203, 213, 225, 1);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .industry-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .industry-left h2 {
    font-size: 34px;
  }

  .industry-workflows-container {
    max-width: 700px;
  }
}

@media (max-width: 575px) {
  .industry-workflow-card {
    padding: 20px;
    gap: 10px;
  }
}

.real-teams-section {
  padding: 70px 20px;
  text-align: center;
  font-family: "Inter", sans-serif;
}

.real-teams-section-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Heading */
.real-heading {
  font-size: 40px;
  font-weight: 700;
  color: rgba(10, 25, 47, 1);
  margin-bottom: 16px;
  line-height: 1.2;
}

/* Subtitle */
.real-subtitle {
  font-size: 16px;
  color: rgba(100, 116, 139, 1);
  margin-bottom: 24px;
}

/* Link */
.real-link {
  font-size: 14px;
  font-weight: 600;
  color: rgba(0, 82, 204, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.2s ease;
}

.real-link:hover {
  opacity: 0.8;
}

.arrow {
  transition: transform 0.2s ease;
}

.real-link:hover .arrow {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
  .real-heading {
    font-size: 30px;
  }

  .real-subtitle {
    font-size: 14px;
  }
}

.live-card-area {
  width: 100%;
  position: absolute;
  bottom: 30px;
  display: flex;
  justify-content: center;
}

.live-card {
  width: 430px;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 16px 20px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  background: rgba(255 255 255 / 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.live-title {
  color: rgba(10, 25, 47, 1);
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.live-label {
  color: rgba(100, 116, 139, 1);
  font-size: 10px;
  font-weight: 700;
  line-height: 15px;
  letter-spacing: 1px;
}

.live-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.live-tags {
  display: flex;
  gap: 10px;
}

.live-tag {
  color: rgba(0, 82, 204, 1);
  background-color: rgba(0, 82, 204, 0.1);
  border-radius: 9999px;
  padding: 10px;
  font-size: 11px;
  font-weight: 700;
  line-height: 15px;
}

.audit-ready-trail-area {
  width: 100%;
  position: absolute;
  bottom: 30px;
  display: flex;
  justify-content: end;
  padding-right: 30px;
}

.audit-ready-trail-card {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
}

.audit-ready-trail-label {
  color: rgba(100, 116, 139, 1);
  font-size: 12px;
  font-weight: 700;
  line-height: 15px;
  letter-spacing: 1px;
}

.audit-ready-trail-tags {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 10px;
}

.audit-ready-trail-tag {
  background-color: rgba(255, 255, 255, 1);
  color: rgba(25, 169, 22, 1);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 10px;
  font-weight: 700;
  line-height: 15px;
}

@media (max-width: 1275px) {
  .live-card {
    width: 250px;
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 1024px) {
  .live-card {
    width: 430px;
    flex-direction: row;
    gap: 26px;
  }
}

@media (max-width: 575px) {
  .live-card-area {
    position: static;
  }
  .live-card {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }
  .live-left {
    text-align: center;
  }
}

.why-oqsha.industries-page-active .why-cards {
  display: flex;
  gap: 24px;
  transition: transform 0.6s ease;
}

.why-oqsha.industries-page-active .why-card {
  flex: 0 0 calc((100% - 48px) / 3);
  /* 48px = 24px gap × 2 */
}

.why-oqsha.industries-page-active .why-oqsha-container {
  overflow: hidden;
}

.why-oqsha.industries-page-active .why-icon-1 {
  background-color: rgba(0, 191, 255, 0.2);
}

.why-oqsha.industries-page-active .why-icon-2 {
  background-color: rgba(25, 169, 22, 0.2);
}

.why-oqsha.industries-page-active .why-icon-3 {
  background-color: rgba(255, 81, 29, 0.2);
}

.why-oqsha.industries-page-active .why-icon-4 {
  background-color: rgba(234, 179, 8, 0.2);
}

.why-oqsha.industries-page-active .why-icon-5 {
  background-color: rgba(25, 118, 210, 0.2);
}

.why-dots {
  margin-top: 30px;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.why-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.why-dot.active {
  background: #2563eb;
  transform: scale(1.2);
}

@media (max-width: 1024px) {
  .live-card {
    right: auto;
  }
}

@media (max-width: 991px) {
  .why-oqsha.industries-page-active .why-card {
    min-width: 48%;
  }
  .audit-ready-trail-area {
    justify-content: center;
    padding-right: 0;
  }
  .audit-ready-trail-card {
    text-align: center;
  }
  .audit-ready-trail-tags {
    flex-direction: row;
  }
}

@media (max-width: 575px) {
  .why-oqsha.industries-page-active .why-card {
    min-width: 100%;
  }

  .audit-ready-trail-area {
    position: static;
  }
  .audit-ready-trail-card {
    background: none;
    box-shadow: none;
    border: none;
  }
  .audit-ready-trail-tag {
    background-color: rgba(209, 238, 208, 1);
  }
}

/* Section */
.governance-proof-section {
  background: rgba(255, 255, 255, 1);
  padding: 80px 20px;
}

.governance-container {
  max-width: 1360px;
  margin: 0 auto;
  text-align: center;
}

/* Header */
.governance-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: rgba(10, 25, 47, 1);
  margin-bottom: 12px;
}

.governance-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: rgba(100, 116, 139, 1);
  margin-bottom: 50px;
}

/* Grid */
.governance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card */
.governance-card {
  background: #eef2f6;
  border-radius: 16px;
  padding: 30px;
  text-align: left;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.governance-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.governance-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: rgba(0, 4, 13, 1);
}

.governance-card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(0, 4, 13, 1);
}

/* Icon */
.icon-wrapper {
  width: 40px;
  height: 40px;
  background: rgba(25, 169, 22, 0.2);
  color: rgba(25, 169, 22, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: bold;
  margin-bottom: 18px;
  font-size: 18px;
}

/* Footer link */
.governance-footer {
  margin-top: 40px;
}

.governance-link {
  font-size: 14px;
  font-weight: 600;
  color: rgba(0, 82, 204, 1);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.governance-link:hover {
  opacity: 0.7;
}

.governance-link .arrow {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.governance-link:hover .arrow {
  transform: translateX(4px);
}

/* ============================= */
/* Responsive */
/* ============================= */

/* Tablet */
@media (max-width: 1024px) {
  .governance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .governance-header h2 {
    font-size: 32px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .governance-grid {
    grid-template-columns: 1fr;
  }

  .governance-proof-section {
    padding: 60px 16px;
  }

  .governance-header h2 {
    font-size: 26px;
  }

  .governance-card {
    padding: 24px;
  }
}

@media (min-width: 1025px) {
  .dropdown-arrow {
    display: none;
  }
}

/* --- OQSHA Solves Section --- */
.oqsha-solves {
  padding: 80px 24px;
  background-color: rgba(15, 23, 42, 1);
}

.oqsha-solves-container {
  max-width: 1360px;
  margin: 0 auto;
}

/* Header Styles */
.oqsha-solves-header {
  margin-bottom: 40px;
}

.oqsha-solves-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.oqsha-solves-header p {
  font-size: 1.125rem;
  color: rgba(148, 163, 184, 1);
  margin: 0;
  line-height: 1.5;
}

/* Grid Layout */
.oqsha-solves-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Card Styles */
.oqsha-solves-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #28344b;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: border-color 0.2s ease;
}

/* Optional subtle hover effect for cards */
.oqsha-solves-card:hover {
  border-color: #3b4c6b;
}

/* Problem Tag (Small blue text with dot) */
.oqsha-solves-problem {
  color: rgba(96, 165, 250, 1);
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

/* Blue dot before the problem text */
.oqsha-solves-problem::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: rgba(96, 165, 250, 1);
  border-radius: 50%;
}

/* Card Title */
.oqsha-solves-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
}

/* --- Responsive Breakpoints --- */
@media (max-width: 768px) {
  .oqsha-solves {
    padding: 56px 20px;
  }

  .oqsha-solves-header h2 {
    font-size: 1.875rem;
  }

  .oqsha-solves-header p {
    font-size: 1rem;
  }

  /* Stack cards to 1 column on smaller screens */
  .oqsha-solves-grid {
    grid-template-columns: 1fr;
  }

  .oqsha-solves-card {
    padding: 24px;
  }
}

/* --- ROI & Business Value Section --- */
.roi-section {
  padding: 80px 24px;
  background-color: #ffffff;
}

.roi-container {
  max-width: 1360px;
  margin: 0 auto;
}

/* Header Styles */
.roi-header {
  text-align: center;
  margin-bottom: 56px;
}

.roi-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: rgba(15, 23, 42, 1);
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
}

.roi-header p {
  font-size: 1.125rem;
  color: rgba(100, 116, 139, 1);
  margin: 0;
}

/* Grid Layout */
.roi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Card Styles */
.roi-card {
  background-color: rgba(248, 250, 252, 1);
  border: 1px solid rgba(241, 245, 249, 1);
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.roi-card:hover {
  background-color: rgba(226, 240, 255, 0.692);
  transform: translateY(-2px);
}

/* Stat Typography (e.g., "40%") */
.roi-stat {
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(37, 99, 235, 1);
  margin: 0 0 12px 0;
  line-height: 1;
  letter-spacing: -0.02em;
}

/* Description Typography */
.roi-desc {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(71, 85, 105, 1);
  margin: 0;
  line-height: 1.5;
  /* Removed max-width so text spans 1 line natively when there is enough space */
}

/* --- Responsive Breakpoints --- */
@media (max-width: 1024px) {
  .roi-grid {
    /* Switch to 2x2 grid on tablets */
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .roi-section {
    padding: 56px 20px;
  }

  .roi-grid {
    /* Stack to 1 column on mobile */
    grid-template-columns: 1fr;
  }

  .roi-header h2 {
    font-size: 1.875rem;
  }

  .roi-header p {
    font-size: 1rem;
  }

  .roi-stat {
    font-size: 3rem;
  }
}

/* --- Compliance & Audit Trail Section --- */
.compliance-section {
  padding: 100px 24px;
  background-color: rgba(15, 23, 42, 1);
}

.compliance-container {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* Left Content Styles */
.compliance-content {
  flex: 1;
  max-width: 500px;
}

.compliance-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 32px 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.compliance-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.compliance-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.05rem;
  color: rgba(203, 213, 225, 1);
  line-height: 1.5;
}

.compliance-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: rgba(59, 130, 246, 1);
  border-radius: 999px;
  margin-top: 2px;
  padding: 4px;
}

/* Right Visual Styles (3D Hover Effect) */
.compliance-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px; /* Crucial for the 3D depth */
}

/* The Mockup Card */
.audit-mockup {
  width: 100%;
  max-width: 540px;
  background: linear-gradient(145deg, #161e31, #0f172a);
  border: 1px solid #1e293b;
  border-radius: 16px;
  padding: 24px;
  box-shadow:
    -20px 30px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);

  /* Default Tilted State */
  transform: rotateY(22deg) rotateX(4deg) rotateZ(-2deg);
  transform-style: preserve-3d;

  /* Smooth transition for hover */
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: default;

  /* Setup for the bottom fade overlay */
  position: relative;
  overflow: hidden;
}

/* Bottom fade effect to simulate scrollable content */
.audit-mockup::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 110px; /* Controls how tall the fade is */
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0) 0%,
    rgba(15, 23, 42, 1) 100%
  );
  pointer-events: none; /* Ensures the fade doesn't block mouse clicks */
}

/* Hover State: Straighten out */
.audit-mockup:hover {
  transform: rotateY(0deg) rotateX(0deg) rotateZ(0deg);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Mockup Interior Details */
.audit-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 16px;
}

.audit-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #94a3b8;
  text-transform: uppercase;
  line-height: 1.4;
}

.audit-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.dot.red {
  background-color: #ef4444;
}
.dot.yellow {
  background-color: #eab308;
}
.dot.green {
  background-color: #22c55e;
}

.audit-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.audit-row {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.02);
  transition: background 0.3s ease;
}

.audit-row:hover {
  background: rgba(255, 255, 255, 0.06);
}

.row-icon-box {
  width: 16px;
  height: 16px;
  background-color: #1e3a8a; /* Dark Blue */
  border-radius: 4px;
  margin-right: 16px;
}

.row-bar-long {
  height: 8px;
  width: 40%;
  background-color: #334155;
  border-radius: 4px;
}

.row-spacer {
  flex: 1;
}

.row-bar-short {
  height: 8px;
  width: 15%;
  background-color: #064e3b; /* Dark Green */
  border-radius: 4px;
}

/* --- Responsive Breakpoints --- */
@media (max-width: 1024px) {
  .compliance-visual {
    width: 100%;
  }

  .compliance-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .compliance-content {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .compliance-list {
    align-items: center;
    text-align: left;
  }

  .compliance-list li {
    width: 100%;
    max-width: 500px;
  }

  .audit-mockup {
    /* Reduce rotation slightly on smaller screens to prevent overflow */
    transform: rotateY(15deg) rotateX(5deg) rotateZ(0deg);
  }
}

@media (max-width: 640px) {
  .compliance-section {
    padding: 60px 20px;
  }

  .compliance-content h2 {
    font-size: 2rem;
  }

  .audit-mockup {
    padding: 16px;
    transform: rotateY(10deg) rotateX(2deg) rotateZ(0deg); /* Much gentler tilt for mobile */
  }

  .row-bar-long {
    width: 50%;
  }
  .row-bar-short {
    width: 25%;
  }
}

/* ESG Readiness Section Container */
.esg-section {
  max-width: 1360px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}

/* Header Styles */
.esg-header {
  margin-bottom: 56px;
}

.esg-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: rgba(15, 23, 42, 1);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.esg-header p {
  font-size: 18px;
  color: rgba(100, 116, 139, 1);
  font-weight: 400;
}

/* Cards Grid Layout */
.esg-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Individual Card Styles */
.esg-card {
  background-color: rgba(248, 250, 252, 0.5);
  border: 1px solid rgba(241, 245, 249, 1);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: left;
  transition:
    transform 0.2s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.esg-card:hover {
  background-color: rgba(226, 240, 255, 0.692);
  border: 1px solid rgb(195 225 255);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

.esg-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: rgba(15, 23, 42, 1);
  margin-bottom: 16px;
}

.esg-card p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(71, 85, 105, 1);
}

/* Responsive Design */
@media (max-width: 992px) {
  .esg-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .esg-section {
    padding: 60px 20px;
  }
  .esg-cards-grid {
    grid-template-columns: 1fr;
  }
  .esg-header h2 {
    font-size: 30px;
  }
  .esg-header p {
    font-size: 16px;
  }
}

/* Why Oqsha Security Section Container */
.security-section {
  background: rgba(15, 23, 42, 1);
}

.security-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 80px 20px;
}

/* Header Layout */
.security-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 48px;
}

.security-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.security-header p {
  font-size: 18px;
  color: rgba(148, 163, 184, 1);
  font-weight: 400;
}

/* Call to Action Button */
.security-btn {
  background-color: rgba(37, 99, 235, 1);
  color: #ffffff;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    transform 0.2s;
  white-space: nowrap;
}

.security-btn:hover {
  background-color: rgba(37 100 235 / 0.76);
  transform: translateY(-2px);
}

/* Cards Grid Layout */
.security-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Individual Card Styles */
.security-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid #2a3446;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: left;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.security-card:hover {
  border-color: rgba(255 255 255 / 0.2);
  transform: translateY(-2px);
}

/* Card Icon */
.security-card .icon {
  color: rgba(96, 165, 250, 1);
  margin-bottom: 24px;
}

.security-card .icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

/* Card Text */
.security-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.security-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(148, 163, 184, 1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .security-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .security-container {
    padding: 60px 20px;
  }
  .security-header-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .security-header h2 {
    font-size: 30px;
  }
  .security-header p {
    font-size: 16px;
  }
  .security-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* Deployment Section Container */
.deployment-section {
  max-width: 1360px;
  margin: 0 auto;
  padding: 100px 24px;
}

.deployment-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Left Side: Graphic Element */
.graphic-column {
  position: relative;
  width: 100%;
}

.figma-graphic {
  width: 100%;
  height: auto;
  border-radius: 24px; /* Matches the previous design's rounded corners */
  display: block;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04); /* Optional subtle shadow */
}

/* Right Side: Content */
.deployment-content h2 {
  font-size: 40px;
  font-weight: 800;
  color: rgba(15, 23, 42, 1);
  margin-bottom: 36px;
  letter-spacing: -0.5px;
}

/* Features List */
.deployment-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.deployment-feature-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(71, 85, 105, 1); /* Greyish blue text */
}

.deployment-feature-list li img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .deployment-container {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .graphic-column {
    max-width: 600px;
    margin: 0 auto;
  }
  .deployment-content {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .deployment-section {
    padding: 60px 20px;
  }
  .deployment-content h2 {
    font-size: 32px;
  }
  .deployment-feature-list li {
    font-size: 15px;
  }
}

/* Why Oqsha Implementation Section Container */
.implementation-section {
  background: rgba(15, 23, 42, 1);
}

.implementation-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 100px 24px;
}

/* Header Layout */
.impl-header {
  text-align: center;
  margin-bottom: 72px;
}

.impl-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.impl-header p {
  font-size: 18px;
  color: rgba(148, 163, 184, 1);
  font-weight: 400;
}

/* Timeline Container */
.impl-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 72px;
  padding: 0 70px;
}

/* Connecting Line */
.impl-timeline::before {
  content: "";
  position: absolute;
  top: 20px; /* Centers the line vertically with the 40px circles */
  left: 0px;
  right: 0px;
  height: 1px;
  background-color: #2a3446;
  z-index: 0;
}

/* Individual Timeline Steps */
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1; /* Keeps circles above the connecting line */
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(37, 99, 235, 1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 0 0 8px #0d111c; /* Creates space between circle and line */
}

.timeline-step span {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
}

/* Testimonial Box */
.testimonial-box {
  background-color: rgba(
    255,
    255,
    255,
    0.05
  ); /* Slightly lighter than background */
  border: 1px solid #2a3446;
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
}

.testimonial-box p {
  font-size: 16px;
  font-style: italic;
  color: rgba(148, 163, 184, 1);
  line-height: 1.6;
  max-width: 1100px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .impl-header h2 {
    font-size: 30px;
  }

  /* Center the timeline and space items for arrows */
  .impl-timeline {
    flex-direction: column;
    align-items: center; /* Centers the steps horizontally */
    gap: 48px; /* Space between cards for the arrow */
    padding: 0;
    margin-bottom: 48px;
  }

  /* Hide the horizontal connecting line on mobile */
  .impl-timeline::before {
    display: none;
  }

  /* Style each step as a centered, narrower card */
  .timeline-step {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid #2a3446;
    border-radius: 12px;
    padding: 16px 24px;
    width: 200px; /* Reduced width */
    gap: 20px;
    position: relative; /* Essential for positioning the line */
  }

  /* Create the straight connecting line between steps */
  .timeline-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 100%; /* Start exactly at the bottom edge of the card */
    left: 42px; /* Aligns perfectly with the center of the 36px circle (24px padding + 18px radius) */
    transform: translateX(-50%);
    width: 1px;
    height: 48px; /* Spans the full 48px gap between cards */
    background-color: #2a3446; /* Matches the desktop line color */
  }

  .step-circle {
    box-shadow: none; /* Remove gap shadow since there's no line */
    width: 36px;
    height: 36px;
    flex-shrink: 0; /* Prevents circle from shrinking */
  }

  .timeline-step span {
    margin-top: 0;
    font-size: 16px;
  }

  .testimonial-box {
    padding: 32px 24px;
  }
}

/* Why Oqsha Awards Section Container */
.awards-section {
  background: rgba(15, 23, 42, 1);
}

.awards-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 100px 24px;
}

/* Header Layout */
.awards-header {
  margin-bottom: 48px;
  text-align: left;
}

.awards-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.awards-header p {
  font-size: 18px;
  color: rgba(148, 163, 184, 1);
  font-weight: 400;
}

/* Cards Grid Layout */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Individual Card Styles */
.award-card {
  background-color: rgba(30, 41, 59, 1); /* Slightly lighter navy for cards */
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.award-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* Image Container & Badges */
.award-image-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-color: #0b111e;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.award-image-container img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-dark {
  background-color: rgba(59, 130, 246, 0.2);
  color: rgba(96, 165, 250, 1);
}

.badge-light {
  background-color: rgba(59, 130, 246, 0.2);
  color: rgba(96, 165, 250, 1);
}

/* Card Content */
.award-content {
  display: flex;
  flex-direction: column;
}

.award-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.award-meta {
  font-size: 11px;
  font-weight: 600;
  color: rgba(148, 163, 184, 1);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.award-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(148, 163, 184, 1);
}

/* Responsive Design */
@media (max-width: 900px) {
  .awards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .awards-container {
    padding: 60px 20px;
  }
  .awards-header h2 {
    font-size: 30px;
  }
  .awards-header p {
    font-size: 16px;
  }
  .award-card {
    padding: 20px;
    gap: 20px;
  }
}

/* Download 2 Pager Section Container */
.cta-banner-section {
  background:
    linear-gradient(0deg, #f2f6ff, #f2f6ff),
    linear-gradient(0deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9));
  padding: 50px 24px;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.cta-banner-container {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Banner Title */
.cta-banner-title {
  font-size: 20px;
  font-weight: 600;
  color: rgba(30, 41, 59, 1);
  letter-spacing: -0.2px;
}

/* Links Container */
.cta-banner-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Primary Blue Link */
.cta-link-primary {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(37, 99, 235, 1);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.cta-link-primary:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.cta-link-primary svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.cta-link-primary:hover svg {
  transform: translateX(4px); /* Moves arrow slightly right on hover */
}

/* Vertical Divider */
.cta-divider {
  width: 1px;
  height: 24px;
  background-color: rgba(203, 213, 225, 1);
}

/* Secondary Link */
.cta-link-secondary {
  color: rgba(71, 85, 105, 1);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.cta-link-secondary:hover {
  color: #1e293b;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cta-banner-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .cta-banner-actions {
    flex-direction: column;
    gap: 16px;
  }

  .cta-divider {
    width: 40px;
    height: 1px; /* Changes to horizontal line on mobile */
  }
}

/* Glassmorphism Container */
.glass-panel {
  width: 100%;
  position: absolute;
  bottom: 20px;
  display: flex;
  justify-content: center;
}

/* Status Cards Container */
.status-cards-list {
  width: 90%;
  background: rgba(255, 255, 255, 0.35); /* Semi-transparent white */
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 32px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Individual Card */
.status-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.status-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

/* Left Section: Dot & Title */
.card-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Dot Colors matching the design */
.dot-green {
  background-color: #22c55e;
}

.dot-orange {
  background-color: #f59e0b;
}

.dot-blue {
  background-color: #3b82f6;
}

.card-title {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b; /* Dark slate */
  letter-spacing: -0.2px;
}

/* Right Section: Status Badge */
.status-badge {
  background-color: #f8fafc;
  color: #64748b; /* Slate grey */
  font-size: 12px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Design */
@media (min-width: 1024px) and (max-width: 1140px) {
  .card-title {
    font-size: 14px;
  }
  .status-badge {
    font-size: 10px;
    padding: 8px;
  }
  .card-left {
    gap: 12px;
  }
  .status-card {
    padding: 16px;
  }
}

@media (max-width: 1024px) {
  .glass-panel {
    position: static;
  }
  .status-cards-list {
    width: 100%;
    justify-content: space-around;
    background: none;
    box-shadow: none;
    backdrop-filter: none;
    border: none;
    gap: 26px;
  }
  .status-card {
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }
}

@media (max-width: 480px) {
  .glass-panel {
    padding: 24px 16px;
    border-radius: 24px;
  }

  .status-cards-list {
    padding: 0;
  }

  .status-card {
    padding: 14px 10px;
    border-radius: 12px;
    align-items: flex-start;
    gap: 16px;
  }

  .status-badge {
    align-self: center;
    font-size: 10px;
    padding: 0;
  }

  .card-title {
    font-size: 15px;
  }

  .card-left {
    gap: 14px;
  }
}

/* Solutions Split Section */
.solutions-split-section {
  padding: 50px 5%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
}

.split-layout-container {
  max-width: 1360px;
  width: 100%;
  display: flex;
  gap: 40px;
  align-items: center;
}

/* Typography & Headings */
.section-headline {
  font-size: 42px;
  line-height: 1.15;
  color: rgba(5, 29, 75, 1);
  font-weight: 700;
  margin-bottom: 24px;
}

.section-description {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(0, 4, 13, 1);
  margin-bottom: 24px;
  max-width: 560px;
}

/* Feature List Styling */
.feature-bullets {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.feature-bullets li {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.bullet-icon {
  max-width: 20px;
  height: 20px;
  color: rgba(0, 191, 255, 1);
  stroke-width: 2;
  fill: none;
}

.bullet-text {
  font-size: 16px;
  color: rgba(0, 4, 13, 1);
  font-weight: 500;
  line-height: 1.5;
}

/* CTA Link */
.action-link-arrow {
  font-size: 16px;
  font-weight: 700;
  color: rgba(17, 96, 251, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s ease;
}

.action-link-arrow:hover {
  gap: 12px;
  text-decoration: underline;
}

.action-link-arrow .bullet-icon {
  color: rgba(17, 96, 251, 1);
}

/* Image/Media Canvas */
.site-control-image {
  position: relative;
  display: flex;
  justify-content: center;
  border-radius: 16px;
}

.responsive-preview-img {
  width: 100%;
  max-width: 650px;
  height: auto;
  border-radius: 12px;
  /* Subtle elevation shadow */
  box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .split-layout-container {
    gap: 40px;
  }
  .section-headline {
    font-size: 36px;
  }
}

@media (max-width: 991px) {
  .split-layout-container {
    flex-direction: column;
    text-align: left;
  }
  .content-column {
    order: 1;
  }
  .site-control-image {
    order: 2;
    margin-top: 20px;
  }
  .section-headline {
    font-size: 32px;
  }
}

/* Integration Grid Styles */
.integration-vibe-dark {
  background-color: rgba(15, 23, 42, 1);
  padding: 100px 5%;
  color: #ffffff;
}

.vibe-dark-container {
  max-width: 1360px;
  margin: 0 auto;
}

.vibe-dark-header {
  margin-bottom: 50px;
}

.vibe-dark-title {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.vibe-dark-desc {
  font-size: 18px;
  color: rgba(148, 163, 184, 1);
  line-height: 1.5;
}

.vibe-dark-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.vibe-tile-item {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Active State Styles (matches Card 1 in snapshot) */
.vibe-tile-item:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 191, 255, 1);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.1);
}

.vibe-tile-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(96, 165, 250, 1);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

.vibe-dot {
  width: 7px;
  height: 7px;
  background-color: rgba(96, 165, 250, 1);
  border-radius: 50%;
}

.vibe-tile-text {
  font-size: 22px;
  line-height: 1.4;
  color: #f1f5f9;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 850px) {
  .vibe-dark-grid {
    grid-template-columns: 1fr;
  }
  .vibe-tile-item {
    padding: 30px;
  }
  .vibe-tile-text {
    font-size: 19px;
  }
}

/* RIGHT COLUMN: Mission Card Styles */
.hero-mission-container {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-mission-card {
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  padding: 48px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0px 8px 30px 0px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-mission-title {
  font-size: 20px;
  font-weight: 700;
  color: rgba(15, 23, 42, 1);
  margin: 0 0 12px 0;
}

.hero-mission-desc {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(71, 85, 105, 1);
  margin-bottom: 32px;
  font-weight: 600;
}

.hero-mission-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-mission-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border: 1px solid rgba(241, 245, 249, 1);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  padding: 14px 20px;
  border-radius: 14px;
  opacity: 0;
  transform: translateY(40px);
  animation: heroMissionSlideUp 0.6s ease forwards;
}

/* Stagger delays */
.hero-mission-item:nth-child(1) {
  animation-delay: 0.8s;
}
.hero-mission-item:nth-child(2) {
  animation-delay: 1.2s;
}
.hero-mission-item:nth-child(3) {
  animation-delay: 1.6s;
}

@keyframes heroMissionSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-mission-item:hover {
  border-color: var(--oqsha-accent);
  background-color: #f8fbff;
}

.hero-mission-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(239, 246, 255, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
}

.hero-mission-text {
  font-size: 14px;
  font-weight: 600;
  color: rgba(15, 23, 42, 1);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero-mission-container {
    order: 2;
  }
}

@media (max-width: 575px) {
  .hero-mission-card {
    padding: 22px;
  }
  .hero-mission-icon {
    width: 30px;
    height: 30px;
  }
  .hero-mission-item {
    gap: 10px;
    padding: 14px;
  }
}

/* Why OQSHA Exists Section Styles */
.resources-why-exists-section,
.LCPMO-exec-section {
  background-color: rgba(15, 23, 42, 1); /* Matching deep dark theme */
  padding: 100px 5%;
  color: #ffffff;
  border-top-left-radius: 48px;
  border-top-right-radius: 48px;
}

.resources-why-exists-container {
  max-width: 1360px;
  margin: 0 auto;
}

.resources-why-exists-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  align-items: center;
}

.resources-why-exists-h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffffff;
}

.resources-why-exists-p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(203, 213, 225, 1);
  margin-bottom: 40px;
  max-width: 500px;
}

.resources-why-exists-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.resources-why-exists-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  color: rgba(203, 213, 225, 1);
}

.resources-check-icon-box {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6; /* Blue checkmark */
  flex-shrink: 0;
}

/* Right Side Connection Card */
.resources-connection-card {
  background-color: rgba(30, 41, 59, 1);
  border: 1px solid rgba(51, 65, 85, 1);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  max-width: 500px;
}

.resources-connection-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #ffffff;
}

.resources-connection-block {
  padding: 24px;
  border-radius: 12px;
  position: relative;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.6s ease;
}

/* When visible */
.resources-connection-block.show {
  transform: translateY(0);
  opacity: 1;
}

.resources-connection-block.resources-before-block {
  background-color: rgba(15, 23, 42, 0.5);
}

.resources-connection-block.resources-after-block {
  background-color: rgba(30, 58, 138, 0.2);
}

.resources-before-block.show {
  transition-delay: 0.2s;
}

.resources-after-block.show {
  transition-delay: 0.5s;
}

.resources-before-block {
  border: 1px solid rgba(127, 29, 29, 0.3);
  border-left: 6px solid rgba(239, 68, 68, 0.5);
}

.resources-after-block {
  border-left: 1px solid rgba(30, 64, 175, 0.5);
  border-left: 4px solid rgba(59, 130, 246, 1);
}

.resources-block-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 8px;
}

.resources-red-text {
  color: rgba(248, 113, 113, 1);
}
.resources-blue-text {
  color: rgba(96, 165, 250, 1);
}

.resources-block-text {
  font-size: 16px;
  color: rgba(148, 163, 184, 1);
  margin: 0;
  line-height: 1.4;
}

.resources-connection-arrow {
  display: flex;
  justify-content: center;
  padding: 16px 0;
  color: rgba(71, 85, 105, 1);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.resources-connection-arrow.show {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}

.resources-connection-footer {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(51, 65, 85, 1);
  display: flex;
  align-items: center;
  gap: 12px;
}

.resources-footer-link-blue {
  color: rgba(96, 165, 250, 1);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.resources-footer-link-white {
  color: rgba(203, 213, 225, 1);
  text-decoration: none;
  font-size: 14px;
}

.resources-footer-dot {
  color: rgba(71, 85, 105, 1);
  font-size: 12px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .resources-connection-card-title {
    font-size: 18px;
  }
  .resources-block-text {
    font-size: 14px;
  }
  .resources-footer-link-blue,
  .resources-footer-link-white {
    font-size: 12px;
  }
  .resources-connection-arrow {
    padding: 12px 0;
  }
}

@media (max-width: 992px) {
  .resources-oqsha-hero-grid,
  .resources-why-exists-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .resources-hero-mission-container,
  .resources-why-exists-media {
    order: 2;
  }
  .resources-oqsha-copy,
  .resources-why-exists-copy {
    order: 1;
  }
  .resources-why-exists-container {
    max-width: 700px;
  }
  .resources-connection-card {
    max-width: none;
  }
  .resources-connection-card-title {
    font-size: 20px;
  }
  .resources-block-text {
    font-size: 16px;
  }
  .resources-footer-link-blue,
  .resources-footer-link-white {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .resources-connection-card {
    max-width: none;
    padding: 20px;
  }
  .resources-connection-card-title {
    font-size: 16px;
  }
  .resources-block-text {
    font-size: 14px;
  }
  .resources-footer-link-blue,
  .resources-footer-link-white {
    font-size: 12px;
  }
  .resources-connection-block {
    padding: 20px;
  }
  .resources-connection-footer {
    gap: 6px;
  }
}

/* Leadership Section Styles */
.resources-leadership-section {
  padding: 100px 5%;
  background-color: rgba(248, 250, 252, 1);
  color: rgba(15, 23, 42, 1);
}

.resources-leadership-container {
  max-width: 1360px;
  margin: 0 auto;
}

.resources-leadership-header {
  margin-bottom: 48px;
}

.resources-leadership-h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 12px 0;
}

.resources-leadership-p {
  font-size: 18px;
  color: rgba(71, 85, 105, 1);
  margin: 0;
}

/* Leadership Grid */
.resources-leadership-grid {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
}

.resources-leadership-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 1);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.resources-leadership-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.resources-leader-img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background-color: #e2e8f0;
  margin-bottom: 24px;
  object-fit: cover;
}

.resources-leader-name {
  font-size: 20px;
  font-weight: 700;
  color: rgba(15, 23, 42, 1);
  margin: 0 0 4px 0;
}

.resources-leader-title {
  font-size: 16px;
  font-weight: 600;
  color: rgba(37, 99, 235, 1);
  margin-bottom: 12px;
  text-transform: capitalize;
}

.resources-leader-bio {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(71, 85, 105, 1);
  margin: 0 0 20px 0;
  flex-grow: 1;
}

.resources-leader-linkedin {
  color: rgba(148, 163, 184, 1);
  display: inline-block;
  transition: color 0.2s ease;
}

.resources-leader-linkedin:hover {
  color: #0077b5;
}

/* Bottom Banner */
.resources-leadership-banner {
  background-color: rgba(239, 246, 255, 0.5);
  border: 1px solid rgba(219, 234, 254, 1);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  max-width: 780px;
  margin: auto;
}

.resources-leadership-banner-text {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(51, 65, 85, 1);
  margin: 0 auto;
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .resources-leadership-container {
    max-width: 700px;
  }
  .resources-leadership-grid {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .resources-leadership-grid {
    grid-template-columns: 1fr;
  }
  .resources-leadership-h2 {
    font-size: 28px;
  }
  .resources-leadership-p {
    font-size: 16px;
  }
}

/* Careers Section Styles */
.resources-careers-section {
  background-color: rgba(15, 23, 42, 1);
  padding: 100px 5%;
  color: #ffffff;
}

.resources-careers-container {
  max-width: 1360px;
  margin: 0 auto;
}

.resources-careers-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: stretch;
}

/* Left Side: Intro & Values */
.resources-careers-h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 16px 0;
}

.resources-careers-p {
  font-size: 18px;
  color: rgba(203, 213, 225, 1);
  line-height: 1.6;
  margin-bottom: 48px;
  max-width: 440px;
}

.resources-values-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.resources-value-card {
  max-width: 700px;
  background-color: rgba(30, 41, 59, 1);
  border: 1px solid rgba(51, 65, 85, 1);
  padding: 24px;
  border-radius: 12px;
  transition: background-color 0.3s ease;
}

.resources-value-card:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.resources-value-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  display: block;
}

.resources-value-desc {
  font-size: 14px;
  color: rgba(148, 163, 184, 1);
  line-height: 1.5;
  margin: 0;
}

/* Right Side: Open Roles Card */
.resources-roles-container {
  background-color: rgba(30, 41, 59, 1);
  border: 1px solid rgba(51, 65, 85, 1);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  height: 100%;
}

.resources-roles-h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 32px 0;
}

.resources-roles-list {
  list-style: none;
  padding: 0;
  margin: 0 0 60px 0;
}

.resources-role-item {
  border-bottom: 1px solid rgba(51, 65, 85, 1);
  padding: 20px 0;
}

.resources-role-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: rgba(203, 213, 225, 1);
  font-size: 16px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.resources-role-link:hover {
  color: var(--resources-oqsha-accent);
}

.resources-role-arrow {
  color: rgba(100, 116, 139, 1);
  transition:
    transform 0.2s ease,
    color 0.2s ease;
}

.resources-role-link:hover .resources-role-arrow {
  transform: translate(2px, -2px);
  color: var(--resources-oqsha-accent);
}

.resources-hr-btn {
  display: block;
  width: 100%;
  background-color: rgba(37, 99, 235, 1);
  color: #ffffff;
  text-align: center;
  padding: 16px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  transition: opacity 0.2s ease;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}

.resources-hr-btn:hover {
  opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .resources-careers-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .resources-careers-h2 {
    font-size: 32px;
  }
  .resources-careers-container {
    max-width: 700px;
  }
}

@media (max-width: 480px) {
  .resources-roles-container {
    padding: 30px 20px;
  }
  .resources-careers-section {
    padding: 60px 5%;
  }
}

/* News & Press Section Styles */
.resources-news-section {
  padding: 100px 5%;
  background-color: rgba(248, 250, 252, 1);
}

.resources-news-container {
  max-width: 1360px;
  margin: 0 auto;
}

/* Header with Link on Right */
.resources-news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
}

.resources-news-title-area {
  max-width: 600px;
}

.resources-news-h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 16px 0;
  color: rgba(15, 23, 42, 1);
}

.resources-news-p {
  font-size: 18px;
  color: rgba(71, 85, 105, 1);
  line-height: 1.5;
  margin: 0;
}

.resources-press-kit-link {
  color: rgba(37, 99, 235, 1);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 8px;
}

.resources-press-kit-link:hover {
  text-decoration: underline;
}

/* News Grid */
.resources-news-grid {
  display: flex;
  gap: 24px;
}

.resources-news-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 1);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  cursor: pointer;
}

.resources-news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
}

/* Badge Tags */
.resources-news-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
  align-self: flex-start;
}

.resources-badge-announcement {
  background: rgba(239, 246, 255, 1);
  color: rgba(29, 78, 216, 1);
}
.resources-badge-milestone {
  background: rgba(236, 253, 245, 1);
  color: rgba(4, 120, 87, 1);
}
.resources-badge-update {
  background: rgba(255, 247, 244, 1);
  color: rgba(255, 81, 29, 1);
}

.resources-news-date {
  font-size: 14px;
  color: rgba(148, 163, 184, 1);
  margin-bottom: 12px;
  display: block;
}

.resources-news-card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: rgba(15, 23, 42, 1);
  margin: 0 0 16px 0;
  flex-grow: 0;
}

.resources-news-card-desc {
  font-size: 14px;
  color: rgba(71, 85, 105, 1);
  line-height: 1.6;
  margin: 0 0 24px 0;
  flex-grow: 1;
}

.resources-read-more {
  font-size: 14px;
  font-weight: 700;
  color: rgba(37, 99, 235, 1);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.resources-read-more:hover {
  gap: 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .resources-news-grid {
    flex-direction: column;
  }
  .resources-news-container {
    max-width: 700px;
  }
  .resources-news-title-area {
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .resources-news-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .resources-news-grid {
    grid-template-columns: 1fr;
  }
  .resources-news-h2 {
    font-size: 32px;
  }
}

/* Recognitions & Milestones Section Styles */
.resources-milestones-section,
.cs-milestones-section {
  padding: 100px 5%;
  background-color: rgba(15, 23, 42, 1);
  color: #ffffff;
  text-align: center;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.resources-milestones-container,
.cs-milestones-container {
  max-width: 1360px;
  margin: 0 auto;
}

.resources-milestones-header,
.cs-milestones-header {
  margin-bottom: 60px;
}
.cs-milestones-header {
  text-align: start;
}

.resources-milestones-h2,
.cs-milestones-h2 {
  font-size: clamp(32px, 4vw, 36px);
  font-weight: 700;
  margin: 0 0 16px 0;
  letter-spacing: -0.01em;
}

.resources-milestones-p,
.cs-milestones-p {
  font-size: 18px;
  color: rgba(203, 213, 225, 1);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}
.cs-milestones-p {
  margin: 0;
}

.resources-milestones-grid,
.cs-milestones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.resources-milestone-card,
.cs-milestone-card {
  background-color: rgba(30, 41, 59, 1);
  border: 1px solid rgba(51, 65, 85, 1);
  border-radius: 24px;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: default;
}
.cs-milestone-card {
  justify-content: stretch;
  padding: 48px 12%;
}

.resources-milestone-card:hover,
.cs-milestone-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.12);
  background-color: rgba(255, 255, 255, 0.04);
}

.resources-milestone-icon,
.cs-milestone-icon {
  color: var(--resources-oqsha-accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.resources-milestone-text,
.cs-milestone-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  color: #f1f5f9;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .resources-milestones-grid,
  .cs-milestones-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .resources-milestones-section,
  .cs-milestones-section {
    padding: 60px 5%;
  }
}

@media (max-width: 540px) {
  .resources-milestones-grid,
  .cs-milestones-grid {
    grid-template-columns: 1fr;
  }
}

/* Events & Webinars Section Styles */
.resources-events-section {
  padding: 100px 5%;
  background-color: rgba(15, 23, 42, 1);
  color: #ffffff;
}

.resources-events-container {
  max-width: 1360px;
  margin: 0 auto;
}

.resources-events-header {
  margin-bottom: 50px;
}

.resources-events-h2 {
  font-size: clamp(32px, 4vw, 36px);
  font-weight: 700;
  margin: 0 0 16px 0;
  letter-spacing: -0.01em;
}

.resources-events-p {
  font-size: 18px;
  color: rgba(203, 213, 225, 1);
  max-width: 700px;
  line-height: 1.5;
}

.resources-events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.resources-event-card {
  background-color: rgba(30, 41, 59, 1);
  border: 1px solid rgba(51, 65, 85, 1);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  cursor: pointer;
}

.resources-event-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background-color: rgba(255, 255, 255, 0.04);
  transform: translateY(-4px);
}

/* Meta / Badges Row */
.resources-event-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.resources-event-badge {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
}

.resources-badge-upcoming {
  background: rgba(59, 130, 246, 0.2);
  color: rgba(96, 165, 250, 1);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.resources-event-info {
  font-size: 14px;
  color: rgba(148, 163, 184, 1);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Content Area */
.resources-event-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 12px 0;
  color: #f1f5f9;
  flex-grow: 1;
}

.resources-event-detail {
  font-size: 15px;
  color: rgba(148, 163, 184, 1);
  margin: 0 0 32px 0;
  line-height: 1.5;
}

/* Actions */
.resources-event-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.resources-event-blue-link {
  color: rgba(96, 165, 250, 1);
}

.resources-event-link:hover {
  gap: 12px;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .resources-events-grid {
    grid-template-columns: 1fr;
  }
  .resources-event-card {
    padding: 30px;
  }
}

@media (max-width: 600px) {
  .resources-events-section {
    padding: 60px 5%;
  }
  .resources-events-h2 {
    font-size: 28px;
  }
}

.cs-at-a-glance {
  padding: 100px 5%;
  background-color: rgba(15, 23, 42, 1);
}

.cs-at-a-glance .section-container {
  max-width: 1360px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin: auto;
}

.cs-at-a-glance .section-header {
  font-size: 2.25rem;
  font-weight: 700;
  margin: 0;
  opacity: 0.95;
  color: rgba(255, 255, 255, 1);
}

.cs-at-a-glance .section-header span {
  font-style: italic;
  margin-right: 6px;
}

.cs-at-a-glance .layout-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Left Column */
.cs-at-a-glance .info-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  height: 100%;
  justify-content: center;
}

.cs-at-a-glance .info-card {
  background-color: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(51, 65, 85, 1);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: var(--cs-shadow);
}

.cs-at-a-glance .icon-box {
  background-color: rgba(59, 130, 246, 0.1);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cs-accent-blue);
  flex-shrink: 0;
}

.cs-at-a-glance .info-label {
  display: block;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: rgba(100, 116, 139, 1);
  font-weight: 700;
  margin-bottom: 2px;
}

.cs-at-a-glance .info-value {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  color: rgba(226, 232, 240, 1);
}

/* Right Column Metrics */
.cs-at-a-glance .metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.cs-at-a-glance .metric-card {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 24px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  position: relative;
  z-index: 1;
}

/* Overlap logic for second column */
.cs-at-a-glance .metric-card:nth-child(even) {
  margin-left: -1.5rem;
  z-index: 2;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.cs-at-a-glance .metric-title {
  font-size: 16px;
  color: rgba(148, 163, 184, 1);
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.cs-at-a-glance .metric-stat {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-top: 1.5rem;
}

.cs-at-a-glance .stat-number {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: rgba(255, 255, 255, 1);
}

.cs-at-a-glance .stat-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.cs-at-a-glance .dot-blue {
  background-color: var(--cs-accent-blue);
}
.cs-at-a-glance .dot-teal {
  background-color: var(--cs-accent-teal);
}

/* Responsiveness */
@media (max-width: 1024px) {
  .cs-at-a-glance .layout-grid {
    grid-template-columns: 0.8fr 1fr;
    gap: 28px;
  }
  .cs-at-a-glance .metric-title {
    font-size: 14px;
  }
  .cs-at-a-glance .stat-number {
    font-size: 36px;
  }
  .cs-at-a-glance .metric-card {
    padding: 30px;
  }
  .cs-at-a-glance .info-value {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .cs-at-a-glance .layout-grid {
    grid-template-columns: 1fr;
  }
  .cs-at-a-glance .metric-card:nth-child(even) {
    margin-left: 0;
  }
  .cs-at-a-glance .section-container {
    max-width: 700px;
  }
  .cs-at-a-glance .metric-card {
    padding: 2.25rem;
  }
  .cs-at-a-glance .stat-number {
    font-size: 48px;
  }
  .cs-at-a-glance .info-value {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .cs-at-a-glance .metrics-grid {
    grid-template-columns: 1fr;
  }
  .cs-at-a-glance .stat-number {
    font-size: 36px;
  }
  .cs-at-a-glance .info-value {
    font-size: 14px;
  }
  .cs-at-a-glance .metric-card {
    min-height: 180px;
  }
}

/* Scoped styles for the Case Study "Pain Points" section */
.cs-pain-points {
  padding: 100px 5%;
}

.cs-pain-points .section-container {
  max-width: 1360px;
  width: 100%;
  margin: auto;
}

.cs-pain-points .header-group {
  margin-bottom: 3.5rem;
  max-width: 840px;
}

.cs-pain-points .label {
  display: block;
  color: rgba(37, 99, 235, 1);
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.cs-pain-points .main-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: rgba(15, 23, 42, 1);
}

.cs-pain-points .description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(71, 85, 105, 1);
  margin: 0;
}

/* Card Grid */
.cs-pain-points .cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.cs-pain-points .card {
  background-color: rgba(248, 250, 252, 1);
  border: 1px solid rgba(241, 245, 249, 1);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.cs-pain-points .card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.2);
}

.cs-pain-points .icon-box {
  width: 36px;
  height: 36px;
  background: white;
  border: 1px solid rgba(241, 245, 249, 1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.cs-pain-points .card-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: rgba(15, 23, 42, 1);
}

.cs-pain-points .card-body {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(71, 85, 105, 1);
  margin: 0;
}

.cs-pain-points .card-quote {
  font-size: 14px;
  font-style: italic;
  color: rgba(148, 163, 184, 1);
  margin-top: auto;
  line-height: 1.5;
}

/* Adjusting for 2-column row at the bottom if needed, or simply let grid flow */
@media (min-width: 992px) {
  .cs-pain-points .card:nth-child(n + 4) {
    grid-column: span 1;
  }
  /* To match the 3-2 layout in the image */
  .cs-pain-points .cards-grid {
    grid-template-areas:
      "c1 c2 c3"
      "c4 c5 .";
  }
  .cs-pain-points .card:nth-child(1) {
    grid-area: c1;
  }
  .cs-pain-points .card:nth-child(2) {
    grid-area: c2;
  }
  .cs-pain-points .card:nth-child(3) {
    grid-area: c3;
  }
  .cs-pain-points .card:nth-child(4) {
    grid-area: c4;
  }
  .cs-pain-points .card:nth-child(5) {
    grid-area: c5;
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .cs-pain-points .cards-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: none;
  }
  .cs-pain-points .main-heading {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .cs-pain-points .cards-grid {
    grid-template-columns: 1fr;
  }
  .cs-pain-points {
    padding: 40px 20px;
  }
}

/* Scoped styles for the Case Study "Solution" section */
.cs-solution {
  background-color: rgba(15, 23, 42, 1);
  padding: 100px 5%;
}

.cs-solution .section-container {
  max-width: 1360px;
  width: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: start;
}

/* Left Column: Copy and Feature Cards */
.cs-solution .content-column {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.cs-solution .label {
  display: block;
  color: rgba(96, 165, 250, 1);
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.cs-solution .main-heading {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 1);
  letter-spacing: -0.01em;
}

.cs-solution .main-description {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(203, 213, 225, 1);
  margin: 0;
  max-width: 540px;
}

.cs-solution .feature-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.cs-solution .feature-card {
  background-color: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(51, 65, 85, 1);
  border-radius: 16px;
  padding: 2.25rem;
  display: flex;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.cs-solution .feature-card:hover {
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateX(10px);
}

.cs-solution .cs-icon-box {
  flex-shrink: 0;
}

.cs-solution .feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
  color: rgba(255, 255, 255, 1);
}

.cs-solution .feature-desc {
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(148, 163, 184, 1);
  margin: 0;
}

/* Right Column: Workflow Details Card */
.cs-solution .details-card {
  background-color: rgba(30, 41, 59, 1);
  border: 1px solid rgba(51, 65, 85, 1);
  border-radius: 28px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.cs-solution .details-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.cs-solution .details-title {
  font-size: 1.65rem;
  font-weight: 700;
  margin: 0;
  color: rgba(255, 255, 255, 1);
}

.cs-solution .workflow-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 0.8px solid rgba(51, 65, 85, 1);
}

.cs-solution .workflow-item {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  color: rgba(203, 213, 225, 1);
  font-size: 1.05rem;
  line-height: 1.4;
}

.cs-solution .workflow-item::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: rgba(59, 130, 246, 1);
  border-radius: 50%;
  flex-shrink: 0;
}

.cs-solution .cs-governance-footer {
  padding: 1.5rem;
  background-color: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 14px;
  color: var(--sol-text-secondary);
}

.cs-solution .cs-governance-footer svg {
  color: var(--sol-accent-teal);
  flex-shrink: 0;
  opacity: 0.8;
}

.cs-solution .gov-label {
  color: rgba(148, 163, 184, 1);
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .cs-solution .section-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .cs-solution .main-heading {
    font-size: 2.5rem;
  }
}

@media (max-width: 640px) {
  .cs-solution {
    padding: 60px 20px;
  }
  .cs-solution .details-card {
    padding: 1.8rem 1.2rem;
    gap: 1.5rem;
  }
  .cs-solution .feature-card {
    padding: 1.5rem;
    gap: 1rem;
  }
  .cs-solution .main-heading {
    font-size: 2rem;
  }
  .cs-solution .details-title {
    font-size: 16px;
  }
  .cs-solution .workflow-item {
    font-size: 14px;
  }
  .cs-solution .gov-label {
    font-size: 12px;
  }
}

/* Scoped styles for the Case Study "Rollout" section */
.cs-rollout {
  background-color: rgba(248, 250, 252, 1);
  padding: 100px 5%;
}

.cs-rollout .section-container {
  max-width: 1360px;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.cs-rollout .header-group {
  margin-bottom: 1rem;
}

.cs-rollout .main-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(15, 23, 42, 1);
  margin: 0 0 0.75rem 0;
  letter-spacing: -0.01em;
}

.cs-rollout .main-description {
  font-size: 1.15rem;
  color: rgba(71, 85, 105, 1);
  margin: 0;
}

/* Phases Grid Layout */
.cs-rollout .phases-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.25rem;
}

.cs-rollout .phase-card {
  background-color: rgba(255, 255, 255, 1);
  border: 1px solid rgba(226, 232, 240, 1);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.cs-rollout .phase-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.05),
    0 4px 6px -4px rgba(0, 0, 0, 0.025);
}

.cs-rollout .cs-step-circle {
  width: 32px;
  height: 32px;
  background-color: rgba(37, 99, 235, 1);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.cs-rollout .phase-week {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(37, 99, 235, 1);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.cs-rollout .phase-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(15, 23, 42, 1);
  margin: 0 0 1.25rem 0;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #f1f5f9;
}

.cs-rollout .phase-task {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: rgba(100, 116, 139, 1);
  margin-bottom: 1rem;
}

.cs-rollout .phase-task::before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: #cbd5e1;
  border-radius: 50%;
  flex-shrink: 0;
}

.cs-rollout .phase-output {
  background-color: rgba(236, 253, 245, 1);
  color: rgba(15, 23, 42, 1);
  padding: 0.6rem 0.75rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
}

/* Bottom Feature Card */
.cs-rollout .bottom-card {
  background-color: rgba(255, 255, 255, 1);
  border: 1px solid rgba(226, 232, 240, 1);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  margin-top: 1rem;
}

.cs-rollout .bottom-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(15, 23, 42, 1);
  margin: 0 0 1.5rem 0;
}

.cs-rollout .feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.cs-rollout .feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(71, 85, 105, 1);
  font-size: 1.05rem;
  margin-bottom: auto;
}

.cs-rollout .feature-icon {
  color: var(--ro-accent-blue);
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .cs-rollout .phases-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .cs-rollout .phases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cs-rollout .bottom-card {
    padding: 2rem;
  }
  .cs-rollout .main-heading {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .cs-rollout .feature-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .cs-rollout .phases-grid {
    grid-template-columns: 1fr;
  }
  .cs-rollout {
    padding: 60px 20px;
  }
  .cs-rollout .bottom-card {
    padding: 1.75rem;
  }
}

/* Scoped styles for the Case Study "Visual Proof" section */
.cs-visual-proof {
  padding: 100px 5%;
}

.cs-visual-proof .cs-section-container {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* --- Left Column: Dashboard Image --- */
.cs-visual-proof .cs-image-column {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.cs-visual-proof .cs-dashboard-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  display: block;
}

/* --- Right Column: Content --- */
.cs-visual-proof .cs-content-column {
  display: flex;
  flex-direction: column;
}

.cs-visual-proof .cs-label {
  color: rgba(37, 99, 235, 1);
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.cs-visual-proof .cs-main-heading {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: rgba(15, 23, 42, 1);
  margin: 0 0 2.5rem 0;
  letter-spacing: -0.01em;
}

.cs-visual-proof .cs-feature-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cs-visual-proof .cs-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.cs-visual-proof .cs-feature-number {
  width: 28px;
  height: 28px;
  background-color: rgba(239, 246, 255, 1);
  color: rgba(37, 99, 235, 1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.cs-visual-proof .cs-feature-text {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.cs-visual-proof .cs-feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(15, 23, 42, 1);
  margin: 0;
}

.cs-visual-proof .cs-feature-desc {
  font-size: 1rem;
  color: rgba(71, 85, 105, 1);
  margin: 0;
  line-height: 1.5;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .cs-visual-proof .cs-section-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Order: Image first, Text second on mobile */
  .cs-visual-proof .cs-image-column {
    order: 1;
  }
  .cs-visual-proof .cs-content-column {
    order: 2;
  }
}

@media (max-width: 640px) {
  .cs-visual-proof {
    padding: 60px 20px;
  }
  .cs-visual-proof .cs-main-heading {
    font-size: 1.85rem;
  }
}

/* Case Study Hero section Right section */
.cs-card {
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.1);
  padding: 2rem; /* 32px */
  width: 100%;
  max-width: 500px;
  margin: auto;
}

/* Logo Badge */
.cs-logo-badge {
  width: 48px;
  height: 48px;
  padding-inline: 28px;
  background-color: rgba(241, 245, 249, 1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.cs-logo-text {
  color: rgba(148, 163, 184, 1);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.025em;
}

/* Section Title */
.cs-section-title {
  color: rgba(37, 99, 235, 1);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 1.25rem; /* 20px */
  margin-left: 0.25rem; /* 4px */
}

/* List Items */
.cs-list-container {
  display: flex;
  flex-direction: column;
  gap: 0.875rem; /* 14px */
}

.cs-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem; /* 16px 20px */
  border: 1px solid rgba(241, 245, 249, 1);
  border-radius: 16px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  background-color: rgba(255, 255, 255, 0.8);
  transition: background-color 0.2s ease;
  cursor: pointer;
}

.cs-list-item:hover {
  background-color: rgb(237 234 234 / 61%);
}

.cs-item-text {
  color: rgba(51, 65, 85, 1);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

/* Icons */
.cs-icon {
  width: 20px;
  height: 20px;
  stroke-width: 2px;
}

@media (max-width: 575px) {
  .cs-card {
    max-width: 400px;
  }
}
@media (max-width: 400px) {
  .cs-card {
    max-width: 400px;
    padding: 1.2rem;
  }
  .cs-item-text {
    font-size: 15px;
  }
  .cs-list-item {
    padding: 1rem;
  }
}

/* Case Study - Large Consumer Products Manufacturing Organisation Styles */
.LCPMO-card {
  background-color: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(241, 245, 249, 1);
  /* Enhanced shadow to emphasize the 3D lift */
  box-shadow: 15px 30px 60px -15px rgba(0, 0, 0, 0.25);
  padding: 0.6rem; /* 24px */
  width: 100%;
  max-width: 600px;
  margin: auto;

  /* Initial 3D tilt */
  transform: perspective(1200px) rotateX(6deg) rotateY(-8deg) rotateZ(2deg);
  transform-style: preserve-3d;

  /* Added a bouncy cubic-bezier transition for a realistic spring effect */
  transition:
    transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.5s ease,
    padding 0.3s ease;
}

/* Hover Effect - Straightens out to a flat, forward-facing position */
.LCPMO-card:hover {
  transform: perspective(1200px) rotateX(0deg) rotateY(0deg) rotateZ(0deg)
    translateY(-8px);
  box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.15);
}

/* Top Image */
.LCPMO-card-image {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  transition: height 0.3s ease;
}

/* Highlights Header Row */
.LCPMO-highlights-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  padding: 0 0.5rem;
}

.LCPMO-section-title {
  color: rgba(37, 99, 235, 1);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Small grey pill indicator */
.LCPMO-pill {
  width: 40px;
  height: 16px;
  background-color: #f1f5f9;
  border-radius: 8px;
}

/* List Items */
.LCPMO-list-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem; /* 12px */
  padding: 1rem;
}

.LCPMO-list-item {
  display: flex;
  align-items: flex-start;
  background-color: #f8fafc; /* Very light grey */
  border-radius: 12px;
  gap: 0.75rem;
  transition: padding 0.3s ease;
}

.LCPMO-item-text {
  color: rgba(71, 85, 105, 1);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

/* Check Icons */
.LCPMO-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.LCPMO-icon-check {
  width: 16px;
  height: 16px;
  stroke-width: 2.5px;
}

/* Download Button */
.LCPMO-download-btn {
  background-color: rgba(15, 23, 42, 1);
  color: #ffffff;
  border: none;
  border-radius: 16px;
  padding: 1.25rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.LCPMO-download-btn:hover {
  background-color: #1e293b;
}

.LCPMO-download-btn:active {
  transform: scale(0.98);
}

.LCPMO-icon-download {
  width: 18px;
  height: 18px;
  color: #ffffff;
}

/* --- Responsive Adjustments --- */
@media (max-width: 640px) {
  .LCPMO-card {
    transform: perspective(1200px) rotateX(0deg) rotateY(0deg) rotateZ(0deg); /* Remove tilt to prevent viewport clipping */
    padding: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15); /* Normalize shadow for mobile */
    max-width: 520px;
  }

  .LCPMO-card:hover {
    /* Calmer hover on mobile */
    transform: perspective(1200px) rotateX(0deg) rotateY(0deg) rotateZ(0deg)
      translateY(-4px);
    box-shadow: 0 30px 50px -12px rgba(0, 0, 0, 0.2);
  }

  .LCPMO-card-image {
    max-height: 250px; /* Slightly shorter image for limited screen real estate */
    margin-bottom: 1.25rem;
  }

  .LCPMO-download-btn {
    padding: 1.2rem;
  }
}

/* Executive Summary Section Styles */

.LCPMO-exec-container {
  width: 100%;
  max-width: 1360px;
  margin: auto;
}

/* Section Title */
.LCPMO-exec-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 3rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 1);
}

/* 3-Column Grid */
.LCPMO-exec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; /* 24px */
}

/* Individual Card */
.LCPMO-exec-card {
  background-color: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(51, 65, 85, 1);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.LCPMO-exec-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.12);
  background-color: rgba(255, 255, 255, 0.04);
}

/* Card Headings */
.LCPMO-exec-card-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 1.75rem;
}

/* Specific Heading Colors */
.LCPMO-color-problem {
  color: rgba(251, 113, 133, 1);
}

.LCPMO-color-changed {
  color: rgba(96, 165, 250, 1);
}

.LCPMO-color-improved {
  color: rgba(52, 211, 153, 1);
}

/* List Styles */
.LCPMO-exec-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.LCPMO-exec-list-item {
  color: rgba(203, 213, 225, 1);
  font-size: 13px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

/* Custom Bullet Points */
.LCPMO-exec-bullet {
  width: 5px;
  height: 5px;
  background-color: #64748b; /* Medium slate bullet */
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px; /* Align with first line of text */
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
  .LCPMO-exec-grid {
    grid-template-columns: 1fr;
  }
  .LCPMO-exec-container {
    max-width: 600px;
  }
}

@media (max-width: 640px) {
  .LCPMO-exec-card {
    padding: 1.5rem;
  }
  .LCPMO-exec-list {
    gap: 1rem;
  }
}

/* --- The Challenge Section --- */
.LCPMO-challenge-section {
  background-color: #ffffff;
  padding: 6rem 5%;
  display: flex;
  justify-content: center;
}

.LCPMO-challenge-container {
  width: 100%;
  max-width: 1360px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Challenge Left Side */
.LCPMO-challenge-title {
  color: rgba(15, 23, 42, 1);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 2.5rem;
}

.LCPMO-challenge-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.LCPMO-challenge-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.LCPMO-challenge-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: rgba(239, 246, 255, 1);
  color: rgba(37, 99, 235, 1);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.LCPMO-challenge-text {
  color: rgba(71, 85, 105, 1);
  font-size: 16px;
  line-height: 1.6;
}

/* Context Right Side */
.LCPMO-context-card {
  background-color: rgba(248, 250, 252, 1);
  border: 1px solid rgba(241, 245, 249, 1);
  border-radius: 24px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.09);
}

.LCPMO-context-title {
  color: rgba(148, 163, 184, 1);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.LCPMO-context-row {
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(241, 245, 249, 1);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  gap: 1rem;
}

.LCPMO-context-label {
  color: rgba(100, 116, 139, 1);
  font-size: 14px;
  font-weight: 600;
}

.LCPMO-context-value {
  color: rgba(15, 23, 42, 1);
  font-size: 14px;
  font-weight: 700;
  text-align: right;
}

/* --- Responsive Adjustments --- */
@media (min-width: 1025px) and (max-width: 1200px) {
  .LCPMO-context-card {
    padding: 1.6rem;
  }
  .LCPMO-context-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1rem;
  }
}

@media (max-width: 1024px) and (min-width: 992px) {
  .LCPMO-challenge-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 992px) {
  .LCPMO-challenge-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    max-width: 700px;
  }
  .LCPMO-context-card {
    max-width: 500px;
    width: 100%;
    margin: auto;
  }
}

@media (max-width: 640px) {
  .LCPMO-challenge-section {
    padding: 3rem 5%;
  }
  .LCPMO-context-card {
    padding: 1.5rem;
  }
  .LCPMO-context-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .LCPMO-context-value {
    text-align: left;
  }
}

/* --- What We Implemented Section --- */
.LCPMO-implemented-section {
  background-color: rgba(15, 23, 42, 1);
  padding: 6rem 5%;
  display: flex;
  justify-content: center;
  color: #ffffff;
}

.LCPMO-implemented-container {
  width: 100%;
  max-width: 1360px;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.LCPMO-implemented-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.LCPMO-implemented-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.LCPMO-implemented-subtitle {
  color: rgba(148, 163, 184, 1);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.LCPMO-implemented-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.LCPMO-impl-card {
  background-color: rgba(30, 41, 59, 1);
  border: 1px solid rgba(51, 65, 85, 1);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.LCPMO-impl-card-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.LCPMO-impl-icon-box {
  width: 44px;
  height: 44px;
  background-color: rgba(59, 130, 246, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa; /* Light blue icon */
  flex-shrink: 0;
}

.LCPMO-impl-icon-box svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}

.LCPMO-impl-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

.LCPMO-impl-card-desc {
  color: rgba(148, 163, 184, 1);
  font-size: 14px;
  font-style: italic;
  line-height: 1.6;
}

.LCPMO-impl-list-group {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.LCPMO-impl-list-title {
  color: rgba(100, 116, 139, 1);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.LCPMO-impl-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}

.LCPMO-impl-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  color: rgba(203, 213, 225, 1);
  font-size: 14px;
  line-height: 1.6;
}

.LCPMO-impl-list-item-secondary {
  color: rgba(148, 163, 184, 1);
}

.LCPMO-what-we-implemented-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
  .LCPMO-implemented-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .LCPMO-implemented-section {
    padding: 4rem 1.5rem;
  }
  .LCPMO-impl-card {
    padding: 2rem 1.5rem;
  }
  .LCPMO-impl-card-header {
    gap: 1rem;
  }
}

/* --- Workflow Section --- */
.LCPMO-workflow-section {
  padding: 6rem 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
}

.LCPMO-workflow-container {
  width: 100%;
  max-width: 1360px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Section Title */
.LCPMO-workflow-title {
  color: rgba(15, 23, 42, 1);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 4rem;
  text-align: center;
}

/* 5-Column Steps Grid */
.LCPMO-step-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  width: 100%;
  margin-bottom: 5rem;
  position: relative; /* Context for the single connecting line */
}

/* Single Connecting Line Behind Cards */
.LCPMO-step-grid::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgba(241, 245, 249, 1);
  z-index: 0;
}

/* Individual Step Card */
.LCPMO-step-card {
  position: relative;
  z-index: 1;
  background-color: #ffffff;
  border: 1px solid rgba(241, 245, 249, 1);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.LCPMO-step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.08);
}

/* Step Number Badge */
.LCPMO-step-badge {
  position: relative;
  z-index: 2;
  width: 36px;
  height: 36px;
  background-color: rgba(37, 99, 235, 1);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

/* Step Title */
.LCPMO-step-title {
  color: rgba(15, 23, 42, 1);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0.75rem;
  z-index: 2;
}

/* Step Description */
.LCPMO-step-desc {
  color: rgba(100, 116, 139, 1);
  font-size: 13px;
  line-height: 1.6;
  z-index: 2;
}

/* 2-Column Mockups Grid */
.LCPMO-mockup-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  width: 100%;
}

.LCPMO-mockup-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

/* Mockup Image Styling */
.LCPMO-mockup-img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
  margin-bottom: 1.5rem;
  border: 1px solid #f1f5f9;
  object-fit: cover;
  aspect-ratio: 16/10; /* Keeps images consistent */
}

/* Mockup Captions */
.LCPMO-mockup-caption {
  color: rgba(100, 116, 139, 1);
  font-size: 14px;
  font-weight: 600;
  font-style: italic;
  line-height: 1.5;
  max-width: 90%;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .LCPMO-step-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 2rem;
  }
  /* Hide the continuous line when the grid wraps to multiple rows */
  .LCPMO-step-grid::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .LCPMO-workflow-section {
    padding: 4rem 1.5rem;
  }
  .LCPMO-step-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2rem;
  }
  .LCPMO-mockup-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 480px) {
  .LCPMO-step-grid {
    grid-template-columns: 1fr;
    row-gap: 1.5rem;
  }
  .LCPMO-workflow-title {
    font-size: 28px;
    margin-bottom: 3rem;
  }
  .LCPMO-step-grid::before {
    display: block;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
  }
}

/* --- Measured Outcomes Section --- */
.LCPMO-outcomes-section {
  padding: 6rem 5%;
  display: flex;
  justify-content: center;
  background-color: rgba(2, 6, 23, 1);
}

.LCPMO-outcomes-container {
  width: 100%;
  max-width: 1360px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Section Title */
.LCPMO-outcomes-title {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 4rem;
  text-align: center;
}

/* 4-Column Grid */
.LCPMO-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
  margin-bottom: 4rem;
}

/* Individual Card */
.LCPMO-outcome-card {
  background-color: rgba(15, 23, 42, 1);
  border-radius: 16px;
  border: 1px solid rgba(30, 41, 59, 1);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease;
}

.LCPMO-outcome-card:hover {
  transform: translateY(-5px);
}

/* Icon Box */
.LCPMO-icon-box {
  width: 48px;
  height: 48px;
  background-color: rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

/* Card Content */
.LCPMO-card-heading {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  min-height: 54px;
}

.LCPMO-card-desc {
  color: rgba(148, 163, 184, 1);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1; /* Pushes the bottom section down */
}

/* Bottom Section with the Line */
.LCPMO-card-bottom {
  padding-top: 20px;
  border-top: 0.8px solid rgba(30, 41, 59, 1);
  min-height: 85px; /* Ensures lines align horizontally across all cards */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Card Bottom Section (What Enabled It) */
.LCPMO-enabled-by-label {
  display: block;
  color: rgba(71, 85, 105, 1);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.LCPMO-enabled-by-value {
  display: block;
  color: rgba(96, 165, 250, 1);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

/* Bottom Features Bar */
.LCPMO-features-bar {
  width: 100%;
  border-top: 1px solid rgba(30, 41, 59, 1);
  border-bottom: 1px solid rgba(30, 41, 59, 1);
  padding: 2rem 0;
  display: flex;
  justify-content: center;
}

.LCPMO-features-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1000px;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.LCPMO-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.LCPMO-feature-icon {
  width: 18px;
  height: 18px;
}

.LCPMO-feature-text {
  color: rgba(100, 116, 139, 1);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .LCPMO-outcomes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .LCPMO-features-list {
    justify-content: center;
    gap: 2rem 3rem;
  }
}

@media (max-width: 640px) {
  .LCPMO-outcomes-section {
    padding: 4rem 1.5rem;
  }
  .LCPMO-outcomes-grid {
    grid-template-columns: 1fr;
  }
  .LCPMO-features-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .LCPMO-features-bar {
    padding: 2rem 1rem;
  }
}

/* --- CTA Banner Section --- */
.LCPMO-cta-section {
  padding: 4rem 5% 2rem;
  display: flex;
  justify-content: center;
}

.LCPMO-cta-container {
  width: 100%;
  max-width: 1360px;
  background-color: rgba(37, 99, 235, 1);
  border-radius: 48px;
  padding: 3rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.LCPMO-cta-content {
  max-width: 600px;
}

.LCPMO-cta-title {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.LCPMO-cta-desc {
  color: rgba(219, 234, 254, 1);
  font-size: 16px;
  line-height: 1.5;
  max-width: 420px;
}

.LCPMO-cta-actions {
  display: flex;
  gap: 1rem;
  text-align: center;
  flex-shrink: 0;
}

.LCPMO-btn-primary {
  background-color: #ffffff;
  color: rgba(37, 99, 235, 1);
  font-weight: 600;
  font-size: 14px;
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.2s;
}

.LCPMO-btn-primary:hover {
  background-color: #f8fafc;
}

.LCPMO-btn-primary .LCPMO-icon {
  width: 16px;
  height: 16px;
}

.LCPMO-btn-secondary {
  background-color: rgba(29, 78, 216, 1);
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 1);
  text-decoration: none;
  transition: background-color 0.2s;
}

.LCPMO-btn-secondary:hover {
  background-color: #1e3a8a;
}

/* --- Explore Stories Section --- */
.LCPMO-stories-section {
  padding: 4rem 5% 6rem;
  display: flex;
  justify-content: center;
}

.LCPMO-stories-container {
  width: 100%;
  max-width: 1360px;
}

.LCPMO-stories-title {
  color: rgba(15, 23, 42, 1);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 2.5rem;
}

.LCPMO-stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.LCPMO-story-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.LCPMO-story-img-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
}

.LCPMO-story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.LCPMO-story-card:hover .LCPMO-story-img {
  transform: scale(1.03); /* Slight zoom on hover */
}

.LCPMO-story-tag {
  align-self: flex-start;
  background-color: rgba(241, 245, 249, 1);
  color: rgba(71, 85, 105, 1);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.LCPMO-story-heading {
  color: rgba(15, 23, 42, 1);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  flex-grow: 1; /* Pushes the link to the bottom */
}

.LCPMO-story-link {
  color: rgba(37, 99, 235, 1);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}

.LCPMO-story-link:hover {
  color: #1d4ed8;
}

.LCPMO-story-link .LCPMO-icon {
  width: 14px;
  height: 14px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1275px) {
  .LCPMO-cta-actions {
    flex-direction: column;
    gap: 0.6rem;
  }
}

@media (max-width: 1024px) {
  .LCPMO-stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .LCPMO-cta-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5rem;
    border-radius: 24px;
  }
  .LCPMO-cta-actions {
    flex-direction: row;
  }
}

@media (max-width: 640px) {
  .LCPMO-cta-section,
  .LCPMO-stories-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .LCPMO-cta-container {
    padding: 2rem 1.5rem;
  }
  .LCPMO-btn-primary,
  .LCPMO-btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .LCPMO-stories-grid {
    grid-template-columns: 1fr;
  }
  .LCPMO-cta-actions {
    width: 100%;
  }
}

@media (max-width: 540px) {
  .LCPMO-cta-actions {
    flex-direction: column;
  }
}
