/* ========================================
   VOTEECAL CIVIC THEME - DENSE & RICH
   ======================================== */
:root {
  --primary: #5b21b6; /* Deep Purple */
  --primary-light: #7c3aed;
  --primary-dark: #4c1d95;

  --accent: #0d9488; /* Teal */
  --accent-glow: #2dd4bf;

  --bg-paper: #f8fafc;
  --bg-white: #ffffff;
  --bg-slate: #0f172a;
  --bg-dark: #1e293b;

  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-inv: #f1f5f9;

  --font-heading: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;

  --glass-panel: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.5);

  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.1);

  --container-max: 1280px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-paper);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}
a {
  text-decoration: none;
  transition: all 0.2s ease;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.fluid-container {
  max-width: 1400px;
}
.section-padding {
  padding: 100px 0;
}
.bg-paper {
  background-color: var(--bg-paper);
}
.bg-white {
  background-color: var(--bg-white);
}
.bg-dark {
  background-color: var(--bg-dark);
}
.bg-slate {
  background-color: var(--bg-slate);
}
.text-white {
  color: var(--text-inv);
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-paper);
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1; /* Slate-300 for subtle look */
  border-radius: 5px;
  border: 2px solid var(--bg-paper);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img {
  height: 40px;
  width: auto;
}
.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--bg-slate);
  display: flex;
  align-items: center;
  gap: 8px;
}
.badge-mini {
  font-size: 0.6rem;
  background: var(--bg-slate);
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 1px;
}
.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 0;
}
.nav-links li a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #475569;
  padding: 10px 16px;
  border-radius: 8px;
  transition: all 0.25s ease;
}
.nav-links li a:hover {
  color: #0f172a;
  background: rgba(15, 23, 42, 0.06);
}
.nav-links li a.active {
  color: white !important;
  background: #0f172a !important;
  font-weight: 600;
}
.nav-links .btn-research-pilot {
  background: #57196e;
  color: #ffffff !important;
  border: 1px solid #57196e;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.25s ease;
}
.nav-links .btn-research-pilot:hover {
  background: #f8fafc;
  border-color: #94a3b8;
  color: #1e293b !important;
}
.menu-toggle {
  display: none;
}
.hero-manifesto {
  position: relative;
  padding-top: 160px;
  padding-bottom: 120px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.7)),
    url("../assets/images/hero_bg_new.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax-like effect */
}
@keyframes bg-pan {
  0% {
    background-position: 50% 50%;
  }
  50% {
    background-position: 55% 55%;
  }
  100% {
    background-position: 50% 50%;
  }
}
.hero-manifesto {
  animation: bg-pan 30s ease-in-out infinite;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* 60/40 Split */
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-text h1.hero-headline {
  font-size: 3.75rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--bg-white);
  letter-spacing: -0.03em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.hero-subheading {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--accent-glow);
  margin-bottom: 24px;
  line-height: 1.5;
  max-width: 95%;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.hero-supporting-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  line-height: 1.7;
  max-width: 90%;
  border-left: 3px solid var(--accent);
  padding-left: 20px;
}
.hero-graphic {
  position: relative;
  padding: 20px;
  display: flex;
  justify-content: center;
}
@keyframes float-hero {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
.graphic-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  animation: float-hero 6s ease-in-out infinite;
}
.graphic-card img {
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  width: 100%;
  height: auto;
}
.graphic-caption {
  margin-top: 20px;
  padding: 16px;
  background: rgba(15, 23, 42, 0.6);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.graphic-caption strong {
  font-size: 1rem;
  color: var(--text-inv);
  display: block;
  margin-bottom: 4px;
}
.graphic-caption span {
  font-size: 0.85rem;
  color: var(--text-muted);
  color: rgba(255, 255, 255, 0.7);
}
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.delay-1 {
  animation-delay: 0.2s;
}
.delay-2 {
  animation-delay: 0.4s;
}
.delay-3 {
  animation-delay: 0.6s;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes glow-pulse {
  0% {
    text-shadow: 0 0 5px rgba(45, 212, 191, 0.5);
  }
  50% {
    text-shadow: 0 0 20px rgba(45, 212, 191, 0.8);
  }
  100% {
    text-shadow: 0 0 5px rgba(45, 212, 191, 0.5);
  }
}
.text-accent-glow {
  color: var(--accent-glow);
  animation: glow-pulse 3s infinite;
}
.gradient-text {
  background: linear-gradient(135deg, #ffb733, #f9f8f1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bg-paper {
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  overflow: hidden;
}
.bg-paper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
    circle at 2px 2px,
    rgba(91, 33, 182, 0.04) 1px,
    transparent 0
  );
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}
.bg-paper::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(13, 148, 136, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  animation: float-soft 8s ease-in-out infinite;
}
@keyframes float-soft {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}
.bg-paper > .container {
  position: relative;
  z-index: 1;
}
#about .section-heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--bg-slate);
  line-height: 1.3;
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
#about .neutral-explanation {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.feedback-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(91, 33, 182, 0.1);
  border-radius: 16px;
  padding: 32px 28px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.feedback-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.feedback-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(91, 33, 182, 0.12);
  border-color: rgba(91, 33, 182, 0.2);
}
.feedback-card:hover::before {
  transform: scaleX(1);
}
.feedback-card .card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
  font-size: 1.4rem;
  box-shadow: 0 8px 20px rgba(91, 33, 182, 0.25);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.feedback-card:hover .card-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 30px rgba(91, 33, 182, 0.35);
}
.feedback-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bg-slate);
  margin-bottom: 12px;
}
.feedback-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.closing-statement-box {
  background: linear-gradient(
    135deg,
    rgba(91, 33, 182, 0.05) 0%,
    rgba(13, 148, 136, 0.05) 100%
  );
  border: 1px solid rgba(91, 33, 182, 0.1);
  border-radius: 20px;
  padding: 40px;
  position: relative;
}
.closing-statement-box::before {
  content: "💡";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  background: white;
  padding: 5px 15px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.closing-statement {
  font-size: 1.2rem;
  color: var(--bg-slate);
  line-height: 1.6;
  margin: 0;
}
.closing-statement .fw-bold {
  color: var(--primary);
  position: relative;
}
.transition-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.cue-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  opacity: 0.9;
}
.arrow-down-simple {
  width: 30px;
  height: 30px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  position: relative;
  animation: bounce-down 2s ease-in-out infinite;
}
.arrow-down-simple::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: translate(-50%, -60%) rotate(45deg);
}
@keyframes bounce-down {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}
.text-primary-dark {
  color: var(--primary-dark) !important;
}
.trust-grid {
  margin-bottom: 40px;
}
.trust-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  height: 100%;
  border: 1px solid rgba(91, 33, 182, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.trust-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  border-radius: 0 4px 4px 0;
  transition: height 0.4s ease;
}
.trust-card.citizen-side::before {
  background: linear-gradient(
    180deg,
    var(--accent) 0%,
    var(--accent-glow) 100%
  );
}
.trust-card.leader-side::before {
  background: linear-gradient(
    180deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
}
.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(91, 33, 182, 0.1);
  border-color: rgba(91, 33, 182, 0.15);
}
.trust-card:hover::before {
  height: 100%;
}
.trust-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bg-slate);
  margin-bottom: 16px;
}
.trust-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.trust-shift-box {
  background: linear-gradient(
    135deg,
    rgba(91, 33, 182, 0.04) 0%,
    rgba(13, 148, 136, 0.04) 100%
  );
  border: 1px solid rgba(91, 33, 182, 0.1);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.shift-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 600;
}
.shift-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bg-slate);
  display: flex;
  align-items: center;
}
.shift-value i {
  color: var(--accent);
}
.converging-insight {
  text-align: center;
  padding: 40px;
  background: linear-gradient(
    135deg,
    rgba(91, 33, 182, 0.03) 0%,
    rgba(13, 148, 136, 0.03) 100%
  );
  border: 1px solid rgba(91, 33, 182, 0.08);
  border-radius: 20px;
  position: relative;
}
.converging-insight::before {
  content: "✨";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  background: white;
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.converging-insight p {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.trust-visual-card {
  padding: 20px;
  background: white;
  border: 1px solid rgba(91, 33, 182, 0.08);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
.trust-visual-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(91, 33, 182, 0.1);
}
.trust-visual-card img {
  border-radius: 16px;
}
.text-navy {
  color: var(--bg-slate) !important;
}
.about-heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--bg-slate);
  line-height: 1.3;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.about-block {
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.8);
  border-left: 4px solid var(--primary);
  border-radius: 0 12px 12px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}
