:root {
  --ink-900: #0e1423;
  --ink-800: #172238;
  --ink-700: #21314c;
  --ink-600: #2c3f61;
  --ink-500: #55617a;
  --ink-300: #c5cede;
  --ink-200: #dde5f4;
  --ink-150: #e8effb;
  --ink-100: #f4f7ff;
  --ink-50: #fafcff;
  --accent-600: #1f6ff2;
  --accent-500: #2f7efc;
  --accent-400: #5b99ff;
  --accent-200: #d8e6ff;
  --accent-120: #edf3ff;
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shadow-xs: 0 8px 22px rgba(17, 34, 56, 0.06);
  --shadow-sm: 0 20px 48px rgba(17, 34, 56, 0.1);
  --shadow-md: 0 30px 80px rgba(17, 34, 56, 0.14);
  --max-width: 1180px;
  --gradient-page: radial-gradient(circle at 0% -10%, rgba(91, 153, 255, 0.18), transparent 58%),
    radial-gradient(circle at 98% 6%, rgba(47, 126, 252, 0.12), transparent 54%),
    linear-gradient(180deg, #f8fbff 0%, #f2f6ff 58%, #ffffff 100%);
  --gradient-hero: linear-gradient(150deg, rgba(244, 247, 255, 0.96) 0%, rgba(221, 229, 244, 0.85) 55%, rgba(255, 255, 255, 0.92) 100%);
}

* {
  box-sizing: border-box;
}

html, body {
  padding: 0;
  margin: 0;
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--gradient-page);
  color: var(--ink-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-500);
}

::selection {
  background: rgba(31, 111, 242, 0.16);
}

img {
  display: block;
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 0 32px;
}

.site-header {
  padding-top: 0;
}

.nav {
  position: fixed;
  left: 50%;
  top: 24px;
  transform: translate(-50%, 0);
  display: flex;
  align-items: center;
  gap: 20px;
  width: min(80.5%, 950px);
  padding: 16px 32px;
  border-radius: 999px;
  border: 1px solid rgba(203, 216, 238, 0.26);
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(24px);
  box-shadow: none;
  z-index: 90;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease, top 0.45s ease, bottom 0.45s ease, opacity 0.3s ease;
}

.nav--hero {
  background: rgba(255, 255, 255, 0.42);
  border-color: rgba(203, 216, 238, 0.26);
  box-shadow: none;
}

.nav--compact {
  background: rgba(255, 255, 255, 0.42);
  border-color: rgba(203, 216, 238, 0.26);
  box-shadow: none;
  transform: translate(-50%, 0);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--ink-700);
}

.nav--compact .brand {
  color: var(--ink-800);
}

.nav--hero .brand {
  color: var(--ink-600);
}

.brand img {
  width: 96px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  margin-left: auto;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(14, 20, 35, 0.72);
  padding: 4px 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 3px;
  background: var(--accent-500);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink-700);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  margin-left: 20px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

@media

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 12px;
  background: linear-gradient(135deg, #4a8dff 0%, #1f6ff2 100%);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(31, 111, 242, 0.25), 0 2px 4px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.cta.secondary {
  background: rgba(31, 111, 242, 0.12);
  color: var(--ink-700);
  border: 1px solid rgba(31, 111, 242, 0.22);
  box-shadow: 0 2px 6px rgba(31, 111, 242, 0.15);
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(31, 111, 242, 0.35), 0 4px 8px rgba(0, 0, 0, 0.15);
  color: #fff;
}

.cta.secondary:hover {
  background: rgba(31, 111, 242, 0.18);
  color: var(--ink-700);
  box-shadow: 0 4px 12px rgba(31, 111, 242, 0.25);
}

.cta-large {
  padding: 16px 40px;
  font-size: 16px;
  min-width: 200px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  margin-left: 16px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 4px;
  background: var(--ink-700);
  margin: 5px 0;
}

main {
  min-height: 60vh;
}

section {
  padding: 120px 0;
}

.section-compact {
  padding: 84px 0;
}

.section-muted {
  background: var(--accent-120);
}

.hero {
  position: relative;
  padding: 160px 0 140px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  width: 560px;
  height: 560px;
  top: -190px;
  right: -160px;
  background: radial-gradient(circle, rgba(91, 153, 255, 0.24), transparent 66%);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  width: min(100%, 1600px);
}

.hero-inner {
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(320px, 1.4fr) minmax(280px, 1fr);
  align-items: center;
}

.hero-content {
  max-width: 640px;
  padding-left: 32px;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(31, 111, 242, 0.12);
  color: var(--accent-600);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.45px;
  text-transform: uppercase;
}

.hero h1 {
  margin: 28px 0 20px;
  font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(3rem, 5vw, 3.9rem);
  line-height: 1.04;
  color: var(--ink-900);
  letter-spacing: -1px;
}

.hero p {
  max-width: 540px;
  color: rgba(14, 20, 35, 0.68);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
}

.hero-content-centered {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-content-centered .eyebrow {
  margin-bottom: 16px;
}

.hero-content-centered h1 {
  margin-left: 0;
  padding-left: 0;
}

.hero-content-centered p {
  margin: 0 auto;
  max-width: 680px;
}

.floating-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInDown 1s ease-out 0.2s forwards;
}

.floating-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(31, 111, 242, 0.08);
  border: 1px solid rgba(31, 111, 242, 0.25);
  color: var(--accent-600);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  animation: heroTagFloat 4s ease-in-out infinite;
  box-shadow: 0 2px 8px rgba(31, 111, 242, 0.1);
}

.floating-tag:nth-child(1) {
  animation-delay: 0s;
}

.floating-tag:nth-child(2) {
  animation-delay: 1.2s;
}

.hero-content-centered .eyebrow {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.hero-content-centered h1 {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.hero-content-centered p {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes heroTagFloat {
  0%, 100% {
    transform: translateY(0px) scale(1);
  }
  25% {
    transform: translateY(-6px) scale(1.02);
  }
  50% {
    transform: translateY(0px) scale(1);
  }
  75% {
    transform: translateY(-3px) scale(1.01);
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-tags,
  .floating-tag,
  .hero-content-centered .eyebrow,
  .hero-content-centered h1,
  .hero-content-centered p {
    animation: none !important;
    opacity: 1 !important;
  }
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(31, 111, 242, 0.12);
  color: var(--accent-600);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.45px;
  text-transform: uppercase;
}

 .hero-window {
  position: relative;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 32px;
  padding: 30px;
  border: 1px solid rgba(203, 216, 238, 0.75);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 24px;
  overflow: hidden;
}

.hero-window::after {
  content: "";
  position: absolute;
  inset: 40px -120px -120px 40px;
  background: linear-gradient(150deg, rgba(91, 153, 255, 0.16), rgba(31, 111, 242, 0));
  border-radius: 48px;
  z-index: 0;
}

.window-chrome {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.window-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(31, 111, 242, 0.2);
}

.window-dot.red {
  background: #ff5f56;
}

.window-dot.yellow {
  background: #ffbd2e;
}

.window-dot.green {
  background: #27c93f;
}

.window-body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
}

.window-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(31, 111, 242, 0.12);
  color: var(--accent-600);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.42px;
  text-transform: uppercase;
}

.window-headline {
  margin: 0;
  font-size: 1.18rem;
  color: var(--ink-800);
}

.window-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.window-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(14, 20, 35, 0.68);
  font-size: 0.96rem;
}

.window-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-500);
  margin-top: 6px;
}

.window-footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.window-progress {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: rgba(31, 111, 242, 0.12);
  position: relative;
  overflow: hidden;
}

.window-progress span {
  position: absolute;
  inset: 0;
  border-radius: 3px;
  background: linear-gradient(90deg, #4a8dff 0%, #1f6ff2 100%);
  transform-origin: left;
}

.window-label {
  font-size: 0.88rem;
  color: rgba(14, 20, 35, 0.6);
  font-weight: 600;
}

/* NEW: Floating Ecosystem Animation */
.hero-animation {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.ecosystem-stage {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background Grid Pattern */
.grid-pattern {
  position: absolute;
  inset: -15%;
  background-image:
    linear-gradient(rgba(31, 111, 242, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 111, 242, 0.09) 1px, transparent 1px);
  background-size: 24px 24px;
  border-radius: 24px;
  opacity: 0.65;
}

/* Animated Flow Lines */
.flow-lines {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.flow-path {
  fill: none;
  stroke: rgba(31, 111, 242, 0.2);
  stroke-width: 2;
  opacity: 0.6;
  animation: flow-pulse 3s ease-in-out infinite;
}

.flow-path-1 { animation-delay: 0s; }
.flow-path-2 { animation-delay: 1s; }
.flow-path-3 { animation-delay: 2s; }

@keyframes flow-pulse {
  0%, 100% { opacity: 0.3; stroke-width: 2; }
  50% { opacity: 0.8; stroke-width: 3; }
}

/* Animated Data Dots */
.data-dot {
  fill: var(--accent-500);
  opacity: 0;
  filter: drop-shadow(0 0 4px rgba(47, 126, 252, 0.8));
}

.dot-1 {
  animation: move-dot-1 4s ease-in-out infinite;
}

.dot-2 {
  animation: move-dot-2 4s ease-in-out infinite 2s;
}

.dot-3 {
  animation: move-dot-3 3s ease-in-out infinite 1s;
}

@keyframes move-dot-1 {
  0% { cx: 150; cy: 120; opacity: 0; }
  10% { opacity: 1; }
  40% { cx: 80; cy: 200; opacity: 1; }
  45% { cx: 150; cy: 280; opacity: 1; }
  50% { opacity: 0; }
  100% { cx: 150; cy: 280; opacity: 0; }
}

@keyframes move-dot-2 {
  0% { cx: 150; cy: 120; opacity: 0; }
  10% { opacity: 1; }
  40% { cx: 220; cy: 200; opacity: 1; }
  45% { cx: 150; cy: 280; opacity: 1; }
  50% { opacity: 0; }
  100% { cx: 150; cy: 280; opacity: 0; }
}

@keyframes move-dot-3 {
  0% { cx: 50; cy: 200; opacity: 0; }
  10% { opacity: 1; }
  80% { cx: 250; cy: 200; opacity: 1; }
  90% { opacity: 0; }
  100% { cx: 250; cy: 200; opacity: 0; }
}

/* System Cards */
.system-card {
  position: absolute;
  width: 220px;
  background: rgba(255, 255, 255, 0.98);
  border: 2px solid rgba(203, 216, 238, 0.7);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(14, 20, 35, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  opacity: 0.6;
  transform: scale(0.92);
}

.card-erp {
  top: 8%;
  left: 50%;
  transform: translateX(-50%) scale(0.92);
  z-index: 3;
  border-color: rgba(46, 204, 113, 0.7);
}

.card-lms {
  top: 50%;
  left: 0;
  transform: translateY(-50%) scale(0.92);
  z-index: 2;
  border-color: rgba(155, 89, 182, 0.7);
}

.card-sis {
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%) scale(0.92);
  z-index: 2;
  border-color: rgba(52, 152, 219, 0.7);
}

.system-card.active {
  opacity: 1;
  transform: translateX(-50%) scale(1.12);
  z-index: 10;
}

.card-erp.active {
  border-color: rgb(46, 204, 113);
  box-shadow: 0 12px 40px rgba(46, 204, 113, 0.24),
              0 4px 16px rgba(14, 20, 35, 0.12);
}

.card-lms.active {
  transform: translateY(-50%) scale(1.12);
  border-color: rgb(155, 89, 182);
  box-shadow: 0 12px 40px rgba(155, 89, 182, 0.24),
              0 4px 16px rgba(14, 20, 35, 0.12);
}

.card-sis.active {
  transform: translateX(-50%) scale(1.12);
  border-color: rgb(52, 152, 219);
  box-shadow: 0 12px 40px rgba(52, 152, 219, 0.24),
              0 4px 16px rgba(14, 20, 35, 0.12);
}

.system-card:hover {
  opacity: 0.9;
  border-color: rgba(31, 111, 242, 0.5);
}

/* Card Header */
.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.card-icon {
  font-size: 1.8rem;
  filter: grayscale(20%);
}

.card-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: var(--accent-500);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 8px;
  letter-spacing: 0.05em;
}

.system-card h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink-800);
  line-height: 1.3;
}

.card-subtitle {
  margin: 0 0 14px;
  font-size: 0.75rem;
  color: rgba(14, 20, 35, 0.58);
  font-weight: 500;
}

/* Feature Pills */
.feature-pills {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 8px;
  background: rgba(31, 111, 242, 0.08);
  color: rgba(14, 20, 35, 0.62);
  font-size: 0.7rem;
  font-weight: 600;
  transition: all 0.3s ease;
  animation: pill-cycle 12s ease-in-out infinite;
}

.pill.active {
  background: var(--accent-500);
  color: white;
  transform: scale(1.05);
}

.pill:nth-child(1) { animation-delay: 0s; }
.pill:nth-child(2) { animation-delay: 3s; }
.pill:nth-child(3) { animation-delay: 6s; }
.pill:nth-child(4) { animation-delay: 9s; }

@keyframes pill-cycle {
  0%, 20%, 100% {
    background: rgba(31, 111, 242, 0.08);
    color: rgba(14, 20, 35, 0.62);
    transform: scale(1);
  }
  5%, 15% {
    background: var(--accent-500);
    color: white;
    transform: scale(1.05);
  }
}

/* System Navigation */
.system-nav {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 20;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(203, 216, 238, 0.6);
  box-shadow: 0 4px 16px rgba(14, 20, 35, 0.1);
}

.system-nav-btn {
  background: transparent;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(14, 20, 35, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
}

.system-nav-btn:hover {
  background: rgba(31, 111, 242, 0.1);
  color: var(--accent-600);
}

.system-nav-btn.active {
  background: var(--accent-500);
  color: white;
}

/* Responsive Adjustments */
@media (max-width: 960px) {
  .hero-animation {
    min-height: 540px;
  }

  .ecosystem-stage {
    max-width: 380px;
    height: 520px;
  }

  .system-card {
    width: 200px;
    padding: 18px;
  }

  .system-card h3 {
    font-size: 1rem;
  }

  .pill {
    font-size: 0.65rem;
    padding: 4px 8px;
  }
}

@media (max-width: 640px) {
  .hero-animation {
    min-height: 480px;
  }

  .ecosystem-stage {
    max-width: 340px;
    height: 480px;
  }

  .system-card {
    width: 180px;
    padding: 16px;
  }

  .card-icon {
    font-size: 1.5rem;
  }

  .system-card h3 {
    font-size: 0.95rem;
  }

  .card-subtitle {
    font-size: 0.7rem;
  }

  .pill {
    font-size: 0.62rem;
    padding: 4px 8px;
  }

  .system-nav-btn {
    padding: 6px 12px;
    font-size: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .system-card,
  .flow-path,
  .data-dot,
  .pill,
  .tile-animate,
  .detail-card-animate,
  .stat-icon,
  .timeline-path,
  .timeline-dot,
  .network-node,
  .network-line,
  .org-block,
  .org-line,
  .support-ring,
  .support-core,
  .learning-path,
  .learning-dot,
  .learning-progress,
  .ops-block,
  .ops-connector,
  .ops-pulse,
  .engage-wave,
  .engage-core,
  .engage-node,
  .quote-mark,
  .callout-orbit,
  .callout-center,
  .callout-dot,
  .rollout-step,
  .rollout-dot,
  .rollout-arrow,
  .gov-shield,
  .gov-check,
  .gov-seal,
  .analytics-bar,
  .analytics-trend,
  .analytics-point {
    animation: none !important;
    transition: opacity 0.3s ease !important;
  }

  .tile-animate:hover,
  .detail-card-animate:hover,
  .stat-card-enhanced:hover,
  .quote-animated:hover {
    transform: none !important;
  }

  .tile-animate:hover .tile-icon,
  .stat-card-enhanced:hover .stat-icon {
    transform: none !important;
  }

  /* Show static versions for reduced motion */
  .timeline-path,
  .network-node,
  .network-line,
  .org-block,
  .org-line,
  .support-ring,
  .support-core,
  .learning-path,
  .learning-dot,
  .ops-block,
  .ops-connector,
  .engage-wave,
  .engage-core,
  .engage-node,
  .quote-mark,
  .callout-orbit,
  .callout-dot,
  .rollout-step,
  .rollout-dot,
  .rollout-arrow,
  .gov-shield,
  .gov-check,
  .gov-seal,
  .analytics-bar,
  .analytics-trend,
  .analytics-point {
    opacity: 0.7 !important;
  }

  .callout-center {
    opacity: 0.8 !important;
  }
}


.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 6px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(31, 111, 242, 0.12);
  color: var(--accent-600);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.hero-metric-grid {
  display: grid;
  gap: 14px;
}

.hero-metric-card {
  display: grid;
  gap: 6px;
  background: rgba(247, 250, 255, 0.98);
  border-radius: 20px;
  padding: 20px 22px;
  border: 1px solid rgba(203, 216, 238, 0.8);
}

.hero-metric-card strong {
  font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem;
  color: var(--ink-800);
  letter-spacing: -0.3px;
}

.hero-metric-card span {
  font-size: 0.9rem;
  color: rgba(14, 20, 35, 0.62);
}

.hero-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 28px;
  padding: 36px;
  border: 1px solid rgba(203, 216, 238, 0.8);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 22px;
}

.hero-card h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--ink-700);
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.hero-card li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(14, 20, 35, 0.7);
  font-size: 0.98rem;
}

.hero-card li::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-500);
  margin-top: 6px;
}

.feature-rail {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature-card-min {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 22px;
  padding: 26px;
  border: 1px solid rgba(203, 216, 238, 0.8);
  box-shadow: var(--shadow-xs);
  display: grid;
  gap: 12px;
}

.feature-card-min h3 {
  margin: 0;
  font-size: 1.06rem;
  color: var(--ink-700);
}

.feature-card-min p {
  margin: 0;
  color: rgba(14, 20, 35, 0.66);
  font-size: 0.95rem;
}

.stats-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.stat-card {
  padding: 28px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(203, 216, 238, 0.78);
  box-shadow: var(--shadow-xs);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card-enhanced {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 255, 0.95) 100%);
  cursor: pointer;
}

.stat-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
  display: inline-block;
  transition: all 0.4s ease;
}

.stat-icon svg {
  width: 100%;
  height: 100%;
}

/* Timeline Icon Animation */
.timeline-path {
  fill: none;
  stroke: var(--accent-500);
  stroke-width: 2.5;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: drawTimeline 3s ease-in-out infinite;
}

.timeline-dot {
  fill: var(--accent-500);
  opacity: 0;
  animation: dotAppear 3s ease-in-out infinite;
}

.timeline-dot:nth-child(2) { animation-delay: 0.3s; }
.timeline-dot:nth-child(3) { animation-delay: 0.6s; }
.timeline-dot:nth-child(4) { animation-delay: 0.9s; }
.timeline-dot:nth-child(5) { animation-delay: 1.2s; }

