/* ===============================================
   TRUSTED AI PAGE SPECIFIC STYLES
=============================================== */

/* --- Container Utility (Fix for responsiveness) --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.text-center {
  text-align: center;
}

/* --- Trusted Hero override --- */
.trusted-hero {
  min-height: 65vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #ffffff 0%, #f8fafc 100%);
  padding: 160px 100px 100px;
  text-align: center;
  position: relative;
  color: var(--text-primary);
  transition: all 0.4s ease;
  overflow: hidden;
}

.trusted-neural-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}

#trusted-neural-canvas {
  width: 100%;
  height: 100%;
  display: block;
}


:root {
  --trusted-section-bg: var(--bg-primary);
  --trusted-card-glass: rgba(45, 90, 67, 0.05);
  --trusted-card-border: var(--border-color);
  --trusted-grid-opacity: 0.05;
  --section-headline-size: 3.5rem;
  --section-headline-size-mobile: 2.5rem;
}

h1,
h2,
.section-title {
  color: var(--fg-900);
}

.hero-container-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 10;
  width: 100%;
}


.hero-content {
  max-width: 950px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.text-gradient,
.accent {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-content h1,
.risk-title h2,
.retrofit-title h2,
.assurance-title h2,
.risk-header h2,
.trusted-ai h2,
.section-title,
.kill-switch-section h2 {
  font-size: var(--section-headline-size);
  line-height: 1.2;
  margin-bottom: 24px;
  font-weight: 700;
  text-align: center;
}

.micro-headline {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: inline-block;
  font-weight: 600;
}

.hero-content h1 {
  font-size: var(--section-headline-size);
  line-height: 1.2;
  margin: 0 0 24px 0;
  font-weight: 700;
}

.hero-content .sub-headline,
.retrofit-subtitle,
.assurance-subtitle,
.risk-header p,
.trusted-ai .subtitle,
.kill-switch-section p:not(.ks-card p),
.section-pad p.subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Unified text styles */

/* --- Buttons --- */
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.hero-btns .btn.outline {
  background: var(--bg-glass-light);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(12px);
  color: var(--fg-700);
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-btns .btn.outline:hover {
  background: var(--fg-100);
  color: var(--fg-950);
  transform: translateY(-2px);
}

/* --- Hero Animations --- */
@keyframes trustedRevealUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes trustedRevealZoom {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-content h1 {
  animation: trustedRevealUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.hero-content .sub-headline {
  animation: trustedRevealUp 1s cubic-bezier(0.23, 1, 0.32, 1) 0.2s forwards;
  opacity: 0;
  /* Initial state for animation */
}

.hero-btns {
  animation: trustedRevealUp 1s cubic-bezier(0.23, 1, 0.32, 1) 0.4s forwards;
  opacity: 0;
  /* Initial state for animation */
}


@media (max-width: 768px) {

  .hero-content h1,
  .risk-title h2,
  .retrofit-title h2,
  .assurance-title h2,
  .risk-header h2,
  .trusted-ai h2,
  .section-title,
  .kill-switch-section h2 {
    font-size: var(--section-headline-size-mobile);
  }
}

/* --- Trusted Hero override --- */



































/* <!-- -------------------Enterprise-section----------------- --> */


.ai-risk-section {
  width: 100%;
  padding: 80px 0 40px;
  background: radial-gradient(1200px 600px at top center, var(--bg-secondary) 0%, var(--bg-primary) 60%);
  color: var(--text-secondary);
}

.ai-risk-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===============================
   TITLE
   =============================== */
.risk-title {
  text-align: center;
  margin-bottom: 60px;
}

/* Risk Section Titles Inherit Global Styles */

/* ===============================
   GRID
   =============================== */
.risk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

/* ===============================
   CARDS (BASE + ENTRY ANIMATION)
   =============================== */
.risk-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 28px;
  padding: 48px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
  transition: all 0.45s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.risk-card:nth-child(1) {
  animation-delay: 0.1s;
}

.risk-card:nth-child(2) {
  animation-delay: 0.25s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.risk-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--fg-800);
}

/* ===============================
   CARD HOVER — IMAGE STYLE
   =============================== */

/* LEFT (Blue) */
.risk-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  background: var(--bg-card);
  box-shadow: var(--shadow-strong);
}

/* glow layer */
/* Removed legacy glow overlays */

.risk-card li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 10px 10px 22px;
  margin-bottom: 18px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.risk-card li:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}

.risk-card li i {
  margin-top: 6px;
  font-size: 1rem;
  transition: transform 0.3s ease;
  color: var(--fg-400);
}

.risk-card li:hover {
  color: var(--text-primary);
  transform: translateX(6px);
  background: var(--bg-secondary);
}

.risk-card li:hover i {
  transform: scale(1.2);
}

/* ===============================
   KEY INSIGHT
   =============================== */
.risk-insight {
  margin: 110px auto 0;
  max-width: 1100px;
  padding: 46px 70px;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 600;
  background: var(--bg-secondary);
  border-left: 6px solid var(--primary-color);
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.4s;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}



.risk-insight p {
  color: var(--text-primary);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: inherit;
}


/* ===============================
   LIGHT MODE
   =============================== */
/* Removed legacy light theme overrides */

/* ===============================
   RESPONSIVE
   =============================== */
@media (max-width: 900px) {
  .risk-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .risk-title h2 {
    font-size: 2.4rem;
  }

  .risk-insight {
    padding: 32px 28px;
  }
}


/* <!-- -------------------Enterprise-section----------------- --> */















/* ===============================
   SECTION 2 — RETROFIT TRUST
   =============================== */

.ai-retrofit-section {
  width: 100%;
  padding: 50px 0;
  background: var(--bg-tertiary);
  color: var(--text-secondary);
}

/* ===============================
   TITLE
   =============================== */

.retrofit-title {
  text-align: center;
  margin-bottom: 50px;
}

/* Retrofit Section Titles Inherit Global Styles */

/* Retrofit subtitle inherits global styles */

/* ===============================
   GRID
   =============================== */

.retrofit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

/* ===============================
   CARDS
   =============================== */

.retrofit-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 28px;
  padding: 56px 48px 48px;
  transition: all 0.45s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.retrofit-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-strong);
}