.about-lead {
  font-size: 1.1rem;
  color: var(--bg-slate);
  line-height: 1.7;
  margin-bottom: 8px;
}
.about-lead strong {
  color: var(--primary);
}
.about-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}
.about-roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.about-role-item {
  background: white;
  padding: 24px 20px;
  border-radius: 16px;
  border: 1px solid rgba(91, 33, 182, 0.08);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.about-role-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.about-role-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(91, 33, 182, 0.1);
  border-color: rgba(91, 33, 182, 0.15);
}
.about-role-item:hover::before {
  transform: scaleX(1);
}
.about-role-item h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bg-slate);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.about-role-item h5 i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}
.about-role-item:hover h5 i {
  transform: scale(1.2);
}
.about-role-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.about-anchor {
  padding: 32px 40px;
  background: linear-gradient(
    135deg,
    rgba(91, 33, 182, 0.05) 0%,
    rgba(13, 148, 136, 0.05) 100%
  );
  border: 1px solid rgba(91, 33, 182, 0.1);
  border-radius: 20px;
  position: relative;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.about-anchor::before {
  content: "🎯";
  position: absolute;
  top: -12px;
  left: 24px;
  font-size: 1.2rem;
  background: white;
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.about-anchor p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 0;
  line-height: 1.6;
}
.about-visual-container {
  background: white;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(91, 33, 182, 0.08);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
}
.about-visual-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(91, 33, 182, 0.12);
}
.about-visual-image {
  width: 100%;
  border-radius: 16px;
  display: block;
}
.about-visual-caption {
  margin-top: 16px;
  padding: 12px 16px;
  background: linear-gradient(
    135deg,
    rgba(91, 33, 182, 0.04) 0%,
    rgba(13, 148, 136, 0.04) 100%
  );
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
}
.about-visual-caption i {
  color: var(--accent);
}
@media (max-width: 768px) {
  .about-roles-grid {
    grid-template-columns: 1fr;
  }
}
.monospaced-label {
  font-family: monospace;
  color: var(--accent-glow);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 12px;
}
@keyframes flowLine {
  0% {
    left: 0;
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
.pillar-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}
@keyframes circuitPulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-20px, 20px);
  }
}
.signals-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  font-weight: 400;
}
#cadre-system.bg-slate {
  position: relative;
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  overflow: hidden;
}
#cadre-system.bg-slate::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(91, 33, 182, 0.03) 0,
    rgba(91, 33, 182, 0.03) 1px,
    transparent 1px,
    transparent 20px
  );
  pointer-events: none;
  z-index: 0;
}
#cadre-system > .container {
  position: relative;
  z-index: 1;
}
@keyframes rotateGlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
#problem.bg-slate {
  position: relative;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  overflow: hidden;
}
#problem.bg-slate::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(45, 212, 191, 0.08) 1px,
    transparent 0
  );
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}
#problem.bg-slate::after {
  content: "";
  position: absolute;
  top: 20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(91, 33, 182, 0.15) 0%,
    transparent 60%
  );
  border-radius: 50%;
  pointer-events: none;
  animation: float-soft 10s ease-in-out infinite;
}
#problem > .container {
  position: relative;
  z-index: 1;
}
#problem .section-heading {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(135deg, #05004e 0%, rgb(77 0 116 / 80%) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logic-intro {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}
.text-muted-light {
  color: rgba(255, 255, 255, 0.6) !important;
}
.logic-shift-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 20px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}
.logic-shift-list > span {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.logic-shift-list > span:last-child {
  border-bottom: none;
}
.logic-stages-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.logic-connector-line {
  position: absolute;
  left: 40px;
  top: 40px;
  bottom: 40px;
  width: 3px;
  background: linear-gradient(
    180deg,
    rgba(91, 33, 182, 0.4) 0%,
    rgba(13, 148, 136, 0.6) 50%,
    rgba(45, 212, 191, 0.4) 100%
  );
  border-radius: 2px;
  z-index: 0;
}
.logic-connector-line::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent-glow);
  border-radius: 50%;
  left: -2.5px;
  top: 0;
  box-shadow: 0 0 10px var(--accent-glow);
  animation: flowDown 3s ease-in-out infinite;
}
@keyframes flowDown {
  0% {
    top: 0;
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
.logic-stage-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.logic-stage-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(45, 212, 191, 0.3);
  transform: translateX(8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.stage-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  box-shadow: 0 8px 25px rgba(91, 33, 182, 0.35);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.logic-stage-card:hover .stage-number {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 35px rgba(13, 148, 136, 0.4);
}
.stage-content {
  flex: 1;
}
.stage-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}
.stage-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}
.anchor-sentence {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}
/* Modern Footer Dark */
.modern-footer-dark {
  background: #020617; /* Very dark slate */
  color: #94a3b8;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--font-heading);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo .logo-img {
  height: 36px;
  opacity: 0.9;
  margin-bottom: 24px;
}

.footer-mission {
  font-size: 1rem;
  line-height: 1.6;
  color: #cbd5e1;
  max-width: 320px;
  margin-bottom: 30px;
  font-weight: 300;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: #10b981; /* Emerald green for active status */
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}

.badge-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: #94a3b8;
}

.footer-heading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #64748b;
  font-weight: 700;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  position: relative;
  display: inline-block;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: #cbd5e1;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social a:hover {
  background: #fff;
  color: #020617;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.9rem;
}

.footer-bottom-left p {
  margin: 0;
  color: #64748b;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-bottom-right a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-right a:hover {
  color: #fff;
}

.separator {
  color: #334155;
}