@keyframes drawTimeline {
  0%, 100% { stroke-dashoffset: 100; }
  50%, 90% { stroke-dashoffset: 0; }
}

@keyframes dotAppear {
  0%, 100% { opacity: 0; transform: scale(0); }
  40%, 80% { opacity: 1; transform: scale(1); }
}

/* Network Icon Animation */
.network-node {
  fill: var(--accent-500);
  animation: nodePulse 2.5s ease-in-out infinite;
}

.network-node:nth-child(1) { animation-delay: 0s; }
.network-node:nth-child(2) { animation-delay: 0.2s; }
.network-node:nth-child(3) { animation-delay: 0.4s; }
.network-node:nth-child(4) { animation-delay: 0.6s; }
.network-node:nth-child(5) { animation-delay: 0.8s; }
.network-node:nth-child(6) { animation-delay: 1s; }
.network-node:nth-child(7) { animation-delay: 1.2s; }

.network-line {
  stroke: var(--accent-400);
  stroke-width: 1.5;
  opacity: 0.4;
  animation: linePulse 2.5s ease-in-out infinite;
}

.network-line:nth-child(8) { animation-delay: 0.2s; }
.network-line:nth-child(9) { animation-delay: 0.4s; }
.network-line:nth-child(10) { animation-delay: 0.6s; }
.network-line:nth-child(11) { animation-delay: 0.8s; }
.network-line:nth-child(12) { animation-delay: 1s; }
.network-line:nth-child(13) { animation-delay: 1.2s; }

@keyframes nodePulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

@keyframes linePulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.7; }
}

/* Organization Icon Animation */
.org-block {
  fill: none;
  stroke: var(--accent-500);
  stroke-width: 2;
  opacity: 0.7;
  animation: blockFill 3s ease-in-out infinite;
}

.org-block:nth-child(1) { animation-delay: 0s; }
.org-block:nth-child(2) { animation-delay: 0.3s; }
.org-block:nth-child(3) { animation-delay: 0.6s; }
.org-block:nth-child(4) { animation-delay: 0.9s; }

.org-line {
  stroke: var(--accent-400);
  stroke-width: 2;
  opacity: 0;
  animation: lineConnect 3s ease-in-out infinite;
}

.org-line:nth-child(5) { animation-delay: 1.2s; }
.org-line:nth-child(6) { animation-delay: 1.3s; }
.org-line:nth-child(7) { animation-delay: 1.4s; }
.org-line:nth-child(8) { animation-delay: 1.5s; }
.org-line:nth-child(9) { animation-delay: 1.6s; }

@keyframes blockFill {
  0%, 100% { fill: none; opacity: 0.5; }
  40%, 80% { fill: var(--accent-500); opacity: 0.3; }
}

@keyframes lineConnect {
  0%, 30%, 100% { opacity: 0; }
  50%, 90% { opacity: 0.8; }
}

/* Support Icon Animation */
.support-ring {
  fill: none;
  stroke: var(--accent-500);
  stroke-width: 1.5;
  opacity: 0;
  transform-origin: center;
  animation: ringExpand 3s ease-in-out infinite;
}

.ring-outer { animation-delay: 0s; }
.ring-middle { animation-delay: 0.4s; }
.ring-inner { animation-delay: 0.8s; }

.support-core {
  fill: var(--accent-500);
  animation: corePulse 3s ease-in-out infinite;
}

@keyframes ringExpand {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 0.8; transform: scale(1); }
}

@keyframes corePulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.stat-glow {
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--accent-400), var(--accent-600));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.stat-card-enhanced:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 48px rgba(47, 126, 252, 0.25),
              0 4px 16px rgba(14, 20, 35, 0.12);
  border-color: var(--accent-400);
}

.stat-card-enhanced:hover .stat-glow {
  opacity: 0.12;
}

.stat-card strong {
  display: block;
  font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  letter-spacing: -0.6px;
  color: var(--ink-800);
  background: linear-gradient(135deg, var(--accent-600), var(--accent-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.stat-card-enhanced:hover strong {
  transform: scale(1.05);
}

.stat-card span {
  color: rgba(14, 20, 35, 0.6);
  font-size: 0.96rem;
  transition: color 0.3s ease;
}

.stat-card-enhanced:hover span {
  color: rgba(14, 20, 35, 0.75);
}

.section-heading {
  display: grid;
  gap: 16px;
  max-width: 680px;
  margin-bottom: 60px;
}

.section-heading-centered {
  max-width: 100%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading span {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(23, 34, 56, 0.7);
  letter-spacing: 0.45px;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.3rem, 4.5vw, 3rem);
  letter-spacing: -0.6px;
  color: var(--ink-900);
}

.section-heading p {
  margin: 0;
  color: rgba(14, 20, 35, 0.68);
}

.tile-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.tile {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 22px;
  padding: 30px;
  border: 1px solid rgba(203, 216, 238, 0.78);
  box-shadow: var(--shadow-xs);
  display: grid;
  gap: 18px;
  transition: all 0.3s ease;
}

.tile-animate {
  position: relative;
  overflow: hidden;
}

.tile-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.tile-icon svg {
  width: 100%;
  height: 100%;
}

/* Learning Icon Animation */
.learning-path {
  fill: none;
  stroke: var(--accent-500);
  stroke-width: 2;
  opacity: 0;
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  animation: drawLearningPath 4s ease-in-out infinite;
}

.learning-path-1 { animation-delay: 0s; }
.learning-path-2 { animation-delay: 0.5s; }

.learning-dot {
  fill: var(--accent-600);
  opacity: 0;
  animation: learningDotMove 4s ease-in-out infinite;
}

.learning-dot-1 { animation-delay: 0.3s; }
.learning-dot-2 { animation-delay: 1s; }
.learning-dot-3 { animation-delay: 1.7s; }

.learning-progress {
  fill: none;
  stroke: var(--accent-400);
  stroke-width: 1.5;
  opacity: 0.3;
  stroke-dashoffset: 0;
  animation: progressFill 4s ease-in-out infinite;
}

@keyframes drawLearningPath {
  0%, 100% { stroke-dashoffset: 80; opacity: 0; }
  20%, 90% { stroke-dashoffset: 0; opacity: 0.7; }
}

@keyframes learningDotMove {
  0%, 100% { opacity: 0; transform: scale(0); }
  30%, 80% { opacity: 1; transform: scale(1); }
  50% { transform: scale(1.3); }
}

@keyframes progressFill {
  0%, 100% { stroke-dashoffset: 175.93; opacity: 0.2; }
  50% { stroke-dashoffset: 0; opacity: 0.5; }
}

/* Operations Icon Animation */
.ops-block {
  fill: var(--accent-500);
  opacity: 0;
  animation: opsBlockAppear 3s ease-in-out infinite;
}

.ops-block-1 { animation-delay: 0s; }
.ops-block-2 { animation-delay: 0.3s; }
.ops-block-3 { animation-delay: 0.6s; }
.ops-block-4 { animation-delay: 0.9s; }

.ops-connector {
  stroke: var(--accent-400);
  stroke-width: 2;
  opacity: 0;
  animation: connectorFlow 3s ease-in-out infinite;
}

.ops-connector-h { stroke-dasharray: 14; stroke-dashoffset: 14; }
.ops-connector-v { stroke-dasharray: 14; stroke-dashoffset: 14; }

.ops-connector:nth-child(5) { animation-delay: 1.2s; }
.ops-connector:nth-child(6) { animation-delay: 1.3s; }
.ops-connector:nth-child(7) { animation-delay: 1.5s; }
.ops-connector:nth-child(8) { animation-delay: 1.6s; }

.ops-pulse {
  fill: none;
  stroke: var(--accent-600);
  stroke-width: 2;
  opacity: 0;
  animation: opsPulse 3s ease-in-out infinite;
  animation-delay: 1.8s;
}

@keyframes opsBlockAppear {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  25%, 90% { opacity: 0.5; transform: scale(1); }
}

@keyframes connectorFlow {
  0%, 35%, 100% { opacity: 0; stroke-dashoffset: 14; }
  50%, 90% { opacity: 0.7; stroke-dashoffset: 0; }
}

@keyframes opsPulse {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  60%, 90% { opacity: 0.6; transform: scale(2); }
}

/* Engagement Icon Animation */
.engage-wave {
  fill: none;
  stroke: var(--accent-500);
  stroke-width: 1.5;
  opacity: 0;
  animation: waveExpand 3s ease-in-out infinite;
}

.engage-wave-1 { animation-delay: 0s; }
.engage-wave-2 { animation-delay: 0.4s; }
.engage-wave-3 { animation-delay: 0.8s; }

.engage-core {
  fill: var(--accent-600);
  animation: coreGlow 3s ease-in-out infinite;
}

.engage-node {
  fill: var(--accent-500);
  opacity: 0;
  animation: nodeActivate 3s ease-in-out infinite;
}

.engage-node:nth-child(5) { animation-delay: 1s; }
.engage-node:nth-child(6) { animation-delay: 1.2s; }
.engage-node:nth-child(7) { animation-delay: 1.4s; }
.engage-node:nth-child(8) { animation-delay: 1.6s; }

@keyframes waveExpand {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

@keyframes coreGlow {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

@keyframes nodeActivate {
  0%, 100% { opacity: 0; transform: scale(0); }
  40%, 80% { opacity: 1; transform: scale(1); }
  60% { transform: scale(1.4); }
}

.tile-pattern {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 0;
  border-radius: 22px;
}

.tile-learning .tile-pattern {
  background: radial-gradient(circle at 20% 80%, rgba(91, 153, 255, 0.15), transparent 60%),
              radial-gradient(circle at 80% 20%, rgba(47, 126, 252, 0.1), transparent 50%);
}

.tile-operations .tile-pattern {
  background: radial-gradient(circle at 30% 70%, rgba(31, 111, 242, 0.15), transparent 55%),
              radial-gradient(circle at 70% 30%, rgba(91, 153, 255, 0.12), transparent 50%);
}

.tile-engagement .tile-pattern {
  background: radial-gradient(circle at 25% 75%, rgba(47, 126, 252, 0.18), transparent 60%),
              radial-gradient(circle at 75% 25%, rgba(31, 111, 242, 0.1), transparent 50%);
}

.tile-animate::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(47, 126, 252, 0.15), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.tile-animate > * {
  position: relative;
  z-index: 2;
}

.tile-animate:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 48px rgba(47, 126, 252, 0.22),
              0 8px 20px rgba(14, 20, 35, 0.12);
  border-color: var(--accent-500);
}

.tile-animate:hover::before {
  left: 100%;
}

.tile-animate:hover .tile-pattern {
  opacity: 1;
}

.tile-animate:hover .tile-icon {
  transform: scale(1.2);
  filter: drop-shadow(0 12px 24px rgba(47, 126, 252, 0.4));
}

.stat-card-enhanced:hover .stat-icon {
  transform: scale(1.1);
}

.tile-animate .tag {
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.tile-animate:hover .tag {
  background: rgba(31, 111, 242, 0.18);
  color: var(--accent-600);
  transform: scale(1.08);
}

.tile-animate h3 {
  transition: all 0.3s ease;
}

.tile-animate:hover h3 {
  color: var(--accent-600);
  transform: translateX(4px);
}

.tile .tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-600);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.42px;
  text-transform: uppercase;
  border: 1px solid rgba(14, 20, 35, 0.15);
}

.tile h3 {
  margin: 0;
  font-size: 1.16rem;
  color: var(--ink-700);
}

.tile p {
  margin: 0;
  color: rgba(14, 20, 35, 0.68);
  font-size: 0.98rem;
}

.split-layout {
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  align-items: center;
}

.split-panel {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 28px;
  padding: 40px;
  border: 1px solid rgba(203, 216, 238, 0.78);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 22px;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.list li {
  display: flex;
  gap: 14px;
  color: rgba(14, 20, 35, 0.68);
  transition: all 0.3s ease;
  padding: 8px 0;
}

.list li:hover {
  color: rgba(14, 20, 35, 0.85);
  transform: translateX(4px);
}

.list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-500);
  margin-top: 8px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 0 rgba(47, 126, 252, 0.4);
}

.list li:hover::before {
  transform: scale(1.4);
  box-shadow: 0 0 0 4px rgba(47, 126, 252, 0.2);
}

.section-spotlight {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(160deg, rgba(247, 250, 255, 0.92), rgba(221, 229, 244, 0.74));
  overflow: hidden;
}

.section-spotlight::before {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  bottom: -220px;
  left: -120px;
  background: radial-gradient(circle, rgba(91, 153, 255, 0.2), transparent 60%);
  z-index: 0;
}

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

.spotlight-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.spotlight-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid rgba(203, 216, 238, 0.78);
  box-shadow: var(--shadow-xs);
  display: grid;
  gap: 14px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.spotlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-500), transparent);
  transition: left 0.5s ease;
}

.spotlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(47, 126, 252, 0.18),
              0 4px 12px rgba(14, 20, 35, 0.1);
  border-color: rgba(31, 111, 242, 0.5);
}

.spotlight-card:hover::before {
  left: 100%;
}

.spotlight-card h3 {
  margin: 0;
  font-size: 1.12rem;
  color: var(--ink-700);
  transition: color 0.3s ease;
}

.spotlight-card:hover h3 {
  color: var(--accent-600);
}

.spotlight-card p {
  margin: 0;
  color: rgba(14, 20, 35, 0.65);
}

.cards-row {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.detail-card {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(203, 216, 238, 0.78);
  box-shadow: var(--shadow-xs);
  display: grid;
  gap: 10px;
  transition: all 0.3s ease;
}

.detail-card-animate {
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: cardSlideIn 0.6s ease-out forwards;
}

.detail-card-animate:nth-child(1) {
  animation-delay: 0.1s;
}

.detail-card-animate:nth-child(2) {
  animation-delay: 0.2s;
}

.detail-card-animate:nth-child(3) {
  animation-delay: 0.3s;
}

.detail-card-animate:nth-child(4) {
  animation-delay: 0.4s;
}

.detail-card-animate::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-500), var(--accent-400));
  transition: width 0.4s ease;
}

.detail-card-animate:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 24px rgba(47, 126, 252, 0.2),
              0 3px 8px rgba(14, 20, 35, 0.1);
  border-color: rgba(31, 111, 242, 0.6);
}

.detail-card-animate:hover::after {
  width: 100%;
}

.detail-card-animate h3 {
  transition: color 0.3s ease;
}

.detail-card-animate:hover h3 {
  color: var(--accent-600);
}

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

.detail-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  opacity: 0.8;
}

.detail-icon svg {
  width: 100%;
  height: 100%;
}

/* Rollout Icon Animation */
.rollout-step {
  fill: none;
  stroke: var(--accent-500);
  stroke-width: 3;
  opacity: 0;
  stroke-dasharray: 10;
  stroke-dashoffset: 10;
  animation: stepProgress 3s ease-in-out infinite;
}

.rollout-step-1 { animation-delay: 0s; }
.rollout-step-2 { animation-delay: 0.5s; }
.rollout-step-3 { animation-delay: 1s; }

.rollout-dot {
  fill: var(--accent-600);
  opacity: 0;
  animation: dotActivate 3s ease-in-out infinite;
}

.rollout-dot-1 { animation-delay: 0.3s; }
.rollout-dot-2 { animation-delay: 0.8s; }
.rollout-dot-3 { animation-delay: 1.3s; }

.rollout-arrow {
  fill: none;
  stroke: var(--accent-600);
  stroke-width: 2;
  opacity: 0;
  animation: arrowSlide 3s ease-in-out infinite;
  animation-delay: 1.6s;
}

@keyframes stepProgress {
  0%, 100% { opacity: 0; stroke-dashoffset: 10; }
  30%, 90% { opacity: 0.7; stroke-dashoffset: 0; }
}

@keyframes dotActivate {
  0%, 100% { opacity: 0; transform: scale(0); }
  30%, 90% { opacity: 1; transform: scale(1); }
}

@keyframes arrowSlide {
  0%, 100% { opacity: 0; transform: translateX(-5px); }
  50%, 90% { opacity: 1; transform: translateX(0); }
}

/* Governance Icon Animation */
.gov-shield {
  fill: none;
  stroke: var(--accent-500);
  stroke-width: 2;
  opacity: 0.6;
  animation: shieldPulse 3s ease-in-out infinite;
}

.gov-check {
  fill: none;
  stroke: var(--accent-600);
  stroke-width: 2.5;
  stroke-dasharray: 15;
  stroke-dashoffset: 15;
  opacity: 0;
  animation: checkDraw 3s ease-in-out infinite;
  animation-delay: 1s;
}

.gov-seal {
  fill: none;
  stroke: var(--accent-400);
  stroke-width: 1.5;
  opacity: 0;
  animation: sealExpand 3s ease-in-out infinite;
}

.gov-seal-1 { animation-delay: 0s; }
.gov-seal-2 { animation-delay: 0.4s; }

@keyframes shieldPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.05); }
}

@keyframes checkDraw {
  0%, 100% { opacity: 0; stroke-dashoffset: 15; }
  40%, 90% { opacity: 1; stroke-dashoffset: 0; }
}

@keyframes sealExpand {
  0%, 100% { opacity: 0; transform: scale(0.8); }
  50% { opacity: 0.5; transform: scale(1); }
}

/* Analytics Icon Animation */
.analytics-bar {
  fill: var(--accent-500);
  opacity: 0;
  transform-origin: bottom;
  animation: barGrow 3s ease-in-out infinite;
}

.analytics-bar-1 { animation-delay: 0s; }
.analytics-bar-2 { animation-delay: 0.3s; }
.analytics-bar-3 { animation-delay: 0.6s; }

.analytics-trend {
  fill: none;
  stroke: var(--accent-400);
  stroke-width: 2;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  opacity: 0;
  animation: trendDraw 3s ease-in-out infinite;
  animation-delay: 0.9s;
}

.analytics-point {
  fill: var(--accent-600);
  opacity: 0;
  animation: pointAppear 3s ease-in-out infinite;
}

.analytics-point:nth-child(5) { animation-delay: 1.2s; }
.analytics-point:nth-child(6) { animation-delay: 1.4s; }
.analytics-point:nth-child(7) { animation-delay: 1.6s; }

@keyframes barGrow {
  0%, 100% { opacity: 0; transform: scaleY(0); }
  30%, 90% { opacity: 0.7; transform: scaleY(1); }
}

@keyframes trendDraw {
  0%, 100% { opacity: 0; stroke-dashoffset: 40; }
  40%, 90% { opacity: 0.7; stroke-dashoffset: 0; }
}

@keyframes pointAppear {
  0%, 100% { opacity: 0; transform: scale(0); }
  50%, 90% { opacity: 1; transform: scale(1); }
  60% { transform: scale(1.3); }
}

.detail-card h3 {
  margin: 0;
  color: var(--ink-700);
  font-size: 0.95rem;
}

.detail-card p {
  margin: 0;
  color: rgba(14, 20, 35, 0.66);
  font-size: 0.85rem;
  line-height: 1.5;
}