.retrofit-card.danger:hover {
  border-color: rgba(239, 68, 68, 0.6);
}

/* ===============================
   TAG
   =============================== */

.retrofit-tag {
  position: absolute;
  top: 22px;
  left: 32px;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.retrofit-tag.warning {
  background: var(--badge-info-bg);
  color: var(--badge-info-text);
}

.retrofit-tag.danger {
  background: var(--badge-danger-bg);
  color: var(--badge-danger-text);
}

/* ===============================
   LIST + ICON HOVER
   =============================== */

.retrofit-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.retrofit-card li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
  transition: color 0.3s ease, transform 0.3s ease;
}

.retrofit-card li:last-child {
  border-bottom: none;
}

.retrofit-card li i {
  margin-top: 5px;
  font-size: 1rem;
  color: var(--fg-400);
  transition: transform 0.3s ease, color 0.3s ease;
}

.retrofit-card li:hover {
  color: var(--text-primary);
  transform: translateX(6px);
}

.retrofit-card li:hover i {
  transform: scale(1.2);
}




/* ===============================
   SECTION 2 — BREATHING SPACE FIX
   =============================== */

.ai-retrofit-section .container {
  max-width: 1300px;
  /* same as section 1 */
  margin: 0 auto;
  padding: 0 40px;
  /* LEFT–RIGHT SPACE */
}



/* cards thode aur*/
/* Secondary/Outline Style */
.btn-outline,
.btn.outline,
.btn.subscribe {
  background: var(--bg-glass-light);
  border: 1px solid var(--border-color);
  color: var(--text-primary) !important;
  backdrop-filter: blur(12px);
}