.location-text {
  color: #cbd5e1;
  font-weight: 500;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand-col {
    grid-column: span 2;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-brand-col {
    grid-column: span 1;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom-right {
    justify-content: center;
    flex-wrap: wrap;
  }
}
/* End Footer Styles */

.dense-footer {
  background: var(--bg-slate);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.branding img {
  opacity: 0.8;
  margin-bottom: 16px;
  height: 32px;
}
.branding p {
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.branding small {
  font-size: 0.75rem;
  opacity: 0.5;
}
.footer-col h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 1rem;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}
.footer-col ul a:hover {
  color: var(--accent);
}
.social-list {
  display: flex;
  gap: 16px;
}
.social-list a {
  color: white;
  font-size: 1.2rem;
}
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  @keyframes flowLine {
    0% {
      top: 0;
      opacity: 1;
    }
    100% {
      top: 100%;
      opacity: 0;
    }
  }
  .footer-row {
    grid-template-columns: 1fr 1fr;
  }
  .menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
  }
}
.text-center {
  text-align: center;
}
.mt-4 {
  margin-top: 32px;
}
.mt-5 {
  margin-top: 48px;
}
.mb-4 {
  margin-bottom: 32px !important;
}
.text-white {
  color: white !important;
}
.text-muted-light {
  color: rgba(255, 255, 255, 0.6);
}
:root {
  --saffron: #ff9933;
  --india-green: #138808;
  --navy-blue: #000080;
}
.text-navy {
  color: var(--navy-blue) !important;
}
.section-heading {
  font-size: 2.5rem;
  color: var(--bg-slate);
  line-height: 1.2;
}
@keyframes spinChakra {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.step-number {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
}
.cadre-section {
  background: #f1f5f9;
  position: relative;
  overflow: hidden;
}
.cadre-heading {
  font-size: 2.2rem;
  color: var(--primary-dark);
  margin-bottom: 24px;
}
.ai-section {
  background: url("../assets/images/ai-bg.png") no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 100px 0;
  color: white;
}
.ai-feature-list {
  list-style: none;
}
.ai-feature-list li {
  margin-bottom: 16px;
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}
.ai-feature-list li i {
  color: var(--accent-glow);
  margin-top: 4px;
}
.ai-feature-list li strong {
  color: white;
  display: block;
  margin-bottom: 2px;
}
.nav-links li a.active {
  color: #3b82f6; /* Accent Blue */
  font-weight: 600;
}
.nav-links li a.active::after {
  width: 100%;
  background: #3b82f6;
}
.navbar {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 2px 4px -1px rgba(0, 0, 0, 0.03);
  padding: 15px 0;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 0;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.nav-links li a {
  position: relative;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  color: #475569;
}
.nav-links li a:hover {
  color: #0f172a;
  background: rgba(0, 0, 0, 0.05);
}
.nav-links li a.active {
  color: white !important;
  background: #0f172a; /* Dark Slate */
  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.2);
}
.nav-links li a.active::after {
  display: none; /* Remove old underline */
}
.navbar {
  position: fixed !important;
  top: 0 !important;
  width: 100% !important;
  z-index: 1000 !important;
  padding: 12px 0 !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  background: rgba(255, 255, 255, 0.92) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.navbar.scrolled {
  background: rgb(255 255 255 / 90%) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}
.nav-links {
  display: flex !important;
  gap: 4px !important;
  align-items: center !important;
  margin-bottom: 0 !important;
}
.nav-links li a {
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  color: #475569 !important;
  padding: 9px 18px !important;
  border-radius: 25px !important;
  transition: all 0.25s ease !important;
  display: inline-block !important;
  position: relative !important;
  text-decoration: none !important;
}
.nav-links li a:hover {
  color: #1e293b !important;
  background: rgba(15, 23, 42, 0.06) !important;
  transform: translateY(-1px) !important;
}
.nav-links li a.active {
  color: #4f46e5 !important; /* Indigo 600 */
  background: rgba(79, 70, 229, 0.08) !important;
  font-weight: 600 !important;
  box-shadow: none !important;
}
.nav-links li a.active {
  transform: scale(1.02);
}
@media (max-width: 992px) {
  /* 1. Global Spacing & Typography */
  .section-padding {
    padding: 60px 0;
  }
  h1 {
    font-size: 2.5rem !important;
  }
  h2 {
    font-size: 2rem !important;
  }
  /* 2. Navbar - Mobile Drawer */
  .menu-toggle {
    display: block;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--bg-slate);
    z-index: 1100;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%; /* Drawer width */
    max-width: 300px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px !important;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1050;
    padding: 40px 20px !important;
    display: flex !important; /* Override display:none */
    backdrop-filter: blur(10px);
  }
  .nav-links.active {
    right: 0;
  }
  .nav-links li a {
    font-size: 1.1rem !important;
    padding: 12px 24px !important;
    width: 100%;
    text-align: center;
    background: transparent !important;
    color: var(--bg-slate) !important;
  }
  .nav-links li a:hover,
  .nav-links li a.active {
    background: rgba(15, 23, 42, 0.05) !important;
    color: var(--primary) !important;
    transform: none !important;
  }
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    backdrop-filter: blur(4px);
  }
  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
  }
  .hero-manifesto {
    padding-top: 120px;
    text-align: center;
    min-height: auto;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 576px) {
  h1 {
    font-size: 2rem !important;
  }
  h2 {
    font-size: 1.75rem !important;
  }
  .logo-text {
    font-size: 1rem;
  }
  .logo img {
    height: 32px;
  }
  .footer-row {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .footer-col {
    align-items: center;
  }
  .social-list {
    justify-content: center;
  }
}
.neutral-explanation {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.feedback-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  height: 100%;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}
.feedback-card:hover {
  border-color: #cbd5e1;
  transform: translateY(-2px);
}
.card-icon {
  font-size: 2rem;
  color: #64748b; /* Neutral Slate */
  margin-bottom: 20px;
  opacity: 0.8;
}
.feedback-card h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--bg-slate);
  font-weight: 600;
}
.feedback-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.closing-statement-box {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #e2e8f0;
}
.closing-statement {
  font-size: 1.4rem;
  color: var(--bg-slate);
  font-family: var(--font-heading);
  font-weight: 400;
}
.transition-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.7;
}
.cue-text {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--primary);
  text-transform: uppercase;
}
.arrow-down-simple {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid var(--primary);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}
.logic-intro {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
}
.logic-shift-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
}
.text-accent-glow {
  color: var(--accent-glow);
  text-shadow: 0 0 10px rgba(45, 212, 191, 0.3);
}
.logic-stages-container {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.logic-connector-line {
  position: absolute;
  left: 56px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 0;
}
.logic-stage-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 32px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  z-index: 1;
  backdrop-filter: blur(5px);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}
.logic-stage-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.08);
}
.stage-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--bg-slate);
  border: 1px solid var(--accent);
  color: var(--accent-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  box-shadow: 0 0 15px rgba(13, 148, 136, 0.2);
}
.stage-content h4 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.stage-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}
.anchor-sentence {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  font-family: var(--font-heading);
  max-width: 900px;
  margin: 0 auto;
}
.trust-grid {
  position: relative;
  padding: 20px 0;
}
@media (min-width: 768px) {
  .trust-grid::before {
    content: "";
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 50%;
    width: 1px;
    background: rgba(0, 0, 0, 0.05);
    transform: translateX(-50%);
  }
}
.trust-card {
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  text-align: center;
}
.trust-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--bg-slate);
  margin-bottom: 16px;
}
.trust-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}
.trust-shift-box {
  background: white;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  display: inline-block;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}
.shift-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #94a3b8;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.shift-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-dark);
}
.converging-insight {
  margin-top: 80px;
  text-align: center;
  font-size: 1.5rem;
  color: var(--text-main);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-heading);
  font-weight: 300;
}
.participation-intro-list {
  display: inline-block;
  text-align: left;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
}
.participation-card-dark {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
  backdrop-filter: blur(5px);
}
.participation-card-dark:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}
.card-header-role-dark {
  text-align: center;
  margin-bottom: 20px;
}
.card-icon-large {
  font-size: 2.5rem;
  color: var(--accent-glow);
  margin-bottom: 15px;
  display: block;
}
.card-header-role-dark h3 {
  font-size: 1.4rem;
  color: white;
  margin-bottom: 0;
  font-weight: 600;
}
.role-intro-dark {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-bottom: 25px;
  text-align: center;
}
.card-body-role-dark {
  flex-grow: 1;
  margin-bottom: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}
.action-title-dark {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--accent-glow);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  font-weight: 600;
}
.action-list-dark {
  list-style: none;
  padding: 0;
  margin: 0;
}
.action-list-dark li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}
.action-list-dark li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-glow);
}
.card-footer-role-dark {
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.15);
  padding: 15px;
  border-radius: 8px;
  text-align: center;
}
.verification-foundation-dark {
  background: rgba(0, 0, 0, 0.2);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.frame5-anchor-dark {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.6;
}
.about-heading {
  font-size: 2rem;
  color: var(--bg-slate);
  font-weight: 600;
  line-height: 1.3;
}
.about-block {
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
}
.about-lead {
  font-size: 1.1rem;
  color: var(--bg-slate);
  line-height: 1.6;
  margin-bottom: 10px;
}
.about-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}
.about-roles-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-role-item {
  padding: 20px;
  background: white;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}