.quote-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.quote {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(203, 216, 238, 0.8);
  box-shadow: var(--shadow-xs);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.quote-animated {
  position: relative;
  overflow: hidden;
}

.quote-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  opacity: 0.15;
}

.quote-icon svg {
  width: 100%;
  height: 100%;
}

.quote-mark {
  fill: var(--accent-500);
  opacity: 0.6;
  animation: quoteFloat 3s ease-in-out infinite;
}

.quote-mark:nth-child(1) { animation-delay: 0s; }
.quote-mark:nth-child(2) { animation-delay: 0.5s; }

@keyframes quoteFloat {
  0%, 100% { transform: translateY(0px); opacity: 0.4; }
  50% { transform: translateY(-5px); opacity: 0.7; }
}

.quote-animated::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(47, 126, 252, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.quote-animated > * {
  position: relative;
  z-index: 1;
}

.quote-animated:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(47, 126, 252, 0.15),
              0 4px 16px rgba(14, 20, 35, 0.1);
  border-color: rgba(31, 111, 242, 0.4);
}

.quote-animated:hover::before {
  opacity: 1;
}

.quote-animated:hover .quote-icon {
  opacity: 0.25;
}

.quote p {
  color: rgba(14, 20, 35, 0.7);
  font-size: 1rem;
  line-height: 1.7;
}

.quote strong {
  display: block;
  margin-top: 18px;
  color: var(--ink-700);
  transition: color 0.3s ease;
}

.quote-animated:hover strong {
  color: var(--accent-600);
}

.quote span {
  color: rgba(14, 20, 35, 0.55);
  font-size: 0.88rem;
}

.logo-row {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  justify-items: center;
}

.logo-card {
  width: 100%;
  padding: 20px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(203, 216, 238, 0.78);
  box-shadow: var(--shadow-xs);
  text-align: center;
  color: rgba(14, 20, 35, 0.62);
  font-weight: 600;
}

.callout {
  position: relative;
  background: linear-gradient(145deg, rgba(247, 250, 255, 0.96), rgba(221, 229, 244, 0.9));
  border-radius: var(--radius-lg);
  padding: 54px;
  display: grid;
  gap: 24px;
  color: var(--ink-900);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(203, 216, 238, 0.75);
  text-align: center;
}

.callout::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  bottom: -60px;
  right: -40px;
  background: radial-gradient(circle, rgba(91, 153, 255, 0.22), transparent 60%);
  z-index: 0;
}

.callout > * {
  position: relative;
  z-index: 1;
}

.callout-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  opacity: 0.3;
}

.callout-icon svg {
  width: 100%;
  height: 100%;
}

.callout-orbit {
  fill: none;
  stroke: var(--accent-500);
  stroke-width: 1.5;
  opacity: 0;
  animation: orbitExpand 4s ease-in-out infinite;
}

.callout-orbit-1 { animation-delay: 0s; }
.callout-orbit-2 { animation-delay: 0.5s; }
.callout-orbit-3 { animation-delay: 1s; }

.callout-center {
  fill: var(--accent-600);
  animation: centerPulse 4s ease-in-out infinite;
}

.callout-dot {
  fill: var(--accent-500);
  opacity: 0;
  animation: dotOrbit 4s ease-in-out infinite;
}

.callout-dot-1 { animation-delay: 0s; }
.callout-dot-2 { animation-delay: 0.5s; }
.callout-dot-3 { animation-delay: 1s; }
.callout-dot-4 { animation-delay: 1.5s; }

@keyframes orbitExpand {
  0%, 100% { opacity: 0; transform: scale(0.8); }
  50% { opacity: 0.4; transform: scale(1); }
}

@keyframes centerPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

@keyframes dotOrbit {
  0%, 100% { opacity: 0; transform: scale(0); }
  40%, 80% { opacity: 1; transform: scale(1); }
  60% { transform: scale(1.3); }
}

.callout-animated .cta {
  margin: 10px auto 0;
  display: inline-flex;
}

.callout h2,
.callout h3 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 2.4rem);
  font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.4px;
}

.callout p {
  margin: 0;
  color: rgba(14, 20, 35, 0.7);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.contact-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.contact-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 28px;
  padding: 38px;
  border: 1px solid rgba(203, 216, 238, 0.78);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 22px;
}

form {
  display: grid;
  gap: 20px;
}

label {
  font-weight: 600;
  color: rgba(14, 20, 35, 0.78);
}

input, textarea, select {
  width: 100%;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(23, 34, 56, 0.12);
  background: rgba(255, 255, 255, 0.96);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: rgba(31, 111, 242, 0.6);
  box-shadow: 0 0 0 4px rgba(31, 111, 242, 0.16);
}

textarea {
  resize: vertical;
  min-height: 170px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(203, 216, 238, 0.78);
  box-shadow: var(--shadow-xs);
}

.table thead {
  background: rgba(216, 230, 255, 0.6);
}

.table th, .table td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid rgba(203, 216, 238, 0.72);
  color: rgba(14, 20, 35, 0.7);
}

.table tbody tr:last-child td {
  border-bottom: none;
}

.table tbody tr:hover {
  background: rgba(31, 111, 242, 0.06);
}

footer {
  background: rgba(248, 251, 255, 0.92);
  padding: 84px 0 54px;
  color: rgba(14, 20, 35, 0.6);
  border-top: 1px solid rgba(203, 216, 238, 0.78);
}

.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-brand {
  display: grid;
  gap: 18px;
}

.footer-brand img {
  width: 110px;
  height: auto;
  display: block;
}

.footer-brand p {
  margin: 0;
}

.footer-nav {
  display: grid;
  gap: 12px;
}

.footer-nav strong {
  color: var(--ink-700);
  font-size: 0.92rem;
}

.footer-meta {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: rgba(14, 20, 35, 0.48);
}

.footer-meta a {
  color: inherit;
}

@media (max-width: 960px) {
  .nav {
    gap: 16px;
    width: min(65.8%, 448px);
    padding: 14px 22px;
  }

  .brand img {
    width: 80px;
  }

  .nav-links {
    position: absolute;
    inset: 84px 24px auto 24px;
    background: rgba(255, 255, 255, 0.97);
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 20px;
    border: 1px solid rgba(23, 34, 56, 0.1);
    box-shadow: var(--shadow-xs);
    pointer-events: none;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    margin-left: 0;
    gap: 18px;
    justify-content: flex-start;
    width: auto;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    width: 100%;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-cta {
    display: none;
  }

  .nav--compact {
    transform: translate(-50%, 0);
  }

  .container {
    padding: 0 24px;
  }

  section {
    padding: 100px 0;
  }

  .hero {
    padding: 120px 0 100px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-content-centered {
    max-width: 100%;
    padding: 0 16px;
  }

  .floating-tags {
    flex-wrap: wrap;
    gap: 10px;
  }

  .floating-tag {
    font-size: 10px;
    padding: 5px 12px;
  }

}

/* Modern Contact Form */
.contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form-modern {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 24px;
  padding: 48px;
  border: 1px solid rgba(203, 216, 238, 0.78);
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-700);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid rgba(203, 216, 238, 0.6);
  background: rgba(255, 255, 255, 0.98);
  font-size: 15px;
  font-family: inherit;
  color: var(--ink-800);
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-500);
  box-shadow: 0 0 0 3px rgba(31, 111, 242, 0.1);
  background: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form-modern .cta-large {
  margin-top: 8px;
}

/* Contact Methods Grid */
.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.contact-method-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 24px;
  padding: 40px 36px;
  border: 1px solid rgba(203, 216, 238, 0.78);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.contact-method-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(31, 111, 242, 0.3);
}

.contact-method-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(91, 153, 255, 0.12), rgba(31, 111, 242, 0.08));
  border-radius: 16px;
  margin-bottom: 8px;
}

.contact-method-icon svg {
  width: 40px;
  height: 40px;
}

.icon-shape {
  fill: none;
  stroke: var(--accent-500);
  stroke-width: 2;
}

.icon-accent {
  fill: none;
  stroke: var(--accent-600);
  stroke-width: 2;
}

.icon-dot {
  fill: var(--accent-600);
}

.contact-method-card h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--ink-800);
}

.contact-method-card p {
  margin: 0;
  color: rgba(14, 20, 35, 0.65);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(31, 111, 242, 0.08);
  color: var(--accent-600);
  font-weight: 600;
  font-size: 15px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: 4px;
}

.contact-link:hover {
  background: rgba(31, 111, 242, 0.15);
  color: var(--accent-600);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-form-modern {
    padding: 32px 24px;
  }

  .contact-methods-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Page Animations */
.contact-hero-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  opacity: 0.25;
}

.contact-hero-icon svg {
  width: 100%;
  height: 100%;
}

.contact-ring {
  fill: none;
  stroke: var(--accent-500);
  stroke-width: 1.5;
  opacity: 0;
  animation: contactRingExpand 3s ease-in-out infinite;
}

.contact-ring-1 { animation-delay: 0s; }
.contact-ring-2 { animation-delay: 0.4s; }
.contact-ring-3 { animation-delay: 0.8s; }

.contact-core {
  fill: var(--accent-600);
  animation: contactCorePulse 3s ease-in-out infinite;
}

.contact-node {
  fill: var(--accent-500);
  opacity: 0;
  animation: contactNodeActivate 3s ease-in-out infinite;
}

.contact-node-1 { animation-delay: 1.2s; }
.contact-node-2 { animation-delay: 1.5s; }
.contact-node-3 { animation-delay: 1.8s; }

@keyframes contactRingExpand {
  0%, 100% { opacity: 0; transform: scale(0.7); }
  50% { opacity: 0.5; transform: scale(1); }
}

@keyframes contactCorePulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

@keyframes contactNodeActivate {
  0%, 100% { opacity: 0; transform: scale(0); }
  40%, 80% { opacity: 1; transform: scale(1); }
  60% { transform: scale(1.3); }
}

@media (max-width: 640px) {
  section {
    padding: 90px 0;
  }

  .hero {
    padding: 110px 0 90px;
  }

  .hero-card,
  .split-panel,
  .contact-card {
    padding: 28px;
  }

  .callout {
    padding: 44px;
  }
}

/* ========================================
   SOLUTIONS PAGE ANIMATIONS
   ======================================== */

/* Solutions Hero - 3 Products Showcase */
.solutions-hero-animation {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  padding: 20px 0;
}

.products-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  width: 100%;
  max-width: 1000px;
}

/* Product Cards */
.product-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 20px;
  padding: 32px 24px;
  border: 2px solid rgba(203, 216, 238, 0.7);
  box-shadow: 0 4px 16px rgba(14, 20, 35, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: productCardAppear 0.6s ease-out forwards;
  opacity: 0;
}

.product-k12-erp {
  border-color: rgba(46, 204, 113, 0.6);
  animation-delay: 0.1s;
}

.product-highered-erp {
  border-color: rgba(52, 152, 219, 0.6);
  animation-delay: 0.2s;
}

.product-lms {
  border-color: rgba(155, 89, 182, 0.6);
  animation-delay: 0.3s;
}

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

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(47, 126, 252, 0.2);
  border-color: var(--accent-500);
}

.product-icon {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
  transition: transform 0.4s ease;
}

.product-card:hover .product-icon {
  transform: scale(1.15);
}

.product-icon svg {
  width: 100%;
  height: 100%;
}

.product-card h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink-800);
}

.product-card p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(14, 20, 35, 0.65);
  text-align: center;
}

.product-badge {
  padding: 6px 16px;
  background: rgba(31, 111, 242, 0.1);
  border: 1px solid rgba(31, 111, 242, 0.2);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-600);
}

/* K-12 ERP Product Icon Animation */
.k12-erp-grid {
  fill: rgba(46, 204, 113, 0.2);
  stroke: rgb(46, 204, 113);
  stroke-width: 2;
  animation: k12GridPulse 3s ease-in-out infinite;
}

.grid-1 { animation-delay: 0s; }
.grid-2 { animation-delay: 0.3s; }
.grid-3 { animation-delay: 0.6s; }
.grid-4 { animation-delay: 0.9s; }

.k12-erp-dot {
  fill: rgb(46, 204, 113);
  animation: k12DotBounce 3s ease-in-out infinite;
}

.k12-erp-dot.dot-1 { animation-delay: 0.2s; }
.k12-erp-dot.dot-2 { animation-delay: 0.5s; }
.k12-erp-dot.dot-3 { animation-delay: 0.8s; }
.k12-erp-dot.dot-4 { animation-delay: 1.1s; }

@keyframes k12GridPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}

@keyframes k12DotBounce {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}

/* Higher-Ed ERP Product Icon Animation */
.highered-erp-ring {
  fill: none;
  stroke: rgb(52, 152, 219);
  stroke-width: 2;
  opacity: 0;
  animation: higheredRingExpand 4s ease-in-out infinite;
}

.ring-1 { animation-delay: 0s; }
.ring-2 { animation-delay: 0.4s; }
.ring-3 { animation-delay: 0.8s; }

.highered-erp-core {
  fill: rgb(52, 152, 219);
  animation: higheredCorePulse 4s ease-in-out infinite;
}

.highered-erp-segment {
  fill: rgb(52, 152, 219);
  opacity: 0;
  animation: higheredSegmentFlash 4s ease-in-out infinite;
}

.seg-1 { animation-delay: 1.5s; }
.seg-2 { animation-delay: 1.7s; }
.seg-3 { animation-delay: 1.9s; }
.seg-4 { animation-delay: 2.1s; }

@keyframes higheredRingExpand {
  0%, 100% { opacity: 0; transform: scale(0.9); }
  30%, 70% { opacity: 0.6; transform: scale(1); }
}

@keyframes higheredCorePulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

@keyframes higheredSegmentFlash {
  0%, 35%, 100% { opacity: 0; }
  40%, 90% { opacity: 0.8; }
}

/* LMS Product Icon Animation */
.lms-unified-book {
  fill: none;
  stroke: rgb(155, 89, 182);
  stroke-width: 2.5;
  opacity: 0.6;
}

.lms-unified-spine {
  stroke: rgb(155, 89, 182);
  stroke-width: 2;
  opacity: 0.4;
}

.lms-unified-k12 {
  fill: rgba(46, 204, 113, 0.3);
  stroke: rgb(46, 204, 113);
  stroke-width: 2;
  animation: lmsK12Pulse 3s ease-in-out infinite;
}

.lms-unified-highered {
  fill: rgba(52, 152, 219, 0.3);
  stroke: rgb(52, 152, 219);
  stroke-width: 2;
  animation: lmsHigherEdPulse 3s ease-in-out infinite;
  animation-delay: 1.5s;
}

.lms-unified-connect {
  fill: none;
  stroke: rgb(155, 89, 182);
  stroke-width: 2;
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: lmsConnectDraw 3s ease-in-out infinite;
  animation-delay: 0.8s;
}

@keyframes lmsK12Pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

@keyframes lmsHigherEdPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

@keyframes lmsConnectDraw {
  0%, 100% { stroke-dashoffset: 30; opacity: 0.3; }
  50% { stroke-dashoffset: 0; opacity: 0.8; }
}

/* ========================================
   ERP MODULES GRID
   ======================================== */

.erp-modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.erp-module-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1.5px solid rgba(203, 216, 238, 0.6);
  border-radius: 12px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  animation: moduleCardPop 0.5s ease-out forwards;
  opacity: 0;
}

.erp-module-card:nth-child(1) { animation-delay: 0.1s; }
.erp-module-card:nth-child(2) { animation-delay: 0.15s; }
.erp-module-card:nth-child(3) { animation-delay: 0.2s; }
.erp-module-card:nth-child(4) { animation-delay: 0.25s; }
.erp-module-card:nth-child(5) { animation-delay: 0.3s; }
.erp-module-card:nth-child(6) { animation-delay: 0.35s; }
.erp-module-card:nth-child(7) { animation-delay: 0.4s; }
.erp-module-card:nth-child(8) { animation-delay: 0.45s; }

@keyframes moduleCardPop {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.erp-module-card:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 20px rgba(47, 126, 252, 0.15);
  border-color: var(--accent-400);
}

.module-mini-icon {
  font-size: 2rem;
  filter: grayscale(20%);
  transition: transform 0.3s ease;
}

.erp-module-card:hover .module-mini-icon {
  transform: scale(1.15);
}

.erp-module-card span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-700);
  text-align: center;
  line-height: 1.3;
}

/* ========================================
   LMS COMPARISON SECTION
   ======================================== */

.lms-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 48px;
  padding: 40px;
  background: rgba(247, 250, 255, 0.6);
  border-radius: 24px;
  border: 2px solid rgba(203, 216, 238, 0.5);
}

/* LMS Variants */
.lms-variant {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: variantSlideIn 0.8s ease-out forwards;
  opacity: 0;
}

.lms-k12 {
  animation-delay: 0.2s;
}

.lms-highered {
  animation-delay: 0.6s;
}

@keyframes variantSlideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.lms-highered {
  animation-name: variantSlideInRight;
}

@keyframes variantSlideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.lms-variant-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lms-variant-header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink-800);
}

.variant-badge {
  padding: 4px 12px;
  background: rgba(31, 111, 242, 0.1);
  border: 1px solid rgba(31, 111, 242, 0.2);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-600);
  width: fit-content;
}

.lms-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lms-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(203, 216, 238, 0.5);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.lms-feature:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(47, 126, 252, 0.1);
  border-color: var(--accent-300);
}

.feature-icon {
  font-size: 1.5rem;
  filter: grayscale(10%);
}

.lms-feature span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-700);
}

/* LMS Connector */
.lms-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  animation: connectorFadeIn 1s ease-out 0.4s forwards;
  opacity: 0;
}

@keyframes connectorFadeIn {
  to {
    opacity: 1;
  }
}

.lms-connector svg {
  width: 100px;
  height: 200px;
}

.connector-line {
  stroke: var(--accent-400);
  stroke-width: 2;
  opacity: 0.5;
  stroke-dasharray: 160;
  stroke-dashoffset: 160;
  animation: connectorLineDraw 2s ease-out 0.8s forwards;
}

@keyframes connectorLineDraw {
  to {
    stroke-dashoffset: 0;
  }
}

.connector-dot {
  fill: var(--accent-500);
  opacity: 0;
  animation: connectorDotAppear 0.5s ease-out forwards;
}

.dot-1 { animation-delay: 1.2s; }
.dot-2 { animation-delay: 1.4s; }
.dot-3 { animation-delay: 1.6s; }

@keyframes connectorDotAppear {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.connector-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-600);
  text-align: center;
  padding: 6px 12px;
  background: rgba(31, 111, 242, 0.08);
  border-radius: 999px;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS FOR NEW SOLUTIONS
   ======================================== */