.btn-outline:hover,
.btn.outline:hover,
.btn.subscribe:hover {
  background: #ffffff !important;
  border-color: var(--primary-color);
  color: var(--primary-color) !important;
  box-shadow: 0 15px 35px rgba(45, 90, 67, 0.25);
  transform: translateY(-3px) scale(1.04);
}


/* ===============================
   ANCHOR STATEMENT
   =============================== */

.retrofit-anchor {
  margin: 50px auto 0;
  max-width: 1100px;
  padding: 46px 70px;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 600;
  background: var(--bg-secondary);
  border-left: 6px solid var(--primary-color);
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ===============================
   LIGHT MODE
   =============================== */

/* Removed legacy light theme overrides */

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 900px) {
  .retrofit-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .retrofit-title h2 {
    font-size: 2.4rem;
  }

  .retrofit-anchor {
    padding: 36px 28px;
  }
}




@media (max-width: 900px) {
  .ai-retrofit-section .container {
    padding: 0 24px;
  }

  .retrofit-grid {
    padding: 0;
  }
}




































































































































































/* --- Concentric Circles Visualization --- */
/* ===============================
   SECTION
   =============================== */
.ai-assurance-section {
  width: 100%;
  padding: 40px 0;
  background: var(--bg-primary);
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===============================
   TITLE
   =============================== */
.assurance-title {
  text-align: center;
  margin-bottom: 50px;
}

.assurance-title.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.assurance-title.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.assurance-diagram.reveal {
  opacity: 0;
  transform: scale(0.9);
  transition: all 1s cubic-bezier(0.23, 1, 0.32, 1) 0.2s;
}

.assurance-diagram.reveal.active {
  opacity: 1;
  transform: scale(1);
}

.assurance-note.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.4s;
}

.assurance-note.reveal.active {
  opacity: 1;
  transform: translateY(0);
}


.micro-head {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Assurance Section Titles Inherit Global Styles */

/* Assurance subtitle inherits global styles */

/* ===============================
   DIAGRAM
   =============================== */
.assurance-diagram {
  position: relative;
  width: 520px;
  height: 520px;
  margin: 0 auto 90px;
}

/* rings */
.ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(45, 90, 67, 0.15);
}

.ring-outer {
  inset: 0;
}

.ring-middle {
  inset: 70px;
}

.ring-inner {
  inset: 140px;
}

/* ===============================
   CORE
   =============================== */
.ring-core {
  position: absolute;
  inset: 200px;
  border-radius: 50%;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg-900);
  box-shadow: 0 0 40px var(--primary-shadow);
  border: 1px solid var(--border-color);
  animation: corePulse 4s infinite alternate ease-in-out;
  z-index: 2;
}

@keyframes corePulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 30px var(--primary-shadow);
  }

  100% {
    transform: scale(1.05);
    box-shadow: 0 0 60px var(--primary-shadow);
  }
}

.assurance-diagram::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}


/* ===============================
   TEXT ON RING
   =============================== */
.ring-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: 0 0;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  white-space: nowrap;
}

/* radius per ring */
.design {
  --r: 260px;
}

.monitor {
  --r: 190px;
}

.build {
  --r: 120px;
}

/* ===============================
   ROTATION
   =============================== */
.cw {
  animation: spin-cw 40s linear infinite;
}

.dw {
  animation: spin-dw 35s linear infinite;
}

.ccw {
  animation: spin-ccw 30s linear infinite;
}

@keyframes spin-cw {
  from {
    transform: rotate(0deg) translate(var(--r)) rotate(100deg);
  }

  to {
    transform: rotate(360deg) translate(var(--r)) rotate(90deg);
  }
}

@keyframes spin-dw {
  from {
    transform: rotate(0deg) translate(var(--r)) rotate(90deg);
  }

  to {
    transform: rotate(360deg) translate(var(--r)) rotate(90deg);
  }
}