.about-role-item h5 {
  font-size: 1rem;
  color: var(--bg-slate);
  margin-bottom: 8px;
  font-weight: 600;
}
.about-role-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}
.about-anchor {
  padding: 20px;
  background: #f1f5f9;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}
.about-anchor p {
  font-size: 1.1rem;
  color: var(--bg-slate);
  font-weight: 500;
  margin-bottom: 0;
  font-family: var(--font-heading);
}
.about-visual-container {
  background: white;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
.about-visual-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}
.about-visual-caption {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}
.structure-section {
  position: relative;
  background: linear-gradient(180deg, #e2e8f0 0%, #94a3b8 60%, #1e293b 100%);
  overflow: hidden;
  color: #1e293b;
}
.structure-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.structure-floating-cubes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.cube {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
  animation: floatCube 15s infinite ease-in-out;
}
.cube-1 {
  width: 100px;
  height: 100px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}
.cube-2 {
  width: 150px;
  height: 150px;
  top: 40%;
  right: -50px;
  animation-delay: -5s;
}
.cube-3 {
  width: 80px;
  height: 80px;
  bottom: 10%;
  left: 20%;
  animation-delay: -10s;
}
@keyframes floatCube {
  0%,
  100% {
    transform: translateY(0) rotate(45deg);
  }
  50% {
    transform: translateY(-30px) rotate(50deg);
  }
}
.structure-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: #334155;
  border-radius: 6px;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.structure-badge i {
  color: #60a5fa;
}
.structure-heading {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
}
.structure-subtitle-modern {
  font-size: 1.2rem;
  color: #475569;
  font-family: var(--font-heading);
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}
.structure-intro-modern {
  display: flex;
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
}
.intro-content {
  padding: 40px;
  flex: 1;
}
.intro-content p {
  font-size: 1.1rem;
  color: #334155;
  line-height: 1.8;
  margin-bottom: 15px;
}
.structure-highlight {
  color: var(--primary);
  background: rgba(37, 99, 235, 0.1);
  padding: 0 5px;
  border-radius: 4px;
}
.intro-decoration {
  width: 10px;
  background: linear-gradient(180deg, #ab3bf6 0%, #7c1eaf 100%);
}
.structure-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .structure-pillars-grid {
    grid-template-columns: 1fr;
  }
}
.pillar-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
  border-color: #bfdbfe;
}
.pillar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.pillar-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: #e2e8f0;
  font-family: var(--font-heading);
  line-height: 1;
}
.pillar-card:hover .pillar-num {
  color: #dbeafe;
  transition: color 0.3s;
}
.pillar-icon {
  width: 50px;
  height: 50px;
  background: #eff6ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
}
.pillar-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
}
.pillar-line {
  width: 40px;
  height: 4px;
  background: #8f3bf6;
  border-radius: 2px;
  margin-bottom: 20px;
}
.pillar-list-modern {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pillar-list-modern li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.5;
}
.pillar-list-modern li i {
  color: var(--primary);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.structure-outcome-modern {
  background: rgba(
    15,
    23,
    42,
    0.4
  ); /* Dark background for white text section */
  backdrop-filter: blur(10px);
  padding: 35px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.outcome-heading {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #94a3b8;
  letter-spacing: 2px;
  margin-bottom: 25px;
}
.outcome-grid-modern {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.outcome-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-weight: 500;
  font-size: 0.95rem;
}
.outcome-box i {
  color: #8460fa;
}
.outcome-connector {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #94a3b8;
  font-size: 0.8rem;
}
@media (max-width: 768px) {
  .outcome-grid-modern {
    flex-direction: column;
  }
  .outcome-connector {
    transform: rotate(90deg);
  }
}
.structure-anchor-modern {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 20px;
}
.structure-anchor-modern p {
  font-size: 1.4rem;
  color: white;
  font-family: var(--font-heading);
  font-weight: 300;
  line-height: 1.6;
}
.highlight-text {
  color: #a860fa;
  font-weight: 600;
  position: relative;
  display: inline-block;
}
.highlight-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #af60fa;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
  animation: underlineSimple 3s infinite alternate;
}
@keyframes underlineSimple {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  50%,
  100% {
    transform: scaleX(1);
    transform-origin: left;
  }
}
.signals-section {
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
  overflow: hidden;
}
.signals-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='hexagons' fill='%235b21b6' fill-opacity='0.08' fill-rule='nonzero'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
  animation: patternFloat 30s ease-in-out infinite;
}
@keyframes patternFloat {
  0%,
  100% {
    background-position: 0 0;
  }
  50% {
    background-position: 14px 24px;
  }
}
.signals-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  animation: orbPulseLight 8s ease-in-out infinite;
}
.signals-orb-1 {
  width: 450px;
  height: 450px;
  background: radial-gradient(
    circle,
    rgba(91, 33, 182, 0.12) 0%,
    transparent 70%
  );
  top: -150px;
  right: -150px;
  animation-delay: 0s;
}
.signals-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(167, 139, 250, 0.15) 0%,
    transparent 70%
  );
  bottom: -150px;
  left: -150px;
  animation-delay: 4s;
}
@keyframes orbPulseLight {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.15);
  }
}
.signals-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  padding: 8px 20px;
  background: rgba(91, 33, 182, 0.08);
  border: 1px solid rgba(91, 33, 182, 0.2);
  border-radius: 30px;
  margin-bottom: 20px;
}
.signals-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--bg-slate);
  line-height: 1.3;
  background: linear-gradient(135deg, #0f172a 0%, #5b21b6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.signals-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 300;
}
.signals-intro-card {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(91, 33, 182, 0.1);
  box-shadow:
    0 8px 32px rgba(91, 33, 182, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  position: relative;
}
.signals-intro-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  border-radius: 0 0 3px 3px;
}
.signals-intro-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(91, 33, 182, 0.15) 0%,
    rgba(167, 139, 250, 0.1) 100%
  );
  border-radius: 50%;
  border: 1px solid rgba(91, 33, 182, 0.2);
  box-shadow: 0 4px 20px rgba(91, 33, 182, 0.1);
}
.signals-intro-icon i {
  font-size: 1.8rem;
  color: var(--primary);
}
.signals-intro-card p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 15px;
}
.signals-intro-card p strong {
  color: var(--primary);
}
.signal-flow-modern {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  padding: 20px 0;
}
.signal-flow-track {
  display: none;
}
.signal-step-modern {
  flex: 1;
  min-width: 220px;
  max-width: 260px;
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(91, 33, 182, 0.1);
  border-radius: 16px;
  position: relative;
  margin: 0 -1px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.signal-step-modern:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(91, 33, 182, 0.25);
  transform: translateY(-8px);
  box-shadow:
    0 20px 40px rgba(91, 33, 182, 0.12),
    0 8px 16px rgba(0, 0, 0, 0.06);
}
.step-number {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #7021b6 0%, #b43aed 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 4px 15px rgba(91, 33, 182, 0.35);
  border: 3px solid #f8fafc;
}
.step-number-final {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.35);
}
.step-content {
  padding-top: 10px;
}
.step-marker-modern {
  display: inline-block;
  padding: 8px 22px;
  background: rgba(91, 33, 182, 0.06);
  border: 1px solid rgba(91, 33, 182, 0.15);
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}
.signal-step-modern:hover .step-marker-modern {
  background: rgba(91, 33, 182, 0.12);
  border-color: rgba(91, 33, 182, 0.3);
}
.step-final-modern .step-marker-modern {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.25);
  color: #16a34a;
}
.signal-step-modern p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.step-connector-line {
  position: absolute;
  right: -20px;
  top: 50%;
  width: 40px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(91, 33, 182, 0.4) 0%,
    rgba(91, 33, 182, 0.1) 100%
  );
  z-index: 1;
}
.step-connector-line::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.5;
  box-shadow: 0 0 8px rgba(91, 33, 182, 0.3);
}
.step-final-modern .step-connector-line {
  display: none;
}
@media (max-width: 992px) {
  .signal-flow-modern {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .signal-step-modern {
    max-width: 100%;
    width: 100%;
    margin: 0;
  }
  .step-connector-line {
    display: none;
  }
  .signal-step-modern::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: linear-gradient(
      180deg,
      rgba(91, 33, 182, 0.4) 0%,
      transparent 100%
    );
  }
  .step-final-modern::after {
    display: none;
  }
}
.signals-distinction-modern {
  max-width: 950px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(91, 33, 182, 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}
.distinction-title-modern {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 30px;
  text-align: center;
  font-weight: 500;
}
.distinction-title-modern i {
  color: var(--primary);
}
.distinction-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.distinction-item-modern {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(91, 33, 182, 0.08);
  border-radius: 14px;
  font-size: 0.9rem;
  color: var(--bg-slate);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.distinction-item-modern:hover {
  background: white;
  border-color: rgba(91, 33, 182, 0.2);
  transform: translateX(5px);
  box-shadow: 0 8px 24px rgba(91, 33, 182, 0.1);
}
.distinction-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(91, 33, 182, 0.12) 0%,
    rgba(167, 139, 250, 0.08) 100%
  );
  border-radius: 10px;
  border: 1px solid rgba(91, 33, 182, 0.15);
}
.distinction-icon i {
  color: var(--primary);
  font-size: 1rem;
}
.signals-outcome-modern {
  text-align: center;
}
.outcome-title-modern {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 30px;
  font-weight: 500;
}
.outcome-card-modern {
  padding: 35px 25px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(91, 33, 182, 0.08);
  border-radius: 18px;
  height: 100%;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.outcome-card-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.outcome-card-modern:hover {
  background: white;
  border-color: rgba(91, 33, 182, 0.2);
  transform: translateY(-8px);
  box-shadow:
    0 25px 50px rgba(91, 33, 182, 0.12),
    0 10px 20px rgba(0, 0, 0, 0.06);
}
.outcome-card-modern:hover::before {
  opacity: 1;
}
.outcome-icon-wrapper {
  width: 65px;
  height: 65px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(91, 33, 182, 0.12) 0%,
    rgba(167, 139, 250, 0.08) 100%
  );
  border-radius: 50%;
  border: 1px solid rgba(91, 33, 182, 0.15);
  transition: all 0.3s ease;
}
.outcome-card-modern:hover .outcome-icon-wrapper {
  transform: scale(1.1);
  border-color: rgba(91, 33, 182, 0.3);
  box-shadow: 0 0 30px rgba(91, 33, 182, 0.15);
  background: linear-gradient(
    135deg,
    rgba(91, 33, 182, 0.18) 0%,
    rgba(167, 139, 250, 0.12) 100%
  );
}
.outcome-icon-wrapper i {
  font-size: 1.6rem;
  color: var(--primary);
}
.outcome-card-modern p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.outcome-card-modern p strong {
  color: var(--bg-slate);
}
.signals-anchor-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 30px 40px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  border: 1px solid rgba(91, 33, 182, 0.1);
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.anchor-decoration {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  flex-shrink: 0;
}
.signals-anchor-modern {
  font-size: 1.4rem;
  color: var(--bg-slate);
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
  background: linear-gradient(135deg, #0f172a 0%, #5b21b6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .signals-heading {
    font-size: 1.9rem;
  }
  .signals-intro-card {
    padding: 30px 20px;
  }
  .signals-distinction-modern {
    padding: 30px 20px;
  }
  .distinction-grid-modern {
    grid-template-columns: 1fr;
  }
  .signals-anchor-wrapper {
    flex-direction: column;
    gap: 15px;
    padding: 25px 20px;
  }
  .anchor-decoration {
    width: 60px;
  }
  .signals-anchor-modern {
    font-size: 1.2rem;
  }
}
.cadre-section {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  overflow: hidden;
}
.cadre-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.cadre-glow-accent {
  position: absolute;
  width: 500px;
  height: 500px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.1) 0%,
    transparent 60%
  );
  filter: blur(80px);
  pointer-events: none;
}
.cadre-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #a78bfa;
  padding: 8px 20px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 30px;
  margin-bottom: 20px;
}
.cadre-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.3;
}
.cadre-subtitle-modern {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-heading);
  font-weight: 300;
}
.cadre-intro-modern {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}
.cadre-intro-modern p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 20px;
}
.cadre-intro-modern strong {
  color: white;
}
.cadre-highlight-box {
  margin: 25px 0;
  padding: 20px 30px;
  background: rgba(139, 92, 246, 0.1);
  border-left: 3px solid #a78bfa;
  border-radius: 0 12px 12px 0;
  display: inline-block;
}
.highlight-marker {
  font-size: 1.2rem;
  font-weight: 600;
  color: #a78bfa;
  font-family: var(--font-heading);
}
.cadre-formation-section {
  max-width: 1100px;
  margin: 0 auto;
}
.formation-header {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
}
.formation-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.2) 0%,
    rgba(139, 92, 246, 0.1) 100%
  );
  border-radius: 15px;
  border: 1px solid rgba(139, 92, 246, 0.3);
}
.formation-icon i {
  font-size: 1.5rem;
  color: #a78bfa;
}
.formation-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}
.formation-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin: 0;
}
.community-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 992px) {
  .community-cards-grid {
    grid-template-columns: 1fr;
  }
  .formation-header {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
.community-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.community-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}
.workers-card {
  border-top: 3px solid #8b5cf6;
}
.workers-card .card-icon-wrapper {
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.2) 0%,
    rgba(139, 92, 246, 0.1) 100%
  );
  border-color: rgba(139, 92, 246, 0.3);
}
.workers-card .card-icon-wrapper i {
  color: #a78bfa;
}
.workers-card .feature-dot {
  background: #8b5cf6;
  box-shadow: 0 0 8px rgba(139, 92, 246, 0.5);
}
.workers-card .community-card-outcome {
  background: rgba(139, 92, 246, 0.08);
  border-color: rgba(139, 92, 246, 0.2);
}
.workers-card .community-card-outcome i {
  color: #a78bfa;
}
.citizens-card {
  border-top: 3px solid #06b6d4;
}
.citizens-card .card-icon-wrapper {
  background: linear-gradient(
    135deg,
    rgba(6, 182, 212, 0.2) 0%,
    rgba(6, 182, 212, 0.1) 100%
  );
  border-color: rgba(6, 182, 212, 0.3);
}
.citizens-card .card-icon-wrapper i {
  color: #22d3ee;
}
.citizens-card .feature-dot {
  background: #06b6d4;
  box-shadow: 0 0 8px rgba(6, 182, 212, 0.5);
}
.citizens-card .community-card-outcome {
  background: rgba(6, 182, 212, 0.08);
  border-color: rgba(6, 182, 212, 0.2);
}
.citizens-card .community-card-outcome i {
  color: #22d3ee;
}
.community-card-header {
  padding: 30px 30px 20px;
  text-align: center;
}
.card-icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid;
}
.card-icon-wrapper i {
  font-size: 1.6rem;
}
.community-card-header h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  margin: 0;
}
.community-card-body {
  padding: 0 30px 25px;
}
.community-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.community-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.community-features li:last-child {
  border-bottom: none;
}
.feature-dot {
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  margin-top: 6px;
}
.community-card-outcome {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 30px;
  border-top: 1px solid;
}
.community-card-outcome i {
  font-size: 0.8rem;
  margin-top: 4px;
}
.community-card-outcome p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}
.leaders-block {
  max-width: 900px;
  margin: 0 auto;
  padding: 35px;
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 20px;
}
.leaders-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}
.leaders-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.15);
  border-radius: 50%;
}
.leaders-icon i {
  font-size: 1.1rem;
  color: #fbbf24;
}
.leaders-header h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin: 0;
}
.leaders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
@media (max-width: 768px) {
  .leaders-grid {
    grid-template-columns: 1fr;
  }
}
.leader-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.leader-item:hover {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.25);
}
.item-marker {
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: #fbbf24;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(251, 191, 36, 0.5);
}
.leader-item span:last-child {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}
.cadre-principles {
  text-align: center;
}
.principles-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 25px;
  font-weight: 500;
}
.principles-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.principle-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 25px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  transition: all 0.3s ease;
}
.principle-chip:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-2px);
}
.principle-chip i {
  font-size: 0.9rem;
  color: #a78bfa;
}
.principle-chip span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}
.cadre-anchor-modern {
  max-width: 800px;
  margin: 0 auto;
  padding: 35px 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}