@media (max-width: 960px) {
  .products-showcase {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .lms-comparison {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }

  .lms-connector {
    flex-direction: row;
    padding: 16px 0;
  }

  .lms-connector svg {
    width: 200px;
    height: 80px;
  }

  .connector-line {
    x1: 20;
    y1: 40;
    x2: 180;
    y2: 40;
  }

  .erp-modules-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .product-icon {
    width: 64px;
    height: 64px;
  }

  .product-card {
    padding: 24px 20px;
  }

  .product-card h3 {
    font-size: 1.15rem;
  }

  .lms-comparison {
    padding: 24px 20px;
    gap: 24px;
  }

  .lms-feature {
    padding: 10px 12px;
  }

  .feature-icon {
    font-size: 1.3rem;
  }

  .lms-feature span {
    font-size: 0.85rem;
  }

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

  .erp-module-card {
    padding: 16px 12px;
  }

  .module-mini-icon {
    font-size: 1.6rem;
  }

  .erp-module-card span {
    font-size: 0.8rem;
  }
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .product-card,
  .k12-erp-grid,
  .k12-erp-dot,
  .highered-erp-ring,
  .highered-erp-core,
  .highered-erp-segment,
  .lms-unified-k12,
  .lms-unified-highered,
  .lms-unified-connect,
  .erp-module-card,
  .lms-variant,
  .lms-connector,
  .connector-line,
  .connector-dot {
    animation: none !important;
    opacity: 1 !important;
  }

  .k12-erp-grid,
  .highered-erp-ring,
  .lms-unified-connect {
    opacity: 0.6 !important;
  }
}

.solutions-ecosystem {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Central Core */
.solutions-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.95));
  border: 3px solid var(--accent-500);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 32px rgba(47, 126, 252, 0.3),
              0 0 60px rgba(31, 111, 242, 0.15);
  z-index: 10;
  animation: coreFloat 4s ease-in-out infinite;
}

.core-pulse {
  position: absolute;
  inset: -10px;
  border: 3px solid var(--accent-400);
  border-radius: 50%;
  opacity: 0;
  animation: corePulseExpand 3s ease-out infinite;
}

.core-icon {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.core-icon svg {
  width: 100%;
  height: 100%;
}

/* Core Icon SVG Animation */
.core-orbit {
  fill: none;
  stroke: var(--accent-400);
  stroke-width: 1.5;
  opacity: 0.4;
  animation: coreOrbitPulse 3s ease-in-out infinite;
}

.orbit-1 { animation-delay: 0s; }
.orbit-2 { animation-delay: 0.4s; }

.core-center {
  fill: var(--accent-600);
  animation: coreCenterPulse 3s ease-in-out infinite;
}

.core-dot {
  fill: var(--accent-500);
  animation: coreDotOrbit 4s ease-in-out infinite;
}

.dot-1 { animation-delay: 0s; }
.dot-2 { animation-delay: 1.3s; }
.dot-3 { animation-delay: 2.6s; }

@keyframes coreOrbitPulse {
  0%, 100% { opacity: 0.3; stroke-width: 1.5; }
  50% { opacity: 0.6; stroke-width: 2; }
}

@keyframes coreCenterPulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

@keyframes coreDotOrbit {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

.core-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-600);
  letter-spacing: 0.5px;
}

@keyframes coreFloat {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -52%) scale(1.05); }
}

@keyframes corePulseExpand {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

/* Connection Lines SVG */
.solutions-connections {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.connection-line {
  stroke: var(--accent-400);
  stroke-width: 2.5;
  opacity: 0.4;
  stroke-dasharray: 8 4;
  animation: lineDash 2s linear infinite;
}

.line-1 { animation-delay: 0s; }
.line-2 { animation-delay: 0.5s; }
.line-3 { animation-delay: 1s; }
.line-4 { animation-delay: 1.5s; }

@keyframes lineDash {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 24; }
}

/* Flow Particles */
.flow-particle {
  fill: var(--accent-500);
  opacity: 0;
  filter: drop-shadow(0 0 6px rgba(47, 126, 252, 0.8));
}

.particle-1 {
  animation: flowToTop 4s ease-in-out infinite;
}

.particle-2 {
  animation: flowToRight 4s ease-in-out infinite;
  animation-delay: 1s;
}

.particle-3 {
  animation: flowToBottom 4s ease-in-out infinite;
  animation-delay: 2s;
}

.particle-4 {
  animation: flowToLeft 4s ease-in-out infinite;
  animation-delay: 3s;
}

@keyframes flowToTop {
  0% { cx: 200; cy: 200; opacity: 0; }
  10% { opacity: 1; }
  45% { cx: 200; cy: 80; opacity: 1; }
  50% { opacity: 0; }
  100% { cx: 200; cy: 80; opacity: 0; }
}

@keyframes flowToRight {
  0% { cx: 200; cy: 200; opacity: 0; }
  10% { opacity: 1; }
  45% { cx: 320; cy: 200; opacity: 1; }
  50% { opacity: 0; }
  100% { cx: 320; cy: 200; opacity: 0; }
}

@keyframes flowToBottom {
  0% { cx: 200; cy: 200; opacity: 0; }
  10% { opacity: 1; }
  45% { cx: 200; cy: 320; opacity: 1; }
  50% { opacity: 0; }
  100% { cx: 200; cy: 320; opacity: 0; }
}

@keyframes flowToLeft {
  0% { cx: 200; cy: 200; opacity: 0; }
  10% { opacity: 1; }
  45% { cx: 80; cy: 200; opacity: 1; }
  50% { opacity: 0; }
  100% { cx: 80; cy: 200; opacity: 0; }
}

/* Solution Modules */
.solution-module {
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid rgba(203, 216, 238, 0.7);
  border-radius: 16px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 16px rgba(14, 20, 35, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  animation: moduleFloat 3s ease-in-out infinite;
}

.module-erp {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  border-color: rgba(46, 204, 113, 0.6);
  animation-delay: 0s;
}

.module-lms {
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  border-color: rgba(155, 89, 182, 0.6);
  animation-delay: 0.5s;
}

.module-sis {
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  border-color: rgba(52, 152, 219, 0.6);
  animation-delay: 1s;
}

.module-portal {
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  border-color: rgba(241, 196, 15, 0.6);
  animation-delay: 1.5s;
}

.solution-module:hover {
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 12px 32px rgba(47, 126, 252, 0.25);
  border-color: var(--accent-500);
  z-index: 20;
}

.module-lms:hover,
.module-portal:hover {
  transform: translateY(-50%) scale(1.1);
}

@keyframes moduleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.module-erp { animation-name: moduleFloatCenter; }
.module-sis { animation-name: moduleFloatCenter; }

@keyframes moduleFloatCenter {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

.module-icon {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.08));
}

.module-icon svg {
  width: 100%;
  height: 100%;
}

/* ERP Module Icon Animation */
.erp-block {
  fill: rgba(46, 204, 113, 0.3);
  stroke: rgb(46, 204, 113);
  stroke-width: 1.5;
  animation: erpBlockPulse 3s ease-in-out infinite;
}

.block-1 { animation-delay: 0s; }
.block-2 { animation-delay: 0.3s; }
.block-3 { animation-delay: 0.6s; }
.block-4 { animation-delay: 0.9s; }

.erp-line {
  stroke: rgb(46, 204, 113);
  stroke-width: 2;
  opacity: 0.6;
  animation: erpLineFlow 3s ease-in-out infinite;
  animation-delay: 1.2s;
}

@keyframes erpBlockPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes erpLineFlow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.9; }
}

/* LMS Module Icon Animation */
.lms-book {
  fill: none;
  stroke: rgb(155, 89, 182);
  stroke-width: 2;
  opacity: 0.5;
}

.lms-page {
  stroke: rgb(155, 89, 182);
  stroke-width: 1.5;
  opacity: 0.4;
}

.lms-text {
  stroke: rgb(155, 89, 182);
  stroke-width: 1.5;
  opacity: 0;
  stroke-dasharray: 6;
  stroke-dashoffset: 6;
  animation: lmsTextAppear 3s ease-in-out infinite;
}

.line-1 { animation-delay: 0s; }
.line-2 { animation-delay: 0.5s; }
.line-3 { animation-delay: 1s; }

.lms-dot {
  fill: rgb(155, 89, 182);
  opacity: 0;
  animation: lmsDotBounce 3s ease-in-out infinite;
}

.lms-dot.dot-1 { animation-delay: 0.3s; }
.lms-dot.dot-2 { animation-delay: 0.8s; }
.lms-dot.dot-3 { animation-delay: 1.3s; }

@keyframes lmsTextAppear {
  0%, 100% { opacity: 0; stroke-dashoffset: 6; }
  40%, 80% { opacity: 0.7; stroke-dashoffset: 0; }
}

@keyframes lmsDotBounce {
  0%, 100% { opacity: 0; transform: scale(0); }
  40%, 80% { opacity: 1; transform: scale(1); }
  60% { transform: scale(1.4); }
}

/* SIS Module Icon Animation */
.sis-node {
  fill: rgb(52, 152, 219);
  animation: sisNodePulse 2.5s ease-in-out infinite;
}

.node-center {
  animation-delay: 0s;
}

.sis-node.node-1 { animation-delay: 0.2s; }
.sis-node.node-2 { animation-delay: 0.4s; }
.sis-node.node-3 { animation-delay: 0.6s; }
.sis-node.node-4 { animation-delay: 0.8s; }

.sis-link {
  stroke: rgb(52, 152, 219);
  stroke-width: 1.5;
  opacity: 0;
  animation: sisLinkAppear 2.5s ease-in-out infinite;
}

.sis-link:nth-child(6) { animation-delay: 1s; }
.sis-link:nth-child(7) { animation-delay: 1.1s; }
.sis-link:nth-child(8) { animation-delay: 1.2s; }
.sis-link:nth-child(9) { animation-delay: 1.3s; }

@keyframes sisNodePulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

@keyframes sisLinkAppear {
  0%, 35%, 100% { opacity: 0; }
  50%, 90% { opacity: 0.6; }
}

/* Portal Module Icon Animation */
.portal-ring {
  fill: none;
  stroke: rgb(241, 196, 15);
  stroke-width: 1.5;
  opacity: 0;
  animation: portalRingExpand 3s ease-in-out infinite;
}

.ring-1 { animation-delay: 0s; }
.ring-2 { animation-delay: 0.3s; }
.ring-3 { animation-delay: 0.6s; }

.portal-core {
  fill: rgb(241, 196, 15);
  animation: portalCorePulse 3s ease-in-out infinite;
}

.portal-ray {
  stroke: rgb(241, 196, 15);
  stroke-width: 2;
  stroke-linecap: round;
  opacity: 0;
  animation: portalRayFlash 3s ease-in-out infinite;
}

.ray-1 { animation-delay: 1s; }
.ray-2 { animation-delay: 1.2s; }
.ray-3 { animation-delay: 1.4s; }
.ray-4 { animation-delay: 1.6s; }

@keyframes portalRingExpand {
  0%, 100% { opacity: 0; transform: scale(0.8); }
  50% { opacity: 0.6; transform: scale(1); }
}

@keyframes portalCorePulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

@keyframes portalRayFlash {
  0%, 100% { opacity: 0; }
  30%, 70% { opacity: 0.8; }
  50% { opacity: 1; }
}

.solution-module h4 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink-800);
}

.solution-module p {
  margin: 0;
  font-size: 0.7rem;
  color: rgba(14, 20, 35, 0.6);
  text-align: center;
}

/* ========================================
   HIGHER-ED JOURNEY ANIMATION
   ======================================== */

.highered-animation {
  position: relative;
  padding: 40px 20px;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.highered-journey-svg {
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 500px;
  height: 200px;
  z-index: 1;
  pointer-events: none;
}

.journey-path {
  fill: none;
  stroke: var(--accent-400);
  stroke-width: 3;
  opacity: 0.5;
  animation: drawJourneyPath 5s ease-in-out infinite;
}

@keyframes drawJourneyPath {
  0%, 100% { stroke-dashoffset: 400; }
  50%, 90% { stroke-dashoffset: 0; }
}

.journey-flow {
  fill: var(--accent-500);
  opacity: 0;
  filter: drop-shadow(0 0 6px rgba(47, 126, 252, 0.8));
}

.flow-1 {
  animation: journeyFlowMove 6s ease-in-out infinite;
}

.flow-2 {
  animation: journeyFlowMove 6s ease-in-out infinite;
  animation-delay: 3s;
}

@keyframes journeyFlowMove {
  0% { cx: 50; opacity: 0; }
  10% { opacity: 1; }
  80% { cx: 450; opacity: 1; }
  90% { opacity: 0; }
  100% { cx: 450; opacity: 0; }
}

/* Journey Stages */
.journey-stage {
  position: absolute;
  top: 50px;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.98);
  border: 2.5px solid var(--accent-400);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 4px 16px rgba(14, 20, 35, 0.1);
  z-index: 5;
  animation: stageAppear 2s ease-out forwards;
  opacity: 0;
  transform: scale(0.8);
}

.stage-admissions {
  left: 5%;
  animation-delay: 0.5s;
}

.stage-learning {
  left: 30%;
  animation-delay: 1s;
}

.stage-success {
  left: 55%;
  animation-delay: 1.5s;
}

.stage-alumni {
  right: 5%;
  animation-delay: 2s;
}

@keyframes stageAppear {
  0% {
    opacity: 0;
    transform: scale(0.5) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.stage-icon {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.stage-icon svg {
  width: 100%;
  height: 100%;
}

/* Admissions Stage Icon Animation */
.admission-form {
  fill: rgba(31, 111, 242, 0.1);
  stroke: var(--accent-500);
  stroke-width: 2;
  opacity: 0.7;
}

.admission-line {
  stroke: var(--accent-400);
  stroke-width: 1.5;
  opacity: 0;
  stroke-dasharray: 12;
  stroke-dashoffset: 12;
  animation: admissionLineWrite 3s ease-in-out infinite;
}

.admission-line.line-1 { animation-delay: 0.2s; }
.admission-line.line-2 { animation-delay: 0.5s; }
.admission-line.line-3 { animation-delay: 0.8s; }

.admission-check {
  fill: none;
  stroke: var(--accent-600);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 15;
  stroke-dashoffset: 15;
  animation: admissionCheckDraw 3s ease-in-out infinite;
  animation-delay: 1.2s;
}

@keyframes admissionLineWrite {
  0%, 100% { opacity: 0; stroke-dashoffset: 12; }
  30%, 90% { opacity: 0.7; stroke-dashoffset: 0; }
}

@keyframes admissionCheckDraw {
  0%, 100% { opacity: 0; stroke-dashoffset: 15; }
  40%, 90% { opacity: 1; stroke-dashoffset: 0; }
}

/* Learning Stage Icon Animation */
.learning-book {
  fill: none;
  stroke: var(--accent-500);
  stroke-width: 2;
  opacity: 0.5;
}

.learning-spine {
  stroke: var(--accent-400);
  stroke-width: 1.5;
  opacity: 0.3;
}

.learning-curve {
  fill: none;
  stroke: var(--accent-600);
  stroke-width: 1.5;
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
  animation: learningCurveDraw 4s ease-in-out infinite;
}

.learning-bubble {
  fill: var(--accent-500);
  opacity: 0;
  animation: learningBubbleRise 3s ease-in-out infinite;
}

.bubble-1 { animation-delay: 0.3s; }
.bubble-2 { animation-delay: 0.6s; }
.bubble-3 { animation-delay: 0.9s; }

@keyframes learningCurveDraw {
  0%, 100% { stroke-dashoffset: 20; opacity: 0.3; }
  50%, 90% { stroke-dashoffset: 0; opacity: 0.8; }
}

@keyframes learningBubbleRise {
  0%, 100% { opacity: 0; transform: translateY(0); }
  30%, 80% { opacity: 0.8; transform: translateY(-3px); }
  50% { opacity: 1; transform: translateY(-5px); }
}

/* Success Stage Icon Animation */
.success-star {
  fill: var(--accent-600);
  opacity: 0;
  transform-origin: center;
  animation: successStarBurst 4s ease-in-out infinite;
}

.success-ring {
  fill: none;
  stroke: var(--accent-400);
  stroke-width: 1.5;
  opacity: 0;
  animation: successRingExpand 4s ease-in-out infinite;
}

.success-ring.ring-1 { animation-delay: 0.3s; }
.success-ring.ring-2 { animation-delay: 0.6s; }

@keyframes successStarBurst {
  0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
  30% { opacity: 1; transform: scale(1.1) rotate(10deg); }
  50%, 85% { opacity: 1; transform: scale(1) rotate(0deg); }
}

@keyframes successRingExpand {
  0%, 25%, 100% { opacity: 0; transform: scale(0.8); }
  50%, 85% { opacity: 0.5; transform: scale(1); }
}

/* Alumni Stage Icon Animation */
.alumni-cap {
  fill: var(--accent-600);
  opacity: 0.8;
  animation: alumniCapFloat 3s ease-in-out infinite;
}

.alumni-tassel {
  stroke: var(--accent-500);
  stroke-width: 2;
  stroke-linecap: round;
  animation: alumniTasselSwing 2s ease-in-out infinite;
}

.alumni-tassel-end {
  fill: var(--accent-500);
  animation: alumniTasselEndSwing 2s ease-in-out infinite;
}

.alumni-gown {
  fill: none;
  stroke: var(--accent-400);
  stroke-width: 2;
  opacity: 0.5;
}

.alumni-gown-line {
  stroke: var(--accent-400);
  stroke-width: 1.5;
  opacity: 0.3;
}

@keyframes alumniCapFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@keyframes alumniTasselSwing {
  0%, 100% { transform: rotate(-5deg); transform-origin: 20px 12px; }
  50% { transform: rotate(5deg); transform-origin: 20px 12px; }
}

@keyframes alumniTasselEndSwing {
  0%, 100% { transform: translateX(-1px); }
  50% { transform: translateX(1px); }
}

.stage-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ink-700);
  text-align: center;
}

.stage-pulse {
  position: absolute;
  inset: -6px;
  border: 2px solid var(--accent-500);
  border-radius: 50%;
  opacity: 0;
  animation: stagePulse 3s ease-out infinite;
}

.stage-admissions .stage-pulse { animation-delay: 0.5s; }
.stage-learning .stage-pulse { animation-delay: 1s; }
.stage-success .stage-pulse { animation-delay: 1.5s; }
.stage-alumni .stage-pulse { animation-delay: 2s; }

@keyframes stagePulse {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.4);
  }
}

/* Journey Metrics */
.journey-metrics {
  margin-top: 180px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 5;
}

.metric-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.metric-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-700);
}

.metric-bar {
  height: 10px;
  background: rgba(31, 111, 242, 0.12);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.metric-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-600), var(--accent-400));
  border-radius: 999px;
  animation: metricFillGrow 2s ease-out forwards;
  transform-origin: left;
  animation-delay: 2.5s;
  width: 0 !important;
}

@keyframes metricFillGrow {
  from {
    width: 0;
  }
  to {
    width: var(--target-width, 85%);
  }
}

.metric-item:nth-child(1) .metric-fill {
  --target-width: 85%;
}

.metric-item:nth-child(2) .metric-fill {
  --target-width: 92%;
  animation-delay: 2.8s;
}