@keyframes spin-ccw {
  from {
    transform: rotate(360deg) translate(var(--r)) rotate(90deg);
  }

  to {
    transform: rotate(0deg) translate(var(--r)) rotate(90deg);
  }
}

/* ===============================
   NOTE
   =============================== */
.assurance-note {
  margin: -40px auto 0;
  max-width: 850px;
  padding: 0;
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.7;
  font-weight: 600;
  color: var(--text-primary);
  background: transparent;
  box-shadow: none;
  border-left: none;
  border-radius: 0;
  transform: none;
  transition: opacity 0.4s ease;
}



/* Removed legacy light mode block */

/* ===============================
   RESPONSIVE
   =============================== */
@media (max-width: 900px) {
  .assurance-diagram {
    width: 380px;
    height: 380px;
  }

  .design {
    --r: 190px;
  }

  .monitor {
    --r: 135px;
  }

  .build {
    --r: 85px;
  }

  .assurance-title h2 {
    font-size: 2.4rem;
  }
}







/* ---------------------glass box---------------------- */






/* ---------------------glass box premium redesign---------------------- */

.glass-risk-section {
  padding: 120px 0;
  font-family: "Inter", system-ui, sans-serif;
  background-color: #fcfdfe;
  /* Ultra light airy background */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-tag {
  display: block;
  /* Changed from inline-block to allow auto margin */
  width: fit-content;
  padding: 8px 18px;
  background: rgba(59, 130, 246, 0.08);
  color: var(--primary-color);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 auto 24px;
  /* Centered with auto margin */
}

.risk-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
  /* Centered with auto margin */
}

.risk-header h2 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.risk-header h2 span.accent {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.risk-subtitle {
  color: var(--text-secondary);
  font-size: 1.3rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Premium Framed Image Section */
.risk-image-wrapper {
  width: 100%;
  max-width: 1300px;
  padding: 0 40px;
  position: relative;
}

.risk-image-frame {
  position: relative;
  border-radius: 40px;
  background: #ffffff;
  padding: 15px;
  /* Creates a white frame border */
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.05),
    0 1px 3px rgba(0, 0, 0, 0.05);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.risk-image-frame:hover {
  transform: translateY(-10px) scale(1.01);
}

.risk-image-box {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 500px;
  background-image: url('../images/glassbox2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 28px;
  position: relative;
}

.image-inner-shadow {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 28px;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.1);
  pointer-events: none;
  z-index: 2;
}

/* Floating Accents */
.accent-node {
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.accent-node::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary-color);
}

.node-1 {
  top: 15%;
  left: -20px;
}

.node-2 {
  bottom: 25%;
  right: -15px;
}

.node-3 {
  top: 40%;
  right: 10%;
}

@media (max-width: 900px) {
  .risk-header h2 {
    font-size: 2.8rem;
  }

  .risk-subtitle {
    font-size: 1.1rem;
  }

  .risk-image-box {
    min-height: 300px;
  }

  .accent-node {
    display: none;
  }
}

.highlight h3 {
  color: var(--primary-color);
}

.glass-risk-section .risk-card li {
  border-bottom: 1px solid var(--border-color);
}

.glass-risk-section .risk-card li:last-child {
  border-bottom: none;
}

.positioning p {
  color: var(--text-muted);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {

  .risk-grid {
    grid-template-columns: 1fr;
  }

  .risk-header h2 {
    font-size: 2.4rem;
  }
}






















/* ============================================================
   SECTION 5: TRUSTED AI FRAMEWORK (PILLARS)
============================================================ */
.trusted-ai {
  padding: 50px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.trusted-ai h2 {
  text-align: center;
  margin-bottom: 20px;
}

.trusted-ai .subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 1.15rem;
  color: var(--text-secondary);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
}

.pillar {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 40px 30px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.pillar:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.pillar-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.pillar .icon {
  width: 50px;
  height: 50px;
  background: #f8fafc;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: 1px solid #f1f5f9;
}

.pillar h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg-800);
  margin: 0;
}

.pillar .promise {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 30px;
  flex-grow: 1;
}

.pillar .badge {
  display: inline-block;
  padding: 6px 16px;
  background: #f1f5f9;
  color: #64748b;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  align-self: flex-start;
}

.pillar .icon i {
  color: var(--primary-color);
}

.framework-cta {
  text-align: center;
  margin-top: 80px;
}

.framework-cta .btn-demo {
  padding: 16px 40px;
  font-size: 1.1rem;
}


/* Pillar Animations */
.pillar.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.pillar.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.pillar:nth-child(1) {
  transition-delay: 0.1s;
}

.pillar:nth-child(2) {
  transition-delay: 0.2s;
}

.pillar:nth-child(3) {
  transition-delay: 0.3s;
}

.pillar:nth-child(4) {
  transition-delay: 0.4s;
}

@media (max-width: 1024px) {
  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pillars {
    grid-template-columns: 1fr;
  }
}

































































.kill-switch-section,
.operational-control-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 50px 0;
}