.anchor-line {
  width: 80px;
  height: 2px;
  margin: 0 auto 20px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(139, 92, 246, 0.5),
    transparent
  );
}
.cadre-anchor-modern .anchor-line:last-child {
  margin: 20px auto 0;
}
.cadre-anchor-modern p {
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 768px) {
  .cadre-heading {
    font-size: 1.9rem;
  }
  .cadre-intro-modern {
    padding: 30px 20px;
  }
  .formation-header {
    padding: 25px 20px;
  }
  .formation-title {
    font-size: 1.25rem;
  }
  .community-card-header,
  .community-card-body {
    padding-left: 20px;
    padding-right: 20px;
  }
  .cadre-anchor-modern {
    padding: 30px 20px;
  }
  .cadre-anchor-modern p {
    font-size: 1.15rem;
  }
}
.vm-section-modern {
  position: relative;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  overflow: hidden;
  color: #fff;
}
.vm-bg-abstract {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
}
.vm-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  pointer-events: none;
}
.vm-blob-1 {
  top: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: rgba(59, 130, 246, 0.15);
  animation: floatBlob 20s infinite alternate;
}
.vm-blob-2 {
  bottom: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: rgba(139, 92, 246, 0.15);
  animation: floatBlob 25s infinite alternate-reverse;
}
@keyframes floatBlob {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(40px, 40px);
  }
}
.vm-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #94a3b8;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.vm-heading {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
}
.vm-subtitle-modern {
  font-size: 1.2rem;
  color: #cbd5e1;
  font-family: var(--font-heading);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}