/* ========================================
   K-12 NETWORK HUB ANIMATION
   ======================================== */

.k12-animation {
  position: relative;
  padding: 40px 20px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Central Hub */
.k12-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.95));
  border: 3px solid var(--accent-600);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 8px 32px rgba(47, 126, 252, 0.25);
  z-index: 10;
  animation: hubPulse 3s ease-in-out infinite;
}

@keyframes hubPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.08); }
}

.hub-pulse {
  position: absolute;
  inset: -8px;
  border: 3px solid var(--accent-500);
  border-radius: 50%;
  opacity: 0;
  animation: hubPulseExpand 2.5s ease-out infinite;
}

@keyframes hubPulseExpand {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.6);
  }
}

.hub-icon {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1));
}

.hub-icon svg {
  width: 100%;
  height: 100%;
}

/* Hub Icon Animation */
.hub-building {
  fill: rgba(31, 111, 242, 0.15);
  stroke: var(--accent-600);
  stroke-width: 2;
  opacity: 0.8;
}

.hub-window {
  fill: var(--accent-400);
  opacity: 0;
  animation: hubWindowLight 3s ease-in-out infinite;
}

.win-1 { animation-delay: 0s; }
.win-2 { animation-delay: 0.3s; }
.win-3 { animation-delay: 0.6s; }
.win-4 { animation-delay: 0.9s; }

.hub-roof {
  fill: none;
  stroke: var(--accent-600);
  stroke-width: 2.5;
  stroke-linejoin: round;
  opacity: 0.7;
}

.hub-beacon {
  fill: var(--accent-500);
  animation: hubBeaconPulse 2s ease-in-out infinite;
}

@keyframes hubWindowLight {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.9; }
}

@keyframes hubBeaconPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

.hub-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-600);
  text-align: center;
}

/* K-12 Connections SVG */
.k12-connections-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.k12-connection {
  stroke: var(--accent-400);
  stroke-width: 2;
  opacity: 0;
  animation: connectionAppear 4s ease-in-out infinite;
}

.conn-1 { animation-delay: 0s; }
.conn-2 { animation-delay: 0.3s; }
.conn-3 { animation-delay: 0.6s; }
.conn-4 { animation-delay: 0.9s; }
.conn-5 { animation-delay: 1.2s; }
.conn-6 { animation-delay: 1.5s; }

@keyframes connectionAppear {
  0%, 100% { opacity: 0; }
  20%, 90% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

/* Sync Particles */
.sync-particle {
  fill: var(--accent-500);
  opacity: 0;
  filter: drop-shadow(0 0 4px rgba(47, 126, 252, 0.8));
}

.sync-1 {
  animation: syncMove1 5s ease-in-out infinite;
}

.sync-2 {
  animation: syncMove2 5s ease-in-out infinite;
  animation-delay: 1.7s;
}

.sync-3 {
  animation: syncMove3 5s ease-in-out infinite;
  animation-delay: 3.3s;
}

@keyframes syncMove1 {
  0% { cx: 200; cy: 200; opacity: 0; }
  10% { opacity: 1; }
  40% { cx: 120; cy: 100; opacity: 1; }
  45% { opacity: 0; }
  100% { cx: 120; cy: 100; opacity: 0; }
}

@keyframes syncMove2 {
  0% { cx: 200; cy: 200; opacity: 0; }
  10% { opacity: 1; }
  40% { cx: 300; cy: 200; opacity: 1; }
  45% { opacity: 0; }
  100% { cx: 300; cy: 200; opacity: 0; }
}

@keyframes syncMove3 {
  0% { cx: 200; cy: 200; opacity: 0; }
  10% { opacity: 1; }
  40% { cx: 120; cy: 300; opacity: 1; }
  45% { opacity: 0; }
  100% { cx: 120; cy: 300; opacity: 0; }
}

/* School Nodes */
.school-node {
  position: absolute;
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid var(--accent-300);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 4px 12px rgba(14, 20, 35, 0.08);
  transition: all 0.3s ease;
  animation: nodeAppear 1s ease-out forwards;
  opacity: 0;
  transform: scale(0.8);
}

.node-1 {
  top: 10%;
  left: 20%;
  animation-delay: 0.2s;
}

.node-2 {
  top: 10%;
  right: 20%;
  animation-delay: 0.4s;
}

.node-3 {
  top: 50%;
  right: 5%;
  transform: translateY(-50%) scale(0.8);
  animation-delay: 0.6s;
}

.node-4 {
  bottom: 10%;
  right: 20%;
  animation-delay: 0.8s;
}

.node-5 {
  bottom: 10%;
  left: 20%;
  animation-delay: 1s;
}

.node-6 {
  top: 50%;
  left: 5%;
  transform: translateY(-50%) scale(0.8);
  animation-delay: 1.2s;
}

@keyframes nodeAppear {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.node-3,
.node-6 {
  @keyframes nodeAppear {
    100% {
      transform: translateY(-50%) scale(1);
    }
  }
}

.school-node:hover {
  transform: scale(1.1);
  border-color: var(--accent-500);
  box-shadow: 0 8px 24px rgba(47, 126, 252, 0.2);
  z-index: 15;
}

.node-icon {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.08));
}

.node-icon svg {
  width: 100%;
  height: 100%;
}

/* School Node Icon Animation */
.school-building {
  fill: rgba(31, 111, 242, 0.1);
  stroke: var(--accent-400);
  stroke-width: 1.5;
  opacity: 0.7;
}

.school-door {
  fill: var(--accent-300);
  opacity: 0.6;
}

.school-window {
  fill: var(--accent-400);
  opacity: 0;
  animation: schoolWindowBlink 4s ease-in-out infinite;
}

.school-window:nth-child(3) { animation-delay: 0s; }
.school-window:nth-child(4) { animation-delay: 0.5s; }

.school-roof {
  fill: none;
  stroke: var(--accent-500);
  stroke-width: 2;
  stroke-linejoin: round;
  opacity: 0.6;
}

@keyframes schoolWindowBlink {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.7; }
}

.node-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--ink-700);
}

/* K-12 Touchpoints */
.k12-touchpoints {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 90%;
  z-index: 15;
}

.touchpoint-badge {
  padding: 6px 12px;
  background: rgba(31, 111, 242, 0.1);
  border: 1px solid rgba(31, 111, 242, 0.2);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent-600);
  animation: badgeFadeIn 1s ease-out forwards;
  opacity: 0;
  transform: translateY(10px);
}

.touchpoint-badge:nth-child(1) { animation-delay: 1.5s; }
.touchpoint-badge:nth-child(2) { animation-delay: 1.7s; }
.touchpoint-badge:nth-child(3) { animation-delay: 1.9s; }

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

/* ========================================
   RESPONSIVE ADJUSTMENTS FOR SOLUTIONS
   ======================================== */

@media (max-width: 960px) {
  .solutions-hero-animation {
    min-height: 450px;
  }

  .solutions-ecosystem {
    max-width: 450px;
    height: 450px;
  }

  .solutions-core {
    width: 100px;
    height: 100px;
  }

  .solution-module {
    width: 85px;
    height: 85px;
  }

  .highered-animation {
    min-height: 320px;
  }

  .journey-stage {
    width: 70px;
    height: 70px;
  }

  .k12-animation {
    min-height: 360px;
  }

  .school-node {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 640px) {
  .solutions-hero-animation {
    min-height: 400px;
  }

  .solutions-ecosystem {
    max-width: 380px;
    height: 380px;
  }

  .solutions-core {
    width: 90px;
    height: 90px;
  }

  .core-icon {
    font-size: 2rem;
  }

  .solution-module {
    width: 75px;
    height: 75px;
    padding: 8px;
  }

  .module-icon {
    font-size: 1.6rem;
  }

  .solution-module h4 {
    font-size: 0.8rem;
  }

  .solution-module p {
    font-size: 0.65rem;
  }

  .highered-animation {
    min-height: 300px;
    padding: 30px 10px;
  }

  .journey-stage {
    width: 60px;
    height: 60px;
  }

  .stage-icon {
    font-size: 1.5rem;
  }

  .stage-label {
    font-size: 0.6rem;
  }

  .journey-metrics {
    margin-top: 160px;
  }

  .k12-animation {
    min-height: 340px;
    padding: 30px 10px;
  }

  .k12-hub {
    width: 80px;
    height: 80px;
  }

  .school-node {
    width: 55px;
    height: 55px;
  }

  .node-icon {
    font-size: 1.3rem;
  }

  .node-label {
    font-size: 0.6rem;
  }

  .touchpoint-badge {
    font-size: 0.65rem;
    padding: 5px 10px;
  }
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .solutions-core,
  .core-pulse,
  .core-orbit,
  .core-center,
  .core-dot,
  .connection-line,
  .flow-particle,
  .solution-module,
  .erp-block,
  .erp-line,
  .lms-text,
  .lms-dot,
  .sis-node,
  .sis-link,
  .portal-ring,
  .portal-core,
  .portal-ray,
  .journey-path,
  .journey-flow,
  .journey-stage,
  .stage-pulse,
  .admission-line,
  .admission-check,
  .learning-curve,
  .learning-bubble,
  .success-star,
  .success-ring,
  .alumni-cap,
  .alumni-tassel,
  .alumni-tassel-end,
  .metric-fill,
  .k12-hub,
  .hub-pulse,
  .hub-window,
  .hub-beacon,
  .k12-connection,
  .sync-particle,
  .school-node,
  .school-window,
  .touchpoint-badge {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  /* Static opacity for reduced motion */
  .core-orbit,
  .connection-line,
  .flow-particle,
  .erp-line,
  .lms-text,
  .lms-dot,
  .sis-link,
  .portal-ring,
  .portal-ray,
  .journey-path,
  .journey-flow,
  .admission-line,
  .admission-check,
  .learning-curve,
  .learning-bubble,
  .success-star,
  .success-ring,
  .k12-connection,
  .sync-particle,
  .hub-window,
  .school-window {
    opacity: 0.6 !important;
  }

  .solution-module:hover,
  .school-node:hover {
    transform: scale(1.05) !important;
  }

  .module-erp,
  .module-sis {
    transform: translateX(-50%) !important;
  }

  .module-lms,
  .module-portal,
  .node-3,
  .node-6 {
    transform: translateY(-50%) !important;
  }

  .solutions-core {
    transform: translate(-50%, -50%) !important;
  }

  .k12-hub {
    transform: translate(-50%, -50%) !important;
  }

  .metric-fill {
    width: 85% !important;
  }
}

/* ========================================
   SOLUTIONS PAGE - NEW HERO SECTION
   ======================================== */

/* Hero Container - Full Width */
.hero-solutions {
  position: relative;
  background: #ffffff;
  padding: 80px 0 100px;
  overflow: hidden;
}

.hero-solutions-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Headline Section - Bold & Centered */
.hero-headline-section {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
}

.eyebrow-large {
  display: inline-block;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-500);
  margin-bottom: 24px;
}

.hero-title-xlarge {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.1;
  color: #000000;
  margin: 0 0 28px 0;
  letter-spacing: -1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.hero-subtitle-large {
  font-size: 1.35rem;
  line-height: 1.7;
  color: #1a202c;
  margin: 0;
  font-weight: 600;
}

/* Overlapping Product Cards */
.hero-products-overlap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 80px;
  perspective: 1000px;
}

.product-overlap-card {
  position: relative;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 24px 18px;
  box-shadow: 0 2px 12px rgba(14, 20, 35, 0.08), 0 8px 32px rgba(14, 20, 35, 0.06);
  border: 2px solid rgba(203, 216, 238, 0.5);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  animation: cardFadeUp 0.8s ease-out forwards;
}

.card-erp-overlap {
  animation-delay: 0.2s;
  border-color: rgba(52, 152, 219, 0.3);
}

.card-lms-overlap {
  animation-delay: 0.4s;
  border-color: rgba(46, 204, 113, 0.3);
  transform: translateY(20px);
}

.card-sis-overlap {
  animation-delay: 0.6s;
  border-color: rgba(155, 89, 182, 0.3);
}

@keyframes cardFadeUp {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.product-overlap-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 60px rgba(47, 126, 252, 0.2);
  z-index: 10;
}

.card-erp-overlap:hover {
  border-color: rgba(52, 152, 219, 0.6);
}

.card-lms-overlap:hover {
  border-color: rgba(46, 204, 113, 0.6);
}

.card-sis-overlap:hover {
  border-color: rgba(155, 89, 182, 0.6);
}

.product-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Product Badge */
.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(47, 126, 252, 0.08);
  border-radius: 999px;
  margin-bottom: 24px;
  width: fit-content;
}

.badge-icon {
  font-size: 1.2rem;
  line-height: 1;
}

.badge-text {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-600);
}

.product-overlap-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0a1628;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.product-overlap-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #4a5568;
  margin: 0 0 24px 0;
}

/* Mini Animations Container */
.mini-animation {
  width: 100%;
  height: 180px;
  margin: 20px 0;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(203, 216, 238, 0.4);
}

.mini-animation svg {
  width: 100%;
  height: 100%;
}

/* Product Link */
.product-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-600);
  text-decoration: none;
  margin-top: auto;
  transition: all 0.3s ease;
}

.product-link:hover {
  color: var(--accent-500);
  transform: translateX(4px);
}

/* Bottom CTA */
.hero-bottom-cta {
  text-align: center;
  padding-top: 40px;
  border-top: 2px solid rgba(203, 216, 238, 0.4);
}

.cta-text {
  font-size: 1.1rem;
  color: var(--ink-700);
  margin: 0 0 24px 0;
  font-weight: 500;
}

.cta-primary-large {
  display: inline-block;
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--accent-500);
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(47, 126, 252, 0.3);
  transition: all 0.3s ease;
}