.kill-switch-content {
  position: relative;
  z-index: 2;
}

.kill-switch-content h2 {
  color: var(--text-primary);
  margin-bottom: 20px;
}

.kill-switch-content p:not(.ks-card p) {
  color: var(--text-secondary);
}

.kill-switch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

@media (max-width: 768px) {
  .kill-switch-grid {
    grid-template-columns: 1fr;
  }
}

.ks-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-align: center;
  box-shadow: var(--shadow-medium);
  position: relative;
  overflow: hidden;
}

.ks-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.ks-card:hover::after {
  transform: scaleX(1);
}

.ks-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1rem;
}

.ks-card h4 {
  color: var(--text-primary);
  display: inline-block;
  margin-bottom: 14px;
  font-size: 1.3rem;
  font-weight: 700;
}

.ks-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
    var(--primary-gradient) border-box;
  border: 1px solid transparent;
  box-shadow: 0 20px 50px rgba(16, 185, 129, 0.1), 0 10px 30px rgba(59, 130, 246, 0.1);
}

.operational-footer {
  margin-top: 60px;
  font-weight: 600;
  font-size: 1.25rem;
  opacity: 0.9;
  color: #000000;
  letter-spacing: 0.02em;
}

/* --- Section Padding & Background Utils --- */
.section-pad {
  padding: 50px 0;
}

/* Removed redundant theme overrides */

/* --- Compliance Section --- */
.compliance-standards-section {
  background: var(--bg-secondary);
}

/* Removed redundant industry card theme overrides */

/* --- Compliance List --- */
.compliance-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 50px;
}

.comp-badge {
  padding: 12px 28px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  font-weight: 600;
  color: var(--text-secondary);
  box-shadow: 0 4px 12px var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.comp-badge:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.comp-badge i {
  color: var(--primary-color);
}

/* --- Industries (Who this is for) --- */
.industry-verticals-section {
  background: var(--bg-tertiary);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 800px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }
}

.industry-card {
  background: var(--bg-card);
  padding: 30px 25px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  transition: 0.3s;
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.industry-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px var(--shadow-soft);
}

.industry-title {
  font-size: 1.5rem;
  margin-bottom: 16px;
  font-weight: 700;
  color: var(--fg-800);
}

.industry-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.industry-link {
  padding: 12px 28px;
  border-radius: 100px;
  background: var(--primary-gradient);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  width: fit-content;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 20px var(--primary-shadow);
}

.industry-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px var(--primary-shadow);
  gap: 14px;
}

.industry-link i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.industry-link:hover i {
  transform: translateX(3px);
}

/* --- Enterprise AI Risk Visual Container --- */
.risk-visual-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.risk-visual-image {
  width: 100%;
  height: auto;
  border-radius: 28px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}