.vm-card-modern {
  background: rgba(30, 41, 59, 0.5);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.vm-card-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #c85cf6);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.vm-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}
.vm-card-modern:hover::before {
  opacity: 1;
}
.vm-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.vm-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #fff;
}
.vision-icon {
  background: linear-gradient(135deg, #3b82f6 0%, var(--primary) 100%);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}
.mission-icon {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
}
.vm-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #94a3b8;
  margin: 0;
}
.vm-statement-modern {
  font-size: 1.15rem;
  color: #ffffff;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 20px;
}
.vm-highlight {
  color: #60a5fa;
  font-weight: 700;
  background: rgba(37, 99, 235, 0.15);
  padding: 0 4px;
  border-radius: 4px;
}
.vm-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 20px 0;
}
.vm-detail-modern {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 0;
}
.vm-list-modern {
  list-style: none;
  padding: 0;
  margin: 0;
}
.vm-list-modern li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.vm-list-modern li:last-child {
  margin-bottom: 0;
}
.vm-list-modern i {
  color: #a78bfa;
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.vm-list-modern span {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.6;
}
.vm-anchor-wrapper {
  max-width: 850px;
  margin: 0 auto;
}
.vm-anchor-modern {
  text-align: center;
  padding: 40px;
  background: rgba(30, 41, 59, 0.5);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  backdrop-filter: blur(10px);
}
.vm-anchor-modern p {
  font-size: 1.35rem;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}
.highlight-underline {
  position: relative;
  display: inline-block;
  font-weight: 500;
}
.highlight-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 8px; /* Thick underline */
  background: rgba(37, 99, 235, 0.3);
  z-index: -1;
  transform: skewX(-10deg);
}
.identity-section {
  position: relative;
  background: linear-gradient(180deg, #f8fafc 0%, #eff6ff 50%, #f1f5f9 100%);
  overflow: hidden;
  color: #1e293b;
}
.identity-bg-mesh {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.identity-floating-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.id-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: shapeFloat 20s infinite alternate;
}
.shape-1 {
  width: 400px;
  height: 400px;
  background: rgba(147, 197, 253, 0.3); /* Soft Blue */
  top: -100px;
  left: -100px;
}
.shape-2 {
  width: 500px;
  height: 500px;
  background: rgba(167, 139, 250, 0.2); /* Soft Purple */
  bottom: -100px;
  right: -100px;
  animation-delay: -10s;
}
@keyframes shapeFloat {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 30px);
  }
}
.identity-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #4f46e5;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background: #4f46e5;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.4);
  animation: dotPulse 2s infinite;
}
.identity-heading {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.25;
  background: linear-gradient(135deg, #0f172a 0%, #7a38ca 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.identity-subtitle-modern {
  font-size: 1.2rem;
  color: #64748b; /* Slate 500 */
  font-family: var(--font-heading);
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}
.identity-intro-modern {
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.intro-glass-panel {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 1);
  padding: 40px;
  border-radius: 24px;
  text-align: center;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}
.intro-glass-panel p {
  font-size: 1.1rem;
  color: #334155;
  line-height: 1.8;
  margin-bottom: 20px;
}
.identity-highlight {
  color: #4f46e5;
  font-weight: 700;
  background: rgba(79, 70, 229, 0.05);
  padding: 2px 6px;
  border-radius: 4px;
}
.identity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .identity-grid {
    grid-template-columns: 1fr;
  }
}
.id-card-wrapper {
  perspective: 1000px;
}
.id-card-modern {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 35px 25px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  text-align: center;
}
.id-card-modern:hover {
  transform: translateY(-10px) rotateX(2deg);
  box-shadow: 0 20px 50px rgba(79, 70, 229, 0.1);
  border-color: #e0e7ff;
}
.id-card-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.5s;
}
.id-card-modern:hover .id-card-shine {
  left: 200%;
  transition: left 1s;
}
.id-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #8346e5 0%, #818cf8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.25);
}
.icon-ring {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(99, 102, 241, 0.15);
  border-radius: 50%;
  animation: ringExpand 2s infinite;
}
@keyframes ringExpand {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
.id-card-modern h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 25px;
}
.id-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.id-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  padding: 10px;
  background: #f8fafc;
  border: 1px solid transparent;
  border-radius: 10px;
  transition: all 0.3s;
}
.id-card-list li:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}
.id-card-list li i {
  color: #7046e5;
  font-size: 0.9rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.id-card-list li span {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.5;
}
.identity-cues-modern {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cue-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}
.cue-item span {
  color: #334155;
  font-weight: 600;
  font-size: 0.95rem;
}
.cue-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cue-icon i {
  font-size: 0.9rem;
  color: #8b46e5;
}
.cue-connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
}
.identity-anchor-modern {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 30px;
}
.identity-anchor-modern::before,
.identity-anchor-modern::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #94a3b8, transparent);
}
.identity-anchor-modern::before {
  top: 0;
}
.identity-anchor-modern::after {
  bottom: 0;
}
.identity-anchor-modern p {
  font-size: 1.3rem;
  color: #1e293b;
  font-family: var(--font-heading);
  font-weight: 300;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .identity-cues-modern {
    flex-direction: column;
    gap: 15px;
  }
  .cue-connector {
    width: 2px;
    height: 20px;
    background: linear-gradient(180deg, transparent, #cbd5e1, transparent);
  }
}
.not-section {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  overflow: hidden;
  color: #fff;
}
.not-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.8;
  pointer-events: none;
  animation: patternDrift 40s linear infinite;
}
@keyframes patternDrift {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 60px 60px;
  }
}
.not-gradient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  animation: blobFloat 10s ease-in-out infinite;
  opacity: 0.4;
}
.not-blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(220, 38, 38, 0.2) 0%,
    transparent 70%
  );
  top: -200px;
  right: -150px;
  animation-delay: 0s;
}
.not-blob-2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(
    circle,
    rgba(91, 33, 182, 0.2) 0%,
    transparent 70%
  );
  bottom: -150px;
  left: -150px;
  animation-delay: 5s;
}
@keyframes blobFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -20px) scale(1.05);
  }
}
.not-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #f87171;
  padding: 8px 20px;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 30px;
  margin-bottom: 20px;
}
.not-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.3;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.not-subtitle-modern {
  font-size: 1.15rem;
  color: #94a3b8;
  font-family: var(--font-heading);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}