.cta-primary-large:hover {
  background: var(--accent-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(47, 126, 252, 0.4);
}

/* ===== MINI ANIMATION STYLES ===== */

/* ===== ERP: Circular Ecosystem Animation ===== */
.erp-hub .hub-core {
  fill: rgba(52, 152, 219, 0.25);
  stroke: rgb(52, 152, 219);
  stroke-width: 3;
  opacity: 0;
  animation: hubPulse 0.8s ease-out 0.2s forwards, centralPulse 3s ease-in-out 1.5s infinite;
  filter: drop-shadow(0 0 8px rgba(52, 152, 219, 0.5));
}

.erp-hub .hub-ring {
  fill: none;
  stroke: rgb(52, 152, 219);
  stroke-width: 2;
  stroke-dasharray: 5 3;
  opacity: 0;
  animation: hubPulse 0.8s ease-out 0.3s forwards, ringRotate 8s linear 1.5s infinite;
}

.erp-hub .hub-text {
  fill: rgb(41, 128, 185);
  opacity: 0;
  animation: textPop 0.6s ease-out 0.6s forwards;
}

.dept-node circle {
  fill: rgba(52, 152, 219, 0.15);
  stroke: rgb(52, 152, 219);
  stroke-width: 2.5;
  opacity: 0;
  transform-origin: center;
  animation: nodePopIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  filter: drop-shadow(0 2px 6px rgba(52, 152, 219, 0.3));
}

.dept-node text {
  fill: rgb(41, 128, 185);
  font-weight: 600;
  opacity: 0;
  animation: textPop 0.5s ease-out forwards;
}

.node-admissions circle { animation-delay: 0.4s; }
.node-admissions text { animation-delay: 0.6s; }
.node-finance circle { animation-delay: 0.5s; }
.node-finance text { animation-delay: 0.7s; }
.node-academics circle { animation-delay: 0.6s; }
.node-academics text { animation-delay: 0.8s; }
.node-hr circle { animation-delay: 0.7s; }
.node-hr text { animation-delay: 0.9s; }
.node-ops circle { animation-delay: 0.8s; }
.node-ops text { animation-delay: 1s; }
.node-reports circle { animation-delay: 0.9s; }
.node-reports text { animation-delay: 1.1s; }

.connect-line {
  stroke: rgb(52, 152, 219);
  stroke-width: 2;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  opacity: 0;
  animation: lineDraw 0.8s ease-out forwards;
}

.line-1 { animation-delay: 1.2s; }
.line-2 { animation-delay: 1.25s; }
.line-3 { animation-delay: 1.3s; }
.line-4 { animation-delay: 1.35s; }
.line-5 { animation-delay: 1.4s; }
.line-6 { animation-delay: 1.45s; }

.flow-particle {
  fill: rgb(52, 152, 219);
  opacity: 0;
  filter: drop-shadow(0 0 6px rgba(52, 152, 219, 0.8));
  animation: circularFlow 3s ease-in-out infinite;
}

.p-1 { animation-delay: 2s; }
.p-2 { animation-delay: 2.5s; }
.p-3 { animation-delay: 3s; }
.p-4 { animation-delay: 3.5s; }
.p-5 { animation-delay: 4s; }
.p-6 { animation-delay: 4.5s; }

@keyframes hubPulse {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  60% {
    transform: scale(1.15);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes centralPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.9;
  }
}

@keyframes ringRotate {
  from {
    transform: rotate(0deg);
    transform-origin: center;
  }
  to {
    transform: rotate(360deg);
    transform-origin: center;
  }
}

@keyframes nodePopIn {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  60% {
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes textPop {
  0% {
    opacity: 0;
    transform: translateY(5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineDraw {
  to {
    opacity: 0.7;
    stroke-dashoffset: 0;
  }
}

@keyframes circularFlow {
  0%, 100% {
    opacity: 0;
    transform: scale(0);
  }
  15% {
    opacity: 1;
    transform: scale(1.4);
  }
  50% {
    opacity: 0.9;
    transform: scale(1);
  }
  85% {
    opacity: 0.3;
    transform: scale(0.8);
  }
}

/* ===== LMS: Interactive Learning Book Animation ===== */
.book-base .book-cover {
  fill: rgba(72, 187, 120, 0.2);
  stroke: rgb(72, 187, 120);
  stroke-width: 3;
  opacity: 0;
  animation: bookOpen 0.8s ease-out 0.2s forwards;
  filter: drop-shadow(0 4px 8px rgba(72, 187, 120, 0.3));
}

.book-base .book-spine {
  stroke: rgb(56, 161, 105);
  stroke-width: 3;
  opacity: 0;
  animation: spineAppear 0.6s ease-out 0.4s forwards;
}

.book-page .page-bg {
  fill: rgba(255, 255, 255, 0.95);
  stroke: rgb(72, 187, 120);
  stroke-width: 1.5;
  opacity: 0;
  animation: pageFlip 0.6s ease-out forwards;
}

.page-left .page-bg { animation-delay: 0.6s; }
.page-right .page-bg { animation-delay: 0.7s; }

.book-page .page-line {
  stroke: rgb(72, 187, 120);
  stroke-width: 1.5;
  opacity: 0;
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: lineWrite 0.5s ease-out forwards;
}

.page-line:nth-child(2) { animation-delay: 0.9s; }
.page-line:nth-child(3) { animation-delay: 1s; }
.page-line:nth-child(4) { animation-delay: 1.1s; }
.page-line:nth-child(5) { animation-delay: 1.2s; }

.book-page .page-icon {
  fill: rgba(72, 187, 120, 0.2);
  stroke: rgb(72, 187, 120);
  stroke-width: 2;
  opacity: 0;
  animation: iconPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1s forwards;
}

.book-page .page-button {
  fill: rgba(72, 187, 120, 0.3);
  stroke: rgb(72, 187, 120);
  stroke-width: 2;
  opacity: 0;
  animation: iconPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1.1s forwards;
}

.k-particle {
  fill: rgb(72, 187, 120);
  opacity: 0;
  filter: drop-shadow(0 0 5px rgba(72, 187, 120, 0.7));
  animation: particleRise 2.5s ease-out infinite;
}

.kp-1 { animation-delay: 1.5s; }
.kp-2 { animation-delay: 1.7s; }
.kp-3 { animation-delay: 1.9s; }
.kp-4 { animation-delay: 2.1s; }
.kp-5 { animation-delay: 2.3s; }
.kp-6 { animation-delay: 2.5s; }

.student-dot {
  fill: rgba(72, 187, 120, 0.3);
  stroke: rgb(72, 187, 120);
  stroke-width: 2;
  opacity: 0;
  animation: dotAppear 0.5s ease-out forwards, dotBounce 2s ease-in-out 3s infinite;
}

.sd-1 { animation-delay: 1.3s; }
.sd-2 { animation-delay: 1.4s; }
.sd-3 { animation-delay: 1.5s; }
.sd-4 { animation-delay: 1.6s; }

.learning-beam {
  fill: none;
  stroke: rgb(72, 187, 120);
  stroke-width: 2;
  opacity: 0;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: beamFlow 1s ease-out forwards;
  filter: drop-shadow(0 0 3px rgba(72, 187, 120, 0.5));
}

.beam-1 { animation-delay: 1.7s; }
.beam-2 { animation-delay: 1.8s; }

@keyframes bookOpen {
  0% {
    opacity: 0;
    transform: scaleY(0.3) rotateX(45deg);
  }
  60% {
    transform: scaleY(1.05) rotateX(0deg);
  }
  100% {
    opacity: 1;
    transform: scaleY(1) rotateX(0deg);
  }
}

@keyframes spineAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes pageFlip {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  60% {
    transform: scaleX(1.05);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes lineWrite {
  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}

@keyframes iconPop {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  60% {
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes particleRise {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }
  20% {
    opacity: 1;
    transform: translateY(-10px) scale(1);
  }
  80% {
    opacity: 0.8;
    transform: translateY(-35px) scale(0.8);
  }
  100% {
    opacity: 0;
    transform: translateY(-50px) scale(0.5);
  }
}

@keyframes dotAppear {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  60% {
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes dotBounce {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

@keyframes beamFlow {
  to {
    opacity: 0.5;
    stroke-dashoffset: 0;
  }
}

/* ===== SIS: 3D Database Layers Animation ===== */
.db-layer {
  fill: none;
  stroke: rgb(155, 89, 182);
  stroke-width: 2.5;
  opacity: 0;
  animation: layerAppear 0.6s ease-out forwards;
  filter: drop-shadow(0 2px 6px rgba(155, 89, 182, 0.3));
}

.layer-1 { animation-delay: 0.6s; fill: rgba(155, 89, 182, 0.25); }
.layer-2 { animation-delay: 0.5s; fill: rgba(155, 89, 182, 0.2); }
.layer-3 { animation-delay: 0.4s; fill: rgba(155, 89, 182, 0.15); }

.db-layer-bottom {
  fill: rgba(155, 89, 182, 0.3);
  stroke: rgb(155, 89, 182);
  stroke-width: 2;
  opacity: 0;
  animation: layerAppear 0.6s ease-out forwards;
}

.db-side {
  fill: rgba(155, 89, 182, 0.25);
  stroke: rgb(155, 89, 182);
  stroke-width: 2;
  opacity: 0;
  animation: layerAppear 0.6s ease-out forwards;
}

.side-1 { animation-delay: 0.6s; }
.side-2 { animation-delay: 0.5s; }
.side-3 { animation-delay: 0.4s; }

.record-slide {
  fill: rgba(155, 89, 182, 0.4);
  stroke: rgb(155, 89, 182);
  stroke-width: 2;
  opacity: 0;
  animation: slideOut 1s ease-out forwards;
  filter: drop-shadow(0 2px 4px rgba(155, 89, 182, 0.4));
}

.r-1 { animation-delay: 1.2s; }
.r-2 { animation-delay: 1.4s; }
.r-3 { animation-delay: 1.6s; }

.search-beam {
  stroke: rgb(155, 89, 182);
  stroke-width: 2.5;
  opacity: 0;
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  animation: beamScan 1s ease-out forwards;
  filter: drop-shadow(0 0 5px rgba(155, 89, 182, 0.6));
}

.sb-1 { animation-delay: 0.8s; }
.sb-2 { animation-delay: 0.9s; }

.query-source {
  fill: rgba(155, 89, 182, 0.3);
  stroke: rgb(155, 89, 182);
  stroke-width: 2.5;
  opacity: 0;
  animation: sourcePulse 0.5s ease-out forwards, queryPulse 2s ease-in-out 1.5s infinite;
  filter: drop-shadow(0 0 6px rgba(155, 89, 182, 0.6));
}

.qs-1 { animation-delay: 0.7s; }
.qs-2 { animation-delay: 0.75s; }

.terminal {
  fill: rgba(155, 89, 182, 0.2);
  stroke: rgb(155, 89, 182);
  stroke-width: 2;
  opacity: 0;
  animation: terminalPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.t-1 { animation-delay: 1.8s; }
.t-2 { animation-delay: 1.85s; }
.t-3 { animation-delay: 1.9s; }

.terminal-connection {
  stroke: rgb(155, 89, 182);
  stroke-width: 2;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  opacity: 0;
  animation: connDraw 0.6s ease-out forwards;
}

.tc-1 { animation-delay: 2s; }
.tc-2 { animation-delay: 2.05s; }
.tc-3 { animation-delay: 2.1s; }

.sync-pulse {
  fill: rgb(155, 89, 182);
  opacity: 0;
  animation: centralPulse 2.5s ease-in-out 2.5s infinite;
  filter: drop-shadow(0 0 8px rgba(155, 89, 182, 0.8));
}

.sync-pulse-ring {
  fill: none;
  stroke: rgb(155, 89, 182);
  stroke-width: 2;
  opacity: 0;
  animation: ringExpand 2.5s ease-out 2.5s infinite;
}

.spr-1 { animation-delay: 2.5s; }
.spr-2 { animation-delay: 2.7s; }

@keyframes layerAppear {
  0% {
    opacity: 0;
    transform: translateY(-10px) scale(0.9);
  }
  60% {
    transform: translateY(0) scale(1.03);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes slideOut {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes beamScan {
  to {
    opacity: 0.7;
    stroke-dashoffset: 0;
  }
}

@keyframes sourcePulse {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  60% {
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes queryPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.9;
  }
}

@keyframes terminalPop {
  0% {
    opacity: 0;
    transform: scale(0) translateY(10px);
  }
  60% {
    transform: scale(1.1) translateY(0);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes connDraw {
  to {
    opacity: 0.7;
    stroke-dashoffset: 0;
  }
}

@keyframes ringExpand {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(2);
  }
}

/* ===== LMS CARD ANIMATION ===== */
/* Teacher/content distributing to students */
.lms-teacher {
  fill: rgba(46, 204, 113, 0.2);
  stroke: rgb(46, 204, 113);
  stroke-width: 2.5;
  opacity: 0;
  animation: fadeIn 0.6s ease-out 0.8s forwards, pulse 2s ease-in-out 2.5s infinite;
}

.lms-student {
  fill: rgb(46, 204, 113);
  opacity: 0;
  animation: modulePopIn 0.5s ease-out forwards;
}

.student-1 { animation-delay: 1.2s; }
.student-2 { animation-delay: 1.3s; }
.student-3 { animation-delay: 1.4s; }
.student-4 { animation-delay: 1.5s; }
.student-5 { animation-delay: 1.6s; }
.student-6 { animation-delay: 1.7s; }

.lms-ray {
  stroke: rgb(46, 204, 113);
  stroke-width: 1.5;
  opacity: 0;
  animation: rayFlash 0.3s ease-out forwards;
}

.ray-1 { animation-delay: 1.9s; }
.ray-2 { animation-delay: 2s; }
.ray-3 { animation-delay: 2.1s; }
.ray-4 { animation-delay: 2.2s; }
.ray-5 { animation-delay: 2.3s; }
.ray-6 { animation-delay: 2.4s; }

.lms-content {
  fill: rgb(39, 174, 96);
  opacity: 0;
  animation: contentFlow 2s ease-in-out infinite;
}

.content-1 { animation-delay: 2.6s; }
.content-2 { animation-delay: 3.1s; }

@keyframes rayFlash {
  0% { opacity: 0; }
  50% { opacity: 0.6; }
  100% { opacity: 0.3; }
}

@keyframes contentFlow {
  0% { opacity: 0; transform: translate(0, 0); }
  20% { opacity: 1; }
  80% { opacity: 1; transform: translate(30px, -15px); }
  100% { opacity: 0; transform: translate(50px, -25px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ===== SIS CARD ANIMATION ===== */
/* Database with access points */
.sis-db {
  fill: none;
  stroke: rgb(155, 89, 182);
  stroke-width: 2;
  opacity: 0;
  animation: fadeIn 0.6s ease-out forwards;
}

.db-base { animation-delay: 0.8s; fill: rgba(155, 89, 182, 0.1); }
.db-top { animation-delay: 1s; fill: rgba(155, 89, 182, 0.15); }
.db-left, .db-right { animation-delay: 0.9s; }

.sis-record {
  fill: rgb(155, 89, 182);
  opacity: 0;
  animation: recordSlideIn 0.4s ease-out forwards;
}

.rec-1 { animation-delay: 1.3s; }
.rec-2 { animation-delay: 1.4s; }
.rec-3 { animation-delay: 1.5s; }

.sis-access {
  fill: rgba(155, 89, 182, 0.3);
  stroke: rgb(155, 89, 182);
  stroke-width: 2;
  opacity: 0;
  animation: modulePopIn 0.5s ease-out forwards;
}

.access-1 { animation-delay: 1.7s; }
.access-2 { animation-delay: 1.8s; }
.access-3 { animation-delay: 1.9s; }
.access-4 { animation-delay: 2s; }

.sis-access-line {
  stroke: rgb(155, 89, 182);
  stroke-width: 1.5;
  opacity: 0;
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: connectionDraw 0.4s ease-out forwards;
}

.line-1 { animation-delay: 2.1s; }
.line-2 { animation-delay: 2.15s; }
.line-3 { animation-delay: 2.2s; }
.line-4 { animation-delay: 2.25s; }

.sis-sync {
  fill: rgb(142, 68, 173);
  opacity: 0;
  animation: dataPulse 2.5s ease-in-out 2.5s infinite;
}

@keyframes recordSlideIn {
  0% { opacity: 0; transform: translateX(-10px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* ========================================
   MODULE SECTIONS LAYOUT
   ======================================== */

/* ERP Split Container */
.erp-split-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-top: 48px;
}

.erp-category h3 {
  margin: 0 0 24px 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink-800);
  text-align: center;
}

/* LMS Modules Container */
.lms-modules-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-top: 48px;
}

.lms-category h3 {
  margin: 0 0 24px 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink-800);
  text-align: center;
}

/* SIS Modules Container */
.sis-modules-container {
  margin-top: 48px;
}

/* Module Grids */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
}

.modules-grid-3col {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

/* Module Cards - Enhanced with Depth */
.module-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(203, 216, 238, 0.6);
  border-radius: 16px;
  box-shadow:
    0 2px 8px rgba(47, 126, 252, 0.06),
    0 4px 16px rgba(47, 126, 252, 0.04);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
  transform: translateY(20px) scale(0.92);
  animation: moduleCardPop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  position: relative;
  overflow: hidden;
}

/* Depth effect background */
.module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(47, 126, 252, 0.03) 0%, rgba(47, 126, 252, 0) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 16px;
  z-index: 0;
}

.module-card:hover::before {
  opacity: 1;
}

.module-card > * {
  position: relative;
  z-index: 1;
}

.module-card:nth-child(1) { animation-delay: 0.1s; }
.module-card:nth-child(2) { animation-delay: 0.15s; }
.module-card:nth-child(3) { animation-delay: 0.2s; }
.module-card:nth-child(4) { animation-delay: 0.25s; }
.module-card:nth-child(5) { animation-delay: 0.3s; }
.module-card:nth-child(6) { animation-delay: 0.35s; }
.module-card:nth-child(7) { animation-delay: 0.4s; }
.module-card:nth-child(8) { animation-delay: 0.45s; }
.module-card:nth-child(9) { animation-delay: 0.5s; }

.module-card:hover {
  transform: translateY(-8px) scale(1.02) rotateX(2deg);
  box-shadow:
    0 8px 24px rgba(47, 126, 252, 0.15),
    0 16px 48px rgba(47, 126, 252, 0.1),
    0 0 0 2px rgba(47, 126, 252, 0.2) inset;
  border-color: rgba(47, 126, 252, 0.6);
  background: rgba(255, 255, 255, 0.95);
}

.module-card span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-800);
  text-align: center;
  line-height: 1.3;
}

@keyframes moduleCardPop {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Module Animation Container - Enhanced with Depth */
.module-animation {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(47, 126, 252, 0.05) 0%, rgba(47, 126, 252, 0.02) 100%);
  border-radius: 12px;
  padding: 6px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  box-shadow: 0 2px 8px rgba(47, 126, 252, 0.08);
}

.module-card:hover .module-animation {
  transform: scale(1.1) translateY(-2px);
  background: linear-gradient(135deg, rgba(47, 126, 252, 0.1) 0%, rgba(47, 126, 252, 0.05) 100%);
  box-shadow:
    0 4px 16px rgba(47, 126, 252, 0.15),
    0 0 0 2px rgba(47, 126, 252, 0.1) inset;
}

.module-animation svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 4px rgba(47, 126, 252, 0.15));
  transition: filter 0.3s ease;
}

.module-card:hover .module-animation svg {
  filter: drop-shadow(0 4px 8px rgba(47, 126, 252, 0.3));
}

/* ========================================
   MODULE MICRO-ANIMATIONS - ENHANCED WITH DEPTH
   ======================================== */

/* Common SVG Element Styles - Enhanced */
.student-profile, .form-doc, .attendance-ring, .calendar-base,
.coin-base, .bus-body, .parent-icon, .chart-bar,
.app-form, .book-icon, .faculty-head, .grad-cap,
.flask-top, .badge-circle, .dollar-circle, .analytics-line,
.lesson-screen, .test-paper, .whiteboard, .badge-outer,
.dashboard-card, .progress-path, .course-outline, .research-doc,
.beaker-top, .briefcase-base, .collab-user, .metric-bar,
.profile-card, .enrollment-form, .transcript-doc, .attendance-clock,
.schedule-grid, .conduct-file, .health-record, .message-box, .report-outer {
  fill: none;
  stroke: var(--accent-500);
  stroke-width: 2;
  opacity: 0;
  animation: svgBounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
  filter: drop-shadow(0 2px 4px rgba(47, 126, 252, 0.2));
  transition: all 0.3s ease;
}

.profile-check, .form-line, .attendance-check, .calendar-line,
.bus-wheel, .family-link, .app-check, .book-line,
.faculty-body, .grad-tassel, .flask-bottom, .badge-star,
.wb-draw, .star-points, .progress-point, .course-item,
.doc-title, .doc-text, .beaker-body, .liquid-line,
.briefcase-handle, .briefcase-line, .collab-link, .collab-center,
.trend-line, .profile-avatar, .profile-info, .enroll-field,
.enroll-check, .transcript-grade, .clock-hand-hour, .clock-hand-min,
.check-mark, .grid-line, .conduct-icon, .conduct-line,
.health-cross, .message-envelope, .report-segment, .report-line {
  stroke: var(--accent-500);
  stroke-width: 2;
  fill: none;
  opacity: 0;
  animation: svgBounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s forwards;
  filter: drop-shadow(0 1px 3px rgba(47, 126, 252, 0.15));
  transition: all 0.3s ease;
}

/* Filled elements with gradient-like depth */
.student-profile, .coin-base, .bus-body, .parent-icon,
.app-check, .faculty-head, .flask-top, .badge-circle,
.dollar-circle, .badge-outer, .collab-user, .collab-center,
.profile-avatar, .enroll-check {
  fill: rgba(47, 126, 252, 0.2);
  stroke: var(--accent-500);
  stroke-width: 2.5;
  filter: drop-shadow(0 3px 6px rgba(47, 126, 252, 0.25));
}

/* Enhanced hover effects for all SVG elements */
.module-card:hover .student-profile,
.module-card:hover .form-doc,
.module-card:hover .attendance-ring,
.module-card:hover .calendar-base,
.module-card:hover .coin-base,
.module-card:hover .bus-body,
.module-card:hover .parent-icon,
.module-card:hover .app-form,
.module-card:hover .book-icon,
.module-card:hover .faculty-head,
.module-card:hover .grad-cap,
.module-card:hover .flask-top,
.module-card:hover .badge-circle,
.module-card:hover .dollar-circle,
.module-card:hover .lesson-screen,
.module-card:hover .test-paper,
.module-card:hover .whiteboard,
.module-card:hover .badge-outer,
.module-card:hover .dashboard-card,
.module-card:hover .course-outline,
.module-card:hover .research-doc,
.module-card:hover .beaker-top,
.module-card:hover .briefcase-base,
.module-card:hover .collab-user,
.module-card:hover .profile-card,
.module-card:hover .enrollment-form,
.module-card:hover .transcript-doc,
.module-card:hover .attendance-clock,
.module-card:hover .schedule-grid,
.module-card:hover .conduct-file,
.module-card:hover .health-record,
.module-card:hover .message-box,
.module-card:hover .report-outer {
  stroke: rgb(59, 145, 255);
  stroke-width: 2.5;
  filter: drop-shadow(0 4px 12px rgba(47, 126, 252, 0.4));
  transform: scale(1.05);
}

/* Animated bars with depth */
.chart-bar, .dash-chart, .metric-bar {
  fill: var(--accent-500);
  opacity: 0;
  animation: barGrowBounce 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  filter: drop-shadow(0 2px 6px rgba(47, 126, 252, 0.3));
}

/* ================================
   About Page - Fresh Hero Animation
   ================================ */

/* Hero Animation Container */
.hero-animation-educhain {
  width: 100%;
  max-width: 380px;
  opacity: 0;
  animation: containerFadeIn 1s ease-out 0.6s forwards;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(237, 243, 255, 0.5) 100%);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(203, 216, 238, 0.5);
  box-shadow: 0 10px 40px rgba(31, 111, 242, 0.12);
}

.hero-animation-educhain svg {
  width: 100%;
  height: auto;
}

/* Grid Pattern Fade In */
.grid-pattern {
  animation: gridFadeIn 1.5s ease-out 1s forwards;
  opacity: 0;
}

/* Vertical Flow Lines */
.flow-line {
  opacity: 0;
  stroke-dasharray: 380;
  stroke-dashoffset: 380;
  animation: flowReveal 2s ease-out forwards;
}

.fl-1 {
  animation-delay: 0.8s;
}

.fl-2 {
  animation-delay: 1s;
}

.fl-3 {
  animation-delay: 1.2s;
}

/* Foundation Block - Educhain */
.foundation-block {
  opacity: 0;
  animation: blockBuild 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1.4s forwards;
}

.foundation-block rect:first-child {
  animation: glowPulse 3s ease-in-out infinite 2.5s;
}

/* Connecting Dots */
.connect-dots .dot {
  opacity: 0;
  animation: dotPop 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.d1 {
  animation-delay: 2.2s;
}

.d2 {
  animation-delay: 2.3s;
}

.d3 {
  animation-delay: 2.4s;
}

/* Credentials and Security Layers */
.credentials-layer {
  opacity: 0;
  animation: layerSlideIn 0.7s ease-out 2.5s forwards;
}

.security-layer {
  opacity: 0;
  animation: layerSlideIn 0.7s ease-out 2.7s forwards;
}

.badge-icons circle {
  animation: badgePulse 2s ease-in-out infinite;
}

.badge-icons circle:nth-child(1) {
  animation-delay: 0s;
}

.badge-icons circle:nth-child(2) {
  animation-delay: 0.3s;
}

.badge-icons circle:nth-child(3) {
  animation-delay: 0.6s;
}

.shield-icon path {
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: shieldDraw 0.8s ease-out 3.2s forwards, shieldGlow 2s ease-in-out infinite 4s;
}

/* Connection Paths */
.connect-path {
  opacity: 0;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: pathReveal 0.6s ease-out forwards;
}

.cp1 {
  animation-delay: 2.9s;
}

.cp2 {
  animation-delay: 3s;
}

/* Classcore Products Hub */
.products-hub {
  opacity: 0;
  animation: hubExpand 0.8s cubic-bezier(0.4, 0, 0.2, 1) 3.2s forwards;
}

.products-hub rect {
  animation: hubGlow 2.5s ease-in-out infinite 4s;
}

/* Product Modules */
.module {
  opacity: 0;
  animation: moduleBuild 0.7s ease-out forwards;
}

.mod-erp {
  animation-delay: 3.6s;
}

.mod-lms {
  animation-delay: 3.8s;
}

.mod-sis {
  animation-delay: 4s;
}

.module rect:nth-child(2) {
  animation: moduleHighlight 3s ease-in-out infinite;
}

.mod-erp rect:nth-child(2) {
  animation-delay: 0s;
}

.mod-lms rect:nth-child(2) {
  animation-delay: 1s;
}

.mod-sis rect:nth-child(2) {
  animation-delay: 2s;
}

/* Module Connection Lines */
.mod-connect {
  opacity: 0;
  stroke-dasharray: 150;
  stroke-dashoffset: 150;
  animation: connectDraw 0.8s ease-out forwards;
}

.mc1 {
  animation-delay: 4.2s;
}

.mc2 {
  animation-delay: 4.3s;
}

.mc3 {
  animation-delay: 4.4s;
}

/* Particles */
.particle {
  opacity: 0.9;
  filter: blur(0.5px);
}

.mod-particle {
  opacity: 0.9;
  filter: blur(0.5px);
}

/* ================================
   Story Cards - Different Styles
   ================================ */

.story-card {
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: storyReveal 0.8s ease-out forwards;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: inline-block;
  opacity: 0;
  animation: iconBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.story-launch {
  animation-delay: 0.1s;
  border-left: 3px solid rgba(91, 153, 255, 0.6);
}

.story-launch .story-icon {
  animation-delay: 0.4s;
}

.story-launch:hover {
  transform: scale(1.03) rotateY(-2deg);
  box-shadow: -8px 8px 24px rgba(91, 153, 255, 0.2);
}

.story-expand {
  animation-delay: 0.3s;
  border-left: 3px solid rgba(47, 126, 252, 0.6);
}

.story-expand .story-icon {
  animation-delay: 0.6s;
}

.story-expand:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 32px rgba(47, 126, 252, 0.25);
}

.story-expand::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(47, 126, 252, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease-out;
}

.story-expand:hover::after {
  width: 200%;
  height: 200%;
}

.story-partner {
  animation-delay: 0.5s;
  border-left: 3px solid rgba(31, 111, 242, 0.6);
}

.story-partner .story-icon {
  animation-delay: 0.8s;
}

.story-partner:hover {
  transform: translateX(8px) scale(1.02);
  box-shadow: 8px 8px 24px rgba(31, 111, 242, 0.22);
  border-left-width: 5px;
}

.story-innovate {
  animation-delay: 0.7s;
  border-left: 3px solid rgba(91, 153, 255, 0.6);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(237, 243, 255, 0.94) 100%);
}

.story-innovate .story-icon {
  animation-delay: 1s;
  animation-name: iconRocketLaunch;
}

.story-innovate:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 40px rgba(91, 153, 255, 0.28);
}

/* ================================
   Values List with Icons
   ================================ */

.values-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(203, 216, 238, 0.5);
  opacity: 0;
  animation: valueSlideIn 0.6s ease-out forwards;
  transition: all 0.3s ease;
}

.value-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  display: inline-block;
  animation: iconFloat 3s ease-in-out infinite;
}

.value-integrity {
  animation-delay: 0.1s;
}

.value-integrity:hover {
  transform: translateX(4px);
  box-shadow: 4px 4px 16px rgba(31, 111, 242, 0.15);
  border-color: rgba(31, 111, 242, 0.4);
}

.value-curiosity {
  animation-delay: 0.2s;
}

.value-curiosity .value-icon {
  animation-delay: 0.8s;
  animation-name: iconSpin;
}

.value-curiosity:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(47, 126, 252, 0.18);
  border-color: rgba(47, 126, 252, 0.4);
}

.value-care {
  animation-delay: 0.3s;
}

.value-care .value-icon {
  animation-delay: 1.6s;
  animation-name: iconHeartbeat;
}

.value-care:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 18px rgba(255, 105, 180, 0.15);
  border-color: rgba(91, 153, 255, 0.4);
}

.value-accountability {
  animation-delay: 0.4s;
}

.value-accountability .value-icon {
  animation-delay: 2.4s;
  animation-name: iconCheckmark;
  font-weight: 700;
}

.value-accountability:hover {
  transform: translateX(-4px);
  box-shadow: -4px 4px 16px rgba(31, 111, 242, 0.15);
  border-color: rgba(31, 111, 242, 0.4);
}

/* ================================
   Impact Cards
   ================================ */

.impact-card {
  position: relative;
  overflow: visible;
  opacity: 0;
  animation: impactAppear 0.8s ease-out forwards;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.impact-icon {
  font-size: 2.5rem;
  position: absolute;
  top: -16px;
  right: -16px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(31, 111, 242, 0.15), rgba(91, 153, 255, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(31, 111, 242, 0.3);
  box-shadow: 0 4px 16px rgba(31, 111, 242, 0.2);
  opacity: 0;
  animation: iconPopIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.impact-labs {
  animation-delay: 0.1s;
}

.impact-labs .impact-icon {
  animation-delay: 0.5s;
  animation-name: iconPopIn, iconGlow;
  animation-duration: 0.5s, 3s;
  animation-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55), ease-in-out;
  animation-iteration-count: 1, infinite;
  animation-fill-mode: forwards, none;
}

.impact-labs:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: 0 12px 32px rgba(31, 111, 242, 0.25);
}

.impact-labs::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 200, 87, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease-out;
  z-index: 0;
}

.impact-labs:hover::before {
  width: 200%;
  height: 200%;
}

.impact-fellowship {
  animation-delay: 0.3s;
}

.impact-fellowship .impact-icon {
  animation-delay: 0.7s;
  animation-name: iconPopIn, iconFloat;
  animation-duration: 0.5s, 4s;
  animation-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55), ease-in-out;
  animation-iteration-count: 1, infinite;
  animation-fill-mode: forwards, none;
}

.impact-fellowship:hover {
  transform: translateY(-6px) rotate(1deg);
  box-shadow: 0 12px 32px rgba(91, 153, 255, 0.25);
}

.impact-card h3,
.impact-card p {
  position: relative;
  z-index: 1;
}

/* Milestone Cards */
.detail-card-milestone {
  position: relative;
  overflow: visible;
  opacity: 0;
  animation: milestoneUnlock 0.7s ease-out forwards;
}

.detail-card-milestone::after {
  content: '✓';
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--accent-500), var(--accent-600));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  font-weight: 700;
  opacity: 0;
  transform: scale(0) rotate(-180deg);
  animation: badgeAppear 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  box-shadow: 0 4px 12px rgba(31, 111, 242, 0.4);
}

.milestone-1 { animation-delay: 0.1s; }
.milestone-1::after { animation-delay: 0.5s; }
.milestone-2 { animation-delay: 0.2s; }
.milestone-2::after { animation-delay: 0.6s; }
.milestone-3 { animation-delay: 0.3s; }
.milestone-3::after { animation-delay: 0.7s; }
.milestone-4 { animation-delay: 0.4s; }
.milestone-4::after { animation-delay: 0.8s; }

.detail-card-milestone:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 10px 28px rgba(47, 126, 252, 0.25);
  border-color: rgba(31, 111, 242, 0.6);
}

.detail-card-milestone:hover h3 {
  color: var(--accent-600);
}

.detail-card-milestone:hover::after {
  transform: scale(1.1) rotate(0deg);
}

/* ================================
   Keyframe Animations
   ================================ */

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

@keyframes gridFadeIn {
  to { opacity: 0.15; }
}

@keyframes flowReveal {
  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}

@keyframes blockBuild {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(-15px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes glowPulse {
  0%, 100% {
    filter: url(#glow) brightness(1);
  }
  50% {
    filter: url(#glow) brightness(1.1);
  }
}

@keyframes dotPop {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes layerSlideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes badgePulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes shieldDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes shieldGlow {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

@keyframes pathReveal {
  to {
    opacity: 0.5;
    stroke-dashoffset: 0;
  }
}

@keyframes hubExpand {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes hubGlow {
  0%, 100% {
    filter: drop-shadow(0 2px 6px rgba(31, 111, 242, 0.2));
  }
  50% {
    filter: drop-shadow(0 4px 12px rgba(31, 111, 242, 0.4));
  }
}

@keyframes moduleBuild {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes moduleHighlight {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes connectDraw {
  to {
    opacity: 0.4;
    stroke-dashoffset: 0;
  }
}

/* Story & Value & Impact Animations */
@keyframes storyReveal {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes iconBounce {
  0% {
    opacity: 0;
    transform: translateY(-20px) scale(0);
  }
  50% {
    transform: translateY(0) scale(1.2);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes iconRocketLaunch {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0) rotate(0deg);
  }
  60% {
    transform: translateY(-10px) scale(1.2) rotate(-5deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
  }
}

@keyframes valueSlideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-4px); }
}

@keyframes iconSpin {
  0% {
    opacity: 0;
    transform: rotate(-180deg) scale(0);
  }
  60% {
    transform: rotate(10deg) scale(1.1);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

@keyframes iconHeartbeat {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  10%, 30% {
    transform: scale(1.3);
  }
  20%, 40% {
    transform: scale(1);
  }
}

@keyframes iconCheckmark {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-90deg);
  }
  50% {
    transform: scale(1.3) rotate(5deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes impactAppear {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(15px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes iconPopIn {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-180deg);
  }
  60% {
    transform: scale(1.2) rotate(10deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes iconGlow {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(31, 111, 242, 0.2);
  }
  50% {
    box-shadow: 0 6px 24px rgba(255, 200, 87, 0.4);
  }
}

@keyframes milestoneUnlock {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes badgeAppear {
  from {
    opacity: 0;
    transform: scale(0) rotate(-180deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

/* Responsive */
@media (max-width: 960px) {
  .hero-animation-educhain {
    max-width: 100%;
    margin: 32px auto 0;
  }
  
  .hero-content-left {
    max-width: 100%;
    text-align: center;
  }
  
  .hero-content-left .floating-tags {
    justify-content: center;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .hero-animation-educhain,
  .grid-pattern,
  .flow-line,
  .foundation-block,
  .connect-dots .dot,
  .credentials-layer,
  .security-layer,
  .badge-icons circle,
  .shield-icon path,
  .connect-path,
  .products-hub,
  .module,
  .mod-connect,
  .particle,
  .mod-particle,
  .story-card,
  .story-icon,
  .value-item,
  .value-icon,
  .impact-card,
  .impact-icon,
  .detail-card-milestone,
  .detail-card-milestone::after {
    animation: none !important;
    opacity: 1 !important;
  }
  
  .detail-card-milestone::after {
    transform: scale(1) rotate(0deg);
  }
  
  .flow-line,
  .connect-path,
  .mod-connect,
  .shield-icon path {
    stroke-dashoffset: 0 !important;
  }
}

/* Case Studies Section - Growth Icon Animation */
.tile-icon-growth {
  background: linear-gradient(135deg, var(--accent-200) 0%, var(--accent-120) 100%);
}

.tile-icon-growth .growth-line {
  fill: none;
  stroke: var(--accent-500);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: growthLineAnimate 2.5s ease-in-out infinite;
}

.tile-icon-growth .growth-dot {
  fill: var(--accent-600);
  animation: growthDotPulse 2s ease-in-out infinite;
}

.tile-icon-growth .growth-dot-1 { animation-delay: 0s; }
.tile-icon-growth .growth-dot-2 { animation-delay: 0.3s; }
.tile-icon-growth .growth-dot-3 { animation-delay: 0.6s; }
.tile-icon-growth .growth-dot-4 { animation-delay: 0.9s; }

.tile-icon-growth .growth-arrow {
  fill: none;
  stroke: var(--accent-600);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: arrowPoint 1.5s ease-in-out infinite;
}

@keyframes growthLineAnimate {
  0%, 100% {
    stroke-width: 3;
    opacity: 0.8;
  }
  50% {
    stroke-width: 4;
    opacity: 1;
  }
}

@keyframes growthDotPulse {
  0%, 100% {
    r: 4;
    opacity: 0.8;
  }
  50% {
    r: 5;
    opacity: 1;
  }
}

@keyframes arrowPoint {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(2px, -2px);
  }
}

/* Case Studies Section - Payment Icon Animation */
.tile-icon-payment {
  background: linear-gradient(135deg, var(--accent-200) 0%, var(--accent-120) 100%);
}

.tile-icon-payment .payment-ring {
  fill: none;
  stroke: var(--accent-500);
  stroke-width: 2;
  animation: paymentRingPulse 3s ease-in-out infinite;
}

.tile-icon-payment .payment-ring-1 {
  animation-delay: 0s;
  opacity: 0.4;
}

.tile-icon-payment .payment-ring-2 {
  animation-delay: 0.5s;
  opacity: 0.6;
}

.tile-icon-payment .payment-ring-3 {
  animation-delay: 1s;
  opacity: 0.8;
}

.tile-icon-payment .payment-check {
  fill: none;
  stroke: var(--accent-600);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: checkmarkDraw 2s ease-in-out 0.5s infinite;
}

@keyframes paymentRingPulse {
  0%, 100% {
    stroke-width: 2;
    opacity: 0.4;
  }
  50% {
    stroke-width: 3;
    opacity: 0.8;
  }
}

@keyframes checkmarkDraw {
  0% {
    stroke-dashoffset: 30;
  }
  50%, 90% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 30;
  }
}

/* ============================================
   Solutions Section Styles
   ============================================ */

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.solution-card {
  background: white;
  padding: 40px 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--ink-150);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-600), var(--accent-400));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-200);
}

.solution-card:hover::before {
  opacity: 1;
}

.solution-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-icon svg {
  width: 100%;
  height: 100%;
}

.solution-badge {
  display: inline-flex;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--accent-120), var(--accent-200));
  color: var(--accent-600);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  border: 1px solid var(--accent-200);
}

.solution-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink-900);
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.solution-subtitle {
  color: var(--accent-600);
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 16px 0;
  letter-spacing: 0.3px;
}

.solution-card > p {
  color: var(--ink-600);
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.solution-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.solution-features li {
  color: var(--ink-600);
  font-size: 0.9rem;
  padding: 8px 0 8px 24px;
  position: relative;
  line-height: 1.5;
}

.solution-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  background: var(--accent-500);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(31, 111, 242, 0.15);
}

/* ============================================
   ERP Icon Animations
   ============================================ */

.solution-icon-erp .erp-module {
  fill: var(--accent-500);
  opacity: 0.2;
  animation: erpModuleFill 4s ease-in-out infinite;
}

.solution-icon-erp .erp-module-1 {
  animation-delay: 0s;
}

.solution-icon-erp .erp-module-2 {
  animation-delay: 0.3s;
}

.solution-icon-erp .erp-module-3 {
  animation-delay: 0.6s;
}

.solution-icon-erp .erp-module-4 {
  animation-delay: 0.9s;
}

.solution-icon-erp .erp-connect {
  stroke: var(--accent-400);
  stroke-width: 2;
  opacity: 0.4;
  animation: erpConnectPulse 4s ease-in-out infinite;
}

.solution-icon-erp .erp-connect-1 {
  animation-delay: 0s;
}

.solution-icon-erp .erp-connect-2 {
  animation-delay: 0.3s;
}

.solution-icon-erp .erp-connect-3 {
  animation-delay: 0.6s;
}

.solution-icon-erp .erp-connect-4 {
  animation-delay: 0.9s;
}

.solution-icon-erp .erp-pulse {
  fill: var(--accent-600);
  animation: erpPulseDot 4s ease-in-out infinite;
}

.solution-icon-erp .erp-pulse-1 {
  animation-delay: 0s;
}

.solution-icon-erp .erp-pulse-2 {
  animation-delay: 0.3s;
}

.solution-icon-erp .erp-pulse-3 {
  animation-delay: 0.6s;
}

.solution-icon-erp .erp-pulse-4 {
  animation-delay: 0.9s;
}

@keyframes erpModuleFill {
  0%, 100% {
    opacity: 0.2;
    transform: scaleX(1);
  }
  50% {
    opacity: 0.6;
    transform: scaleX(1.05);
  }
}

@keyframes erpConnectPulse {
  0%, 100% {
    opacity: 0.2;
    stroke-width: 1.5;
  }
  50% {
    opacity: 0.7;
    stroke-width: 2.5;
  }
}

@keyframes erpPulseDot {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.4);
  }
}

/* ============================================
   SIS Icon Animations
   ============================================ */

.solution-icon-sis .sis-stage {
  fill: none;
  stroke: var(--accent-400);
  stroke-width: 2;
  opacity: 0.3;
  animation: sisStageGlow 6s ease-in-out infinite;
}

.solution-icon-sis .sis-stage-1 {
  animation-delay: 0s;
}

.solution-icon-sis .sis-stage-2 {
  animation-delay: 2s;
}

.solution-icon-sis .sis-stage-3 {
  animation-delay: 4s;
}

.solution-icon-sis .sis-path {
  stroke: var(--accent-300);
  stroke-width: 1.5;
  fill: none;
  opacity: 0.5;
}

.solution-icon-sis .sis-indicator {
  fill: var(--accent-600);
  animation: sisIndicatorMove 6s ease-in-out infinite;
}

.solution-icon-sis .sis-data {
  fill: var(--accent-500);
  opacity: 0.4;
  animation: sisDataPulse 6s ease-in-out infinite;
}

.solution-icon-sis .sis-data-1 {
  animation-delay: 0s;
}

.solution-icon-sis .sis-data-2 {
  animation-delay: 2s;
}

.solution-icon-sis .sis-data-3 {
  animation-delay: 4s;
}

@keyframes sisStageGlow {
  0%, 25%, 100% {
    opacity: 0.3;
    stroke-width: 2;
  }
  12.5% {
    opacity: 0.8;
    stroke-width: 3;
  }
}

@keyframes sisIndicatorMove {
  0%, 100% {
    cx: 20;
    opacity: 1;
  }
  33% {
    cx: 40;
    opacity: 0.8;
  }
  66% {
    cx: 60;
    opacity: 0.8;
  }
}

@keyframes sisDataPulse {
  0%, 25%, 100% {
    opacity: 0.2;
    transform: translateY(0);
  }
  12.5% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

/* ============================================
   LMS Icon Animations
   ============================================ */

.solution-icon-lms .lms-path {
  fill: none;
  stroke: var(--accent-400);
  stroke-width: 2;
  opacity: 0.3;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: lmsPathDraw 8s ease-in-out infinite;
}

.solution-icon-lms .lms-path-1 {
  animation-delay: 0s;
}

.solution-icon-lms .lms-path-2 {
  animation-delay: 0.5s;
}

.solution-icon-lms .lms-node {
  fill: var(--accent-600);
  opacity: 0.4;
  animation: lmsNodePulse 8s ease-in-out infinite;
}

.solution-icon-lms .lms-node-1 {
  animation-delay: 0s;
}

.solution-icon-lms .lms-node-2 {
  animation-delay: 2.5s;
}

.solution-icon-lms .lms-node-3 {
  animation-delay: 5s;
}

.solution-icon-lms .lms-progress {
  fill: none;
  stroke: var(--accent-500);
  stroke-width: 1.5;
  opacity: 0.2;
  transform-origin: center;
  animation: lmsProgressRotate 12s linear infinite;
}

.solution-icon-lms .lms-spark {
  fill: var(--accent-600);
  opacity: 0.6;
  animation: lmsSparkGlow 3s ease-in-out infinite;
}

@keyframes lmsPathDraw {
  0% {
    stroke-dashoffset: 100;
    opacity: 0.2;
  }
  50% {
    stroke-dashoffset: 0;
    opacity: 0.6;
  }
  100% {
    stroke-dashoffset: -100;
    opacity: 0.2;
  }
}

@keyframes lmsNodePulse {
  0%, 100% {
    opacity: 0.3;
    r: 4;
  }
  12.5% {
    opacity: 1;
    r: 5;
  }
  25% {
    opacity: 0.6;
    r: 4;
  }
}

@keyframes lmsProgressRotate {
  0% {
    transform: rotate(0deg);
    opacity: 0.2;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    transform: rotate(360deg);
    opacity: 0.2;
  }
}

@keyframes lmsSparkGlow {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.5);
  }
}

/* ============================================
   Responsive Adjustments
   ============================================ */

@media (max-width: 768px) {
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .solution-card {
    padding: 32px 24px;
  }

  .solution-icon {
    width: 64px;
    height: 64px;
  }

  .solution-card h3 {
    font-size: 1.3rem;
  }
}

/* ============================================
   Solution Features Slider
   ============================================ */

.solution-features-slider {
  position: relative;
  height: 60px;
  overflow: hidden;
  margin-top: 24px;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--accent-120) 0%, rgba(255, 255, 255, 0.5) 100%);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent-500);
}

.feature-slide {
  position: absolute;
  top: 50%;
  left: 20px;
  right: 20px;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  color: var(--ink-700);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-slide::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent-600);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(31, 111, 242, 0.2);
}

.feature-slide.active {
  opacity: 1;
  animation: slideInFeature 0.5s ease;
}

@keyframes slideInFeature {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

/* ============================================
   Customization Focus Section
   ============================================ */

.customization-focus {
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  padding: 80px 0;
}

.customization-card {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: white;
  padding: 60px 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--ink-150);
  position: relative;
  overflow: hidden;
}

.customization-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-600), var(--accent-400), var(--accent-600));
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.customization-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 32px;
}

.customization-icon svg {
  width: 100%;
  height: 100%;
}

.customization-card h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ink-900);
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.customization-lead {
  font-size: 1.25rem;
  color: var(--accent-600);
  font-weight: 600;
  margin: 0 0 20px 0;
  line-height: 1.6;
}

.customization-detail {
  font-size: 1.05rem;
  color: var(--ink-600);
  line-height: 1.8;
  margin: 0 0 40px 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.customization-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.custom-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: linear-gradient(135deg, var(--accent-120), rgba(255, 255, 255, 0.5));
  border-radius: var(--radius-sm);
  border: 1px solid var(--accent-200);
  color: var(--ink-700);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.custom-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(31, 111, 242, 0.15);
  border-color: var(--accent-400);
}

.custom-feature svg {
  width: 20px;
  height: 20px;
  color: var(--accent-600);
  flex-shrink: 0;
}

/* Customization icon animations */
.custom-orbit {
  fill: none;
  stroke: var(--accent-400);
  stroke-width: 1.5;
  opacity: 0.3;
  animation: customOrbitPulse 4s ease-in-out infinite;
}

.custom-orbit-1 {
  animation-delay: 0s;
}

.custom-orbit-2 {
  animation-delay: 0.5s;
}

.custom-orbit-3 {
  animation-delay: 1s;
}

.custom-center {
  fill: var(--accent-600);
  animation: customCenterPulse 3s ease-in-out infinite;
}

.custom-node {
  fill: var(--accent-500);
  animation: customNodeOrbit 8s linear infinite;
  transform-origin: 50px 50px;
}

.custom-node-1 {
  animation-delay: 0s;
}

.custom-node-2 {
  animation-delay: 2s;
}

.custom-node-3 {
  animation-delay: 4s;
}

.custom-node-4 {
  animation-delay: 6s;
}

@keyframes customOrbitPulse {
  0%, 100% {
    opacity: 0.2;
    stroke-width: 1.5;
  }
  50% {
    opacity: 0.5;
    stroke-width: 2;
  }
}

@keyframes customCenterPulse {
  0%, 100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes customNodeOrbit {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}

/* ============================================
   Educhain Partnership Section
   ============================================ */

.educhain-partnership {
  max-width: 900px;
  margin: 48px auto 0;
  padding: 0;
}

.partnership-content {
  background: linear-gradient(135deg, var(--accent-120) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-radius: var(--radius-md);
  border: 1px solid var(--accent-200);
  box-shadow: var(--shadow-sm);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.partnership-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent-600), var(--accent-400));
}

.partnership-logo {
  flex-shrink: 0;
  min-width: 150px;
}

.partnership-logo img {
  height: 50px;
  width: auto;
  display: block;
}

.partnership-text {
  flex: 1;
  min-width: 300px;
}

.partnership-text h3 {
  margin: 0 0 12px 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1.3;
}

.partnership-text p {
  margin: 0 0 16px 0;
  color: var(--ink-600);
  line-height: 1.7;
  font-size: 1rem;
}

.partnership-text strong {
  color: var(--accent-600);
  font-weight: 700;
}

.partnership-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: white;
  border: 1px solid var(--accent-300);
  border-radius: 20px;
  color: var(--accent-600);
  font-weight: 600;
  font-size: 0.875rem;
}

.partnership-badge svg {
  width: 18px;
  height: 18px;
  color: var(--accent-600);
}

/* ============================================
   Quote Grid Adjustment (2 columns)
   ============================================ */

.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

/* ============================================
   Responsive Adjustments
   ============================================ */

@media (max-width: 768px) {
  .customization-card {
    padding: 40px 24px;
  }

  .customization-card h2 {
    font-size: 2rem;
  }

  .customization-lead {
    font-size: 1.1rem;
  }

  .customization-features {
    grid-template-columns: 1fr;
  }

  .partnership-content {
    padding: 32px 24px;
    gap: 24px;
  }

  .partnership-logo {
    width: 100%;
    text-align: center;
  }

  .partnership-text h3 {
    font-size: 1.25rem;
  }

  .quote-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .solution-features-slider {
    height: 70px;
  }

  .feature-slide {
    font-size: 0.875rem;
  }
}

/* ============================================
   Success Stories Section (Redesigned)
   ============================================ */

.success-stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.success-story-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--ink-150);
  transition: all 0.3s ease;
  position: relative;
}

.success-story-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-600), var(--accent-400));
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.success-story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-200);
}

.success-story-card:hover::before {
  opacity: 1;
}

.story-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.tag-industry {
  background: linear-gradient(135deg, var(--accent-120) 0%, var(--accent-200) 100%);
  color: var(--accent-600);
  border-color: var(--accent-200);
}