.not-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .not-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .not-cards-grid {
    grid-template-columns: 1fr;
  }
  .not-heading {
    font-size: 1.9rem;
  }
}
.not-card-modern {
  position: relative;
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}
.not-card-modern:hover {
  transform: translateY(-10px);
  border-color: rgba(220, 38, 38, 0.4);
  background: rgba(30, 41, 59, 0.8);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.3),
    0 15px 30px rgba(220, 38, 38, 0.05);
}
.not-card-inner {
  padding: 35px 28px;
  position: relative;
  z-index: 1;
}
.not-card-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  transition: left 0.6s ease;
  pointer-events: none;
}
.not-card-modern:hover .not-card-shine {
  left: 100%;
}
.not-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.not-icon-bg {
  position: absolute;
  inset: 10px;
  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.1) 0%,
    rgba(220, 38, 38, 0.05) 100%
  );
  border-radius: 50%;
  transition: all 0.4s ease;
  border: 1px solid rgba(220, 38, 38, 0.1);
}
.not-card-modern:hover .not-icon-bg {
  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.2) 0%,
    rgba(220, 38, 38, 0.1) 100%
  );
  transform: scale(1.1);
  border-color: rgba(220, 38, 38, 0.3);
}
.not-prohibition-ring {
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  border-top-color: #ef4444;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: prohibitionSpin 2s linear infinite paused;
}
.not-card-modern:hover .not-prohibition-ring {
  opacity: 0.8;
  animation-play-state: running;
}
@keyframes prohibitionSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.not-icon-wrapper i {
  font-size: 1.8rem;
  color: #ef4444;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
  text-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
}
.not-card-modern:hover .not-icon-wrapper i {
  transform: scale(1.15);
  color: #f87171;
}
.not-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 15px;
  text-align: center;
}
.not-card-text {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: center;
}
.not-emphasis-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(15, 23, 42, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-left: 3px solid #8b5cf6;
}
.not-emphasis-box i {
  color: #a78bfa;
  font-size: 0.75rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.not-emphasis-box p {
  font-size: 0.85rem;
  color: #cbd5e1;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  text-align: left;
}
.not-anchor-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px;
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  max-width: 850px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.not-anchor-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  border-radius: 50%;
  animation: anchorPulse 2s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}
@keyframes anchorPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(34, 197, 94, 0);
  }
}
.not-anchor-icon i {
  font-size: 1.5rem;
  color: white;
}
.not-anchor-modern {
  font-size: 1.35rem;
  color: white;
  font-family: var(--font-heading);
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
  text-align: center;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: initial;
}
@media (max-width: 768px) {
  .not-anchor-wrapper {
    padding: 30px 20px;
  }
  .not-anchor-modern {
    font-size: 1.15rem;
  }
  .not-card-inner {
    padding: 28px 22px;
  }
}
.ai-section {
  position: relative;
  background: linear-gradient(135deg, #0a0a1a 0%, #0f1629 50%, #0a0a1a 100%);
  overflow: hidden;
}
.ai-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridPulse 4s ease-in-out infinite;
}
@keyframes gridPulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
.ai-circuit-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.circuit-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, #3b82f6, transparent);
  opacity: 0.3;
}
.circuit-1 {
  width: 200px;
  height: 2px;
  top: 20%;
  left: -200px;
  animation: circuitFlow 8s linear infinite;
}
.circuit-2 {
  width: 150px;
  height: 2px;
  top: 40%;
  right: -150px;
  animation: circuitFlowReverse 10s linear infinite;
  animation-delay: 2s;
}
.circuit-3 {
  width: 2px;
  height: 180px;
  top: -180px;
  left: 30%;
  background: linear-gradient(180deg, transparent, #8b5cf6, transparent);
  animation: circuitFlowDown 12s linear infinite;
}
.circuit-4 {
  width: 2px;
  height: 150px;
  bottom: -150px;
  right: 25%;
  background: linear-gradient(0deg, transparent, #06b6d4, transparent);
  animation: circuitFlowUp 9s linear infinite;
  animation-delay: 4s;
}
@keyframes circuitFlow {
  0% {
    left: -200px;
  }
  100% {
    left: 100%;
  }
}
@keyframes circuitFlowReverse {
  0% {
    right: -150px;
  }
  100% {
    right: 100%;
  }
}
@keyframes circuitFlowDown {
  0% {
    top: -180px;
  }
  100% {
    top: 100%;
  }
}
@keyframes circuitFlowUp {
  0% {
    bottom: -150px;
  }
  100% {
    bottom: 100%;
  }
}
.ai-floating-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #3b82f6;
  border-radius: 50%;
  box-shadow:
    0 0 10px #3b82f6,
    0 0 20px #3b82f6;
  animation: particleFloat 15s ease-in-out infinite;
}
.particle:nth-child(1) {
  left: 10%;
  top: 20%;
  animation-delay: 0s;
  animation-duration: 12s;
}
.particle:nth-child(2) {
  left: 25%;
  top: 70%;
  animation-delay: 2s;
  animation-duration: 18s;
}
.particle:nth-child(3) {
  left: 50%;
  top: 30%;
  animation-delay: 4s;
  animation-duration: 14s;
}
.particle:nth-child(4) {
  left: 70%;
  top: 60%;
  animation-delay: 1s;
  animation-duration: 16s;
}
.particle:nth-child(5) {
  left: 85%;
  top: 25%;
  animation-delay: 3s;
  animation-duration: 13s;
}
.particle:nth-child(6) {
  left: 40%;
  top: 80%;
  animation-delay: 5s;
  animation-duration: 17s;
}
@keyframes particleFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  25% {
    transform: translate(30px, -40px) scale(1.2);
    opacity: 1;
  }
  50% {
    transform: translate(-20px, 20px) scale(0.8);
    opacity: 0.4;
  }
  75% {
    transform: translate(40px, 30px) scale(1.1);
    opacity: 0.8;
  }
}
.ai-glow-core {
  position: absolute;
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.15) 0%,
    transparent 60%
  );
  filter: blur(60px);
  animation: corePulse 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes corePulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}
.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 30px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.ai-badge-pulse {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(59, 130, 246, 0.3),
    transparent
  );
  animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.ai-badge i {
  font-size: 0.9rem;
  color: #3b82f6;
  position: relative;
  z-index: 1;
}
.ai-badge span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #3b82f6;
  position: relative;
  z-index: 1;
}
.ai-heading {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(135deg, #ffffff 0%, #3b82f6 50%, #8b5cf6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: headingShimmer 5s ease-in-out infinite;
}
@keyframes headingShimmer {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.2);
  }
}
.ai-subtitle-modern {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-heading);
  font-weight: 300;
}
.ai-intro-modern {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  position: relative;
}
.ai-intro-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #3b82f6, transparent);
}
.ai-intro-icon {
  position: relative;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ai-neural-rings {
  position: absolute;
  inset: 0;
}
.ai-neural-rings .ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.4);
}
.ring-1 {
  inset: 0;
  animation: ringPulse 3s ease-out infinite;
}
.ring-2 {
  inset: 10px;
  animation: ringPulse 3s ease-out infinite 0.5s;
}
.ring-3 {
  inset: 20px;
  animation: ringPulse 3s ease-out infinite 1s;
}
@keyframes ringPulse {
  0% {
    transform: scale(0.8);
    opacity: 1;
    border-color: rgba(59, 130, 246, 0.6);
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
    border-color: transparent;
  }
}
.ai-intro-icon > i {
  font-size: 2rem;
  color: #3b82f6;
  position: relative;
  z-index: 1;
  animation: brainGlow 2s ease-in-out infinite;
}
@keyframes brainGlow {
  0%,
  100% {
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
  }
  50% {
    text-shadow:
      0 0 30px rgba(59, 130, 246, 0.8),
      0 0 60px rgba(59, 130, 246, 0.4);
  }
}
.ai-intro-text p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 15px;
}
.ai-highlight {
  color: #3b82f6 !important;
  font-weight: 600;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ai-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .ai-cards-container {
    grid-template-columns: 1fr;
  }
}
.ai-card-futuristic {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.ai-card-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #06b6d4 100%);
  border-radius: 22px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.ai-card-futuristic:hover .ai-card-glow {
  opacity: 1;
  animation: cardGlowRotate 3s linear infinite;
}
@keyframes cardGlowRotate {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}
.ai-card-border {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 20px;
  z-index: 1;
  transition: border-color 0.3s ease;
}
.ai-card-futuristic:hover .ai-card-border {
  border-color: transparent;
}
.ai-card-content {
  position: relative;
  z-index: 2;
  padding: 35px 28px;
  background: rgba(15, 23, 42, 0.95);
  border-radius: 18px;
  margin: 2px;
  height: calc(100% - 4px);
}
.ai-icon-hex {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hex-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.2) 0%,
    rgba(139, 92, 246, 0.1) 100%
  );
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: all 0.4s ease;
}
.ai-card-futuristic:hover .hex-bg {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.4) 0%,
    rgba(139, 92, 246, 0.3) 100%
  );
  transform: scale(1.1);
}
.hex-pulse {
  position: absolute;
  inset: -10px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  border: 2px solid rgba(59, 130, 246, 0.4);
  opacity: 0;
  animation: hexPulse 2s ease-out infinite;
}
.ai-card-futuristic:hover .hex-pulse {
  animation-play-state: running;
}
@keyframes hexPulse {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}
.ai-icon-hex i {
  font-size: 1.5rem;
  color: #3b82f6;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}
.ai-card-futuristic:hover .ai-icon-hex i {
  color: #60a5fa;
  transform: scale(1.1);
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
}
.ai-card-content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  text-align: center;
}
.ai-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ai-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.ai-feature-list li:last-child {
  border-bottom: none;
}
.list-dot {
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: #3b82f6;
  border-radius: 50%;
  margin-top: 6px;
  box-shadow: 0 0 8px #3b82f6;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 15px #3b82f6;
  }
}
.ai-boundaries-modern {
  max-width: 900px;
  margin: 0 auto;
  padding: 35px;
  background: rgba(220, 38, 38, 0.05);
  border: 1px solid rgba(220, 38, 38, 0.15);
  border-radius: 20px;
  position: relative;
}
.boundaries-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}
.shield-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(220, 38, 38, 0.15);
  border-radius: 50%;
  animation: shieldPulse 2s ease-in-out infinite;
}
@keyframes shieldPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.3);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
  }
}
.shield-icon i {
  font-size: 1.2rem;
  color: #ef4444;
}
.boundaries-header h5 {
  font-size: 1.1rem;
  color: white;
  margin: 0;
  font-weight: 600;
}
.boundaries-grid-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
@media (max-width: 768px) {
  .boundaries-grid-modern {
    grid-template-columns: 1fr;
  }
}
.boundary-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.boundary-chip:hover {
  border-color: rgba(220, 38, 38, 0.4);
  background: rgba(220, 38, 38, 0.08);
}
.chip-indicator {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #ef4444;
}
.boundary-chip i {
  font-size: 0.85rem;
  color: #ef4444;
}
.boundary-chip span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}
.ai-outcome-modern {
  text-align: center;
}
.outcome-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 30px;
  font-weight: 500;
}
.label-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(34, 197, 94, 0.5),
    transparent
  );
}
.outcome-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.outcome-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 25px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 30px;
  transition: all 0.3s ease;
}
.outcome-chip:hover {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.4);
  transform: translateY(-3px);
}
.chip-check {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 50%;
}
.chip-check i {
  font-size: 0.7rem;
  color: white;
}
.outcome-chip span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}
.ai-anchor-modern {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 20px;
  position: relative;
}
.anchor-tech-lines {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 15px 0;
}
.anchor-tech-lines span {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #3b82f6, transparent);
  animation: techLineFlow 2s ease-in-out infinite;
}
.anchor-tech-lines span:nth-child(2) {
  animation-delay: 0.3s;
  width: 60px;
}
.anchor-tech-lines span:nth-child(3) {
  animation-delay: 0.6s;
}
@keyframes techLineFlow {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}
.ai-anchor-modern p {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    #3b82f6 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .ai-heading {
    font-size: 1.9rem;
  }
  .ai-intro-modern {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  .ai-intro-icon {
    width: 80px;
    height: 80px;
  }
  .ai-anchor-modern {
    padding: 30px 20px;
  }
  .ai-anchor-modern p {
    font-size: 1.2rem;
  }
  .outcome-chips {
    flex-direction: column;
    align-items: center;
  }
}
.closing-philosophy {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  color: #1e293b;
}
.closing-philosophy::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.6;
  pointer-events: none;
}
.closing-divider {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0),
    rgba(15, 23, 42, 0.1)
  );
}
.closing-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.closing-title {
  font-size: 2.75rem;
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #0f172a 0%, #475569 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.closing-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 60px;
}
.closing-body {
  margin-bottom: 60px;
}
.closing-body p {
  font-size: 1.25rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 30px;
  font-weight: 300;
}
.closing-body p strong {
  color: #0f172a;
  font-weight: 600;
}
.closing-quiet {
  font-style: italic;
  color: #94a3b8 !important;
  font-size: 1.1rem !important;
  margin-top: 40px;
}
.closing-anchor-wrapper {
  padding: 40px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  margin-bottom: 40px;
}
.closing-anchor-wrapper:hover {
  transform: translateY(-5px);
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.closing-final-anchor {
  font-size: 1.4rem;
  color: #1e293b;
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}
.closing-soft-link {
  margin-top: 40px;
}
.closing-soft-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #64748b;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 30px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  transition: all 0.3s ease;
}
.closing-soft-link a:hover {
  color: #0f172a;
  background: #f8fafc;
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

/* ========================================
   RESEARCH PAGE STYLES
   ======================================== */

.research-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: var(--bg-paper);
  overflow: hidden;
  padding-top: 150px;
}

.research-page-section {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}

.badge-pill {
  background: rgba(91, 33, 182, 0.1);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: inline-block;
}

.text-slate {
  color: var(--bg-slate);
}

.gradient-text-alt {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subheading-research {
  font-size: 1.25rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.btn-primary-large {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  color: white;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(91, 33, 182, 0.3);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.btn-primary-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(91, 33, 182, 0.4);
  color: white;
}

.pulse-effect {
  animation: btn-pulse 2s infinite;
}

@keyframes btn-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(91, 33, 182, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(91, 33, 182, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(91, 33, 182, 0);
  }
}

.research-bg-circle-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(13, 148, 136, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.research-bg-circle-2 {
  position: absolute;
  bottom: 0%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(91, 33, 182, 0.04) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.research-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
  height: 100%;
  text-align: center;
}

.research-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.icon-box-research {
  width: 70px;
  height: 70px;
  background: var(--bg-paper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin: 0 auto 24px;
  transition: all 0.4s ease;
}

.research-card:hover .icon-box-research {
  background: var(--primary);
  color: white;
}

.research-card h4 {
  color: var(--bg-slate);
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.research-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.admin-link {
  font-size: 0.9rem;
  color: #94a3b8 !important;
  font-weight: 500;
  border-bottom: 1px dashed #cbd5e1;
  padding-bottom: 2px;
  transition: all 0.2s ease;
}

.admin-link:hover {
  color: var(--bg-slate) !important;
  border-bottom-color: var(--bg-slate);
}