.story-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.story-logo {
  width: 120px;
  height: 120px;
  background: white;
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(17, 34, 56, 0.08);
  border: 1px solid var(--ink-150);
  flex-shrink: 0;
}

.story-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.story-details {
  flex: 1;
  min-width: 0;
}

.story-details h3 {
  margin: 0 0 16px 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1.3;
}

.metric-card {
  background: linear-gradient(135deg, var(--accent-120) 0%, rgba(255, 255, 255, 0.95) 100%);
  border: 2px solid var(--accent-400);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.metric-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent-600);
}

.metric-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-600);
  margin-bottom: 2px;
  line-height: 1;
}

.metric-label {
  font-size: 0.875rem;
  color: var(--ink-600);
  font-weight: 600;
}

.story-quote {
  margin: 0 0 16px 0;
  font-style: italic;
  color: var(--ink-600);
  line-height: 1.6;
  font-size: 0.95rem;
}

.partnership-years {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: white;
  border: 1px solid var(--accent-200);
  border-radius: 20px;
  font-size: 0.875rem;
  color: var(--accent-600);
  font-weight: 600;
}

.partnership-years svg {
  color: var(--accent-600);
  flex-shrink: 0;
}

/* ============================================
   Responsive Adjustments for Success Stories
   ============================================ */

@media (max-width: 768px) {
  .success-stories-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .story-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .story-logo {
    width: 100px;
    height: 100px;
  }

  .story-details h3 {
    font-size: 1.15rem;
  }

  .metric-value {
    font-size: 1.75rem;
  }
}

/* ============================================
   Case Studies - Animated Solution Icons
   ============================================ */

/* Update solution card header styling */
.solution-card h4 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--ink-900);
  font-weight: 700;
  font-size: 1.05rem;
}

.solution-card h4 svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* Mobile Applications Icon Animation */
.icon-mobile-app rect {
  stroke: var(--accent-500);
  fill: none;
  animation: mobileAppPulse 3s ease-in-out infinite;
}

.icon-mobile-app line {
  stroke: var(--accent-600);
  animation: mobileContentFade 3s ease-in-out infinite;
}

@keyframes mobileAppPulse {
  0%, 100% {
    stroke-width: 2;
    opacity: 0.7;
  }
  50% {
    stroke-width: 2.5;
    opacity: 1;
  }
}

@keyframes mobileContentFade {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* Automated/Smart Reminders Icon Animation */
.icon-reminder circle {
  stroke: var(--accent-500);
  fill: none;
  animation: reminderRingPulse 2s ease-in-out infinite;
}

.icon-reminder path {
  stroke: var(--accent-600);
  animation: reminderHandRotate 4s ease-in-out infinite;
  transform-origin: center;
}

@keyframes reminderRingPulse {
  0%, 100% {
    stroke-width: 2;
    opacity: 0.6;
  }
  50% {
    stroke-width: 3;
    opacity: 1;
  }
}

@keyframes reminderHandRotate {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

/* Real-time Analytics Icon Animation */
.icon-analytics path {
  stroke: var(--accent-600);
  animation: analyticsCheckDraw 3s ease-in-out infinite;
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
}

@keyframes analyticsCheckDraw {
  0%, 20% {
    stroke-dashoffset: 30;
  }
  50%, 90% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 30;
  }
}

/* Flexible Payments / Custom Fees Icon Animation */
.icon-payment rect {
  stroke: var(--accent-500);
  fill: none;
  animation: paymentCardGlow 3s ease-in-out infinite;
}

.icon-payment line {
  stroke: var(--accent-600);
  animation: paymentLineFade 3s ease-in-out infinite;
}

.icon-payment circle {
  stroke: var(--accent-600);
  fill: none;
  animation: paymentDotPulse 3s ease-in-out infinite 0.3s;
}

@keyframes paymentCardGlow {
  0%, 100% {
    stroke-width: 2;
    opacity: 0.6;
  }
  50% {
    stroke-width: 2.5;
    opacity: 1;
  }
}

@keyframes paymentLineFade {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

@keyframes paymentDotPulse {
  0%, 100% {
    stroke-width: 2;
    transform: scale(1);
  }
  50% {
    stroke-width: 3;
    transform: scale(1.2);
  }
}

/* Advanced Reporting / Aging Reports Icon Animation */
.icon-reporting rect {
  stroke: var(--accent-500);
  fill: none;
  animation: reportingCardPulse 3s ease-in-out infinite;
}

.icon-reporting line {
  stroke: var(--accent-600);
  animation: reportingLineAppear 3s ease-in-out infinite;
  stroke-dasharray: 10;
  stroke-dashoffset: 10;
}

@keyframes reportingCardPulse {
  0%, 100% {
    stroke-width: 2;
    opacity: 0.7;
  }
  50% {
    stroke-width: 2.5;
    opacity: 1;
  }
}

@keyframes reportingLineAppear {
  0%, 30% {
    stroke-dashoffset: 10;
    opacity: 0.4;
  }
  60%, 90% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 10;
    opacity: 0.4;
  }
}

/* Early Registration Icon Animation */
.icon-registration rect {
  stroke: var(--accent-500);
  fill: none;
  animation: registrationCardPulse 3s ease-in-out infinite;
}

.icon-registration line {
  stroke: var(--accent-600);
  animation: registrationLinesFade 3s ease-in-out infinite;
}

.icon-registration line:nth-child(2) {
  animation-delay: 0.3s;
}

.icon-registration line:nth-child(3) {
  animation-delay: 0.6s;
}

.icon-registration line:nth-child(4) {
  animation-delay: 0.9s;
}

@keyframes registrationCardPulse {
  0%, 100% {
    stroke-width: 2;
    opacity: 0.6;
  }
  50% {
    stroke-width: 2.5;
    opacity: 1;
  }
}

@keyframes registrationLinesFade {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

/* Financial Dashboard Icon Animation */
.icon-dashboard rect {
  stroke: var(--accent-500);
  fill: none;
  animation: dashboardCardPulse 3s ease-in-out infinite;
}

.icon-dashboard path {
  stroke: var(--accent-600);
  animation: dashboardCheckDraw 3s ease-in-out infinite;
  stroke-dasharray: 15;
  stroke-dashoffset: 15;
}

@keyframes dashboardCardPulse {
  0%, 100% {
    stroke-width: 2;
    opacity: 0.7;
  }
  50% {
    stroke-width: 2.5;
    opacity: 1;
  }
}

@keyframes dashboardCheckDraw {
  0%, 20% {
    stroke-dashoffset: 15;
  }
  50%, 90% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 15;
  }
}

/* Payment Gateway Icon Animation */
.icon-gateway circle {
  stroke: var(--accent-500);
  fill: none;
  animation: gatewayRingPulse 2s ease-in-out infinite;
}

.icon-gateway path {
  stroke: var(--accent-600);
  animation: gatewayLineFade 2s ease-in-out infinite;
}

.icon-gateway path:nth-child(2) {
  animation-delay: 0.2s;
}

.icon-gateway path:nth-child(3) {
  animation-delay: 0.4s;
}

.icon-gateway path:nth-child(4) {
  animation-delay: 0.6s;
}

@keyframes gatewayRingPulse {
  0%, 100% {
    stroke-width: 2;
    transform: scale(1);
  }
  50% {
    stroke-width: 3;
    transform: scale(1.1);
  }
}

@keyframes gatewayLineFade {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

/* Bulk Upload Icon Animation */
.icon-upload path {
  stroke: var(--accent-600);
  animation: uploadArrowBounce 2s ease-in-out infinite;
}

@keyframes uploadArrowBounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-3px);
    opacity: 1;
  }
}

/* Fines & Discounts Icon Animation */
.icon-fines path {
  stroke: var(--accent-600);
  fill: none;
  animation: finesLayerPulse 3s ease-in-out infinite;
}

.icon-fines path:nth-child(1) {
  animation-delay: 0s;
}

.icon-fines path:nth-child(2) {
  animation-delay: 0.4s;
}

.icon-fines path:nth-child(3) {
  animation-delay: 0.8s;
}

@keyframes finesLayerPulse {
  0%, 100% {
    stroke-width: 2;
    opacity: 0.5;
  }
  50% {
    stroke-width: 2.5;
    opacity: 1;
  }
}

/* Section Header Icons - Challenge */
.section-icon-wrapper.challenge-icon svg circle,
.section-icon-wrapper.challenge-icon svg line {
  stroke: #ef4444;
}

.section-icon-wrapper.challenge-icon svg circle {
  animation: challengeRingPulse 2s ease-in-out infinite;
}

.section-icon-wrapper.challenge-icon svg line {
  animation: challengeXPulse 2s ease-in-out infinite;
}

@keyframes challengeRingPulse {
  0%, 100% {
    stroke-width: 2;
    opacity: 0.7;
  }
  50% {
    stroke-width: 3;
    opacity: 1;
  }
}

@keyframes challengeXPulse {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

/* Section Header Icons - Solution */
.section-icon-wrapper.solution-icon svg circle,
.section-icon-wrapper.solution-icon svg path {
  stroke: var(--accent-600);
}

.section-icon-wrapper.solution-icon svg circle {
  animation: solutionRingPulse 2s ease-in-out infinite;
}

.section-icon-wrapper.solution-icon svg path {
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
  animation: solutionCheckDraw 3s ease-in-out infinite;
}

@keyframes solutionRingPulse {
  0%, 100% {
    stroke-width: 2;
    opacity: 0.7;
  }
  50% {
    stroke-width: 3;
    opacity: 1;
  }
}

@keyframes solutionCheckDraw {
  0%, 20% {
    stroke-dashoffset: 20;
  }
  50%, 90% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 20;
  }
}
