/* ===================================
   EduCode AI Website - Modern Styles
   =================================== */

:root {
  /* Primary Colors - Enterprise Institutional Palette */
  --primary-navy: #0f172a;
  --primary-indigo: #3730a3;
  /* Institutional Indigo */
  --primary-blue: #1d4ed8;
  /* Corporate Blue */
  --accent-slate: #64748b;
  --primary-purple: #4338ca;
  /* Legacy Re-map */

  /* Pillar Brand Colors - Professional Tone */
  --educationhub-primary: #0097b2;
  --fretal-primary: #047857;
  --projecthub-primary: #274472;
  --techhub-primary: #5290c9;
  --hrm-primary: #001b3d;

  /* Neutrals - High-End Slate */
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  /* Premium Effects */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-bg-dark: rgba(15, 23, 42, 0.8);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-border-dark: rgba(255, 255, 255, 0.05);

  --premium-shadow: 0 20px 50px -12px rgba(15, 23, 42, 0.12);
  --premium-glow: 0 0 25px rgba(55, 48, 163, 0.1);

  /* Gradients - Subtle & Sophisticated */
  --gradient-primary: linear-gradient(135deg, #1e1b4b 0%, #3730a3 100%);
  --gradient-mesh:
    radial-gradient(at 0% 0%, rgba(55, 48, 163, 0.05) 0, transparent 50%),
    radial-gradient(at 100% 0%, rgba(30, 64, 175, 0.05) 0, transparent 50%),
    radial-gradient(at 50% 100%, rgba(15, 23, 42, 0.05) 0, transparent 50%);

  /* Spacing - Balanced */
  --section-padding: 6rem 0;
  --container-padding: 0 1.5rem;

  /* Typography */
  --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--premium-shadow);
}

.premium-shadow {
  box-shadow: var(--premium-shadow);
}

.hover-glow:hover {
  box-shadow: var(--premium-glow);
  transform: translateY(-4px);
  transition: all 0.3s ease;
}

/* ===================================
   Base Styles
   =================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
  background: #ffffff;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: url('https://grainy-gradients.vercel.app/noise.svg');
  opacity: 0.03;
  pointer-events: none;
  z-index: 9999;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ===================================
   Typography
   =================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.875rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1.125rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===================================
   Navigation
   =================================== */

.navbar {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 100px;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.625rem 1.25rem;
}

.navbar.scrolled {
  top: 1rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-icon {
  display: none;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-navy);
  font-family: var(--font-display);
  letter-spacing: -0.04em;
  text-transform: none;
}

.logo-accent {
  color: inherit;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--gray-700);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-blue);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--gradient-primary);
  color: white;
  padding: 0.625rem 1.5rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(55, 48, 163, 0.4);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background: var(--gray-700);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }
}

/* ===================================
   Hero Section
   =================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 4rem;
  overflow: hidden;
  background: #ffffff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--gradient-mesh);
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-indigo);
  margin-bottom: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
}

.badge-icon {
  width: 14px;
  height: 14px;
  color: var(--primary-indigo);
  opacity: 0.8;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
  color: var(--gray-900);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 3.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 6rem;
  margin-bottom: 4.5rem;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--primary-navy);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* ===================================
   Institutional Button System
   =================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2.25rem;
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 100px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--font-primary);
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 10px 25px -10px rgba(55, 48, 163, 0.5);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -12px rgba(55, 48, 163, 0.6);
  filter: brightness(1.1);
}

.btn-secondary {
  background: white;
  color: var(--primary-navy);
  border-color: var(--gray-200);
}

.btn-secondary:hover {
  background: var(--gray-50);
  border-color: var(--primary-indigo);
  color: var(--primary-indigo);
  transform: translateY(-3px);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: 0.5s;
}

.btn-primary:hover::after {
  left: 100%;
}

.btn-secondary {
  background: white;
  color: var(--gray-700);
  border: 1px solid var(--gray-200);
}

.btn-secondary:hover {
  border-color: var(--primary-indigo);
  color: var(--primary-indigo);
  transform: translateY(-3px);
  box-shadow: var(--premium-shadow);
}

.btn-full {
  width: 100%;
}

/* ===================================
   Section Headers
   =================================== */

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-indigo);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  background: var(--gray-50);
  border-radius: 100px;
  border: 1px solid var(--gray-100);
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--primary-navy);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* ===================================
   Vision Section
   =================================== */

.vision-section {
  padding: var(--section-padding);
  background: white;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.vision-card {
  text-align: center;
  padding: 3.5rem 2.5rem;
  border-radius: 2.5rem;
  background: white;
  border: 1px solid var(--gray-50);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
}

.vision-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 80px -20px rgba(15, 23, 42, 0.1);
  border-color: var(--primary-indigo);
}

.vision-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  border-radius: 20px;
  color: var(--primary-indigo);
  transition: all 0.4s ease;
}

.vision-card:hover .vision-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--primary-indigo);
  color: white;
}

.vision-icon svg {
  width: 32px;
  height: 32px;
}

.vision-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.vision-card p {
  color: var(--gray-600);
  line-height: 1.6;
}

.value-proposition {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 4rem;
  background: var(--gray-900);
  border-radius: 2.5rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.value-proposition::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.15), transparent);
  pointer-events: none;
}

.value-content h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.value-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.value-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.check-icon {
  background: rgba(255, 255, 255, 0.2);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: bold;
}

.value-list strong {
  color: white;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.2);
}

.timeline-content {
  display: flex;
  flex-direction: column;
}

.timeline-age {
  font-size: 0.875rem;
  opacity: 0.9;
}

.timeline-pillar {
  font-size: 1.25rem;
  font-weight: 700;
}

@media (max-width: 968px) {
  .value-proposition {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ===================================
   Pillars Section
   =================================== */

.pillars-section {
  padding: var(--section-padding);
  background: var(--gray-50);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  perspective: 2000px;
}

.pillar-card {
  background: white;
  border-radius: 2.5rem;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gray-100);
  transition: height 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-16px);
  box-shadow: 0 40px 90px -20px rgba(15, 23, 42, 0.15);
  border-color: var(--primary-indigo);
}

.pillar-card:hover::before {
  height: 8px;
}

.pillar-educationhub {
  border-top: 5px solid var(--educationhub-primary);
}

.pillar-fretal {
  border-top: 5px solid var(--fretal-primary);
}

.pillar-projecthub {
  border-top: 5px solid var(--projecthub-primary);
}

.pillar-techhub {
  border-top: 5px solid var(--techhub-primary);
}

.pillar-hrm {
  border-top: 5px solid var(--hrm-primary);
}

.pillar-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  width: 100%;
  gap: 1rem;
}

.pillar-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  width: auto;
  min-width: 180px;
  flex-shrink: 0;
  padding: 0 1rem;
  border-radius: 100px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.pillar-educationhub .pillar-logo-wrapper {
  background: var(--educationhub-primary);
}

.pillar-fretal .pillar-logo-wrapper {
  background: var(--fretal-primary);
}

.pillar-projecthub .pillar-logo-wrapper {
  background: var(--projecthub-primary);
}

.pillar-techhub .pillar-logo-wrapper {
  background: var(--techhub-primary);
}

.pillar-hrm .pillar-logo-wrapper {
  background: var(--hrm-primary);
}

.pillar-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: none !important;
  transition: all 0.3s ease;
}

.pillar-fretal .pillar-logo {
  filter: invert(1) !important;
  mix-blend-mode: screen;
}

.pillar-card .btn-full {
  margin-top: auto;
}

.pillar-card:hover .pillar-logo-wrapper {
  transform: translateY(-4px);
  filter: brightness(1.1);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.2);
}

.pillar-logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.pillar-status {
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  background: var(--gray-50);
  color: var(--gray-500);
  border: 1px solid var(--gray-200);
  flex-shrink: 0;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.status-active {
  background: rgba(4, 120, 87, 0.05);
  color: #047857;
  border-color: rgba(4, 120, 87, 0.1);
}

.pillar-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.pillar-tagline {
  font-size: 0.95rem;
  color: var(--gray-500);
  font-weight: 600;
  margin-bottom: 1rem;
}

.pillar-description {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pillar-features,
.pillar-value {
  margin-bottom: 2rem;
}

.pillar-features h4,
.pillar-value h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--gray-700);
}

.pillar-features ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.pillar-features li {
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.pillar-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: bold;
}

.pillar-value p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}

.pillar-value strong {
  color: var(--gray-800);
}

.pillar-metrics {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--gray-50);
  border-radius: 0.75rem;
}

.metric {
  flex: 1;
  text-align: center;
}

.metric-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
}

.metric-label {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 0.25rem;
}

.pillar-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--primary-blue);
  text-decoration: none;
  transition: all 0.3s ease;
}

.pillar-cta:hover {
  gap: 0.75rem;
  color: var(--primary-purple);
}

@media (max-width: 768px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================================
   Ecosystem Section
   =================================== */

.ecosystem-section {
  padding: var(--section-padding);
  background: white;
  position: relative;
}

.ecosystem-diagram {
  position: relative;
  height: 600px;
  margin: 4rem 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

#ecosystem-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.ecosystem-tooltip {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.25rem 1.75rem;
  border-radius: 1.5rem;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.15);
  pointer-events: none;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  min-width: 340px;
  max-width: 420px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-left: 5px solid var(--primary-indigo);
}

.ecosystem-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.ecosystem-core {
  width: 220px;
  height: 220px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 70px -10px rgba(79, 70, 229, 0.4);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  border: 8px solid rgba(255, 255, 255, 0.2);
}

.ecosystem-core:hover {
  transform: scale(1.05);
  box-shadow: 0 40px 90px -15px rgba(55, 48, 163, 0.5);
}

.core-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.25rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.core-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.ecosystem-connections {
  position: absolute;
  inset: 0;
  z-index: 5;
}

.connection-line {
  position: absolute;
  height: 3px;
  background: rgba(55, 48, 163, 0.2);
  transform-origin: center;
  transition: all 0.3s ease;
  overflow: visible;
}

.connection-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(55, 48, 163, 0.4) 0%,
    rgba(55, 48, 163, 0.6) 50%,
    transparent 100%
  );
  animation: pulse-line 3s infinite ease-in-out;
}

.connection-line::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--primary-indigo);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(55, 48, 163, 0.8);
  animation: flow 4s infinite linear;
}

@keyframes pulse-line {
  0%,
  100% {
    background: linear-gradient(
      90deg,
      rgba(55, 48, 163, 0.4) 0%,
      rgba(55, 48, 163, 0.6) 50%,
      transparent 100%
    );
  }

  50% {
    background: linear-gradient(
      90deg,
      rgba(55, 48, 163, 0.6) 0%,
      rgba(55, 48, 163, 0.8) 50%,
      transparent 100%
    );
  }
}

@keyframes flow {
  0% {
    left: 0;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

/* Highlight connection lines on ecosystem interaction */
.ecosystem-node:hover ~ .ecosystem-connections .connection-line::before,
.ecosystem-core:hover ~ .ecosystem-connections .connection-line::before {
  background: linear-gradient(
    90deg,
    var(--primary-indigo) 0%,
    rgba(55, 48, 163, 0.9) 50%,
    transparent 100%
  );
}

.ecosystem-node:hover ~ .ecosystem-connections .connection-line::after {
  background: #ffffff;
  box-shadow: 0 0 15px var(--primary-blue);
  animation: flow 2s infinite linear;
}

.line-1 {
  top: 50%;
  left: 50%;
  width: 200px;
  transform: rotate(-72deg);
}

.line-1::after {
  animation-delay: 0s;
}

.line-2 {
  top: 50%;
  left: 50%;
  width: 200px;
  transform: rotate(-18deg);
}

.line-2::after {
  animation-delay: 0.8s;
}

.line-3 {
  top: 50%;
  left: 50%;
  width: 200px;
  transform: rotate(36deg);
}

.line-3::after {
  animation-delay: 1.6s;
}

.line-4 {
  top: 50%;
  left: 50%;
  width: 200px;
  transform: rotate(90deg);
}

.line-4::after {
  animation-delay: 2.4s;
}

.line-5 {
  top: 50%;
  left: 50%;
  width: 200px;
  transform: rotate(144deg);
}

.line-5::after {
  animation-delay: 3.2s;
}

.ecosystem-nodes {
  position: absolute;
  inset: 0;
  z-index: 10;
}

.ecosystem-node {
  position: absolute;
  width: 160px;
  height: 160px;
  background: #0f172a;
  /* Dark background to match new icons */
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  border: 4px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
}

.ecosystem-node:hover {
  transform: scale(1.15);
  box-shadow: 0 25px 60px -10px rgba(55, 48, 163, 0.3);
  border-color: var(--primary-blue);
  z-index: 10;
}

.node-1:hover {
  transform: translateX(-50%) scale(1.15);
}

.ecosystem-node:hover img {
  filter: drop-shadow(0 0 12px rgba(55, 48, 163, 0.4));
}

.ecosystem-node img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.ecosystem-node span {
  display: none;
}

.node-text {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.node-1 {
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
}

.node-2 {
  top: 20%;
  right: 2%;
}

.node-3 {
  bottom: 15%;
  right: 3%;
}

.node-4 {
  bottom: 15%;
  left: 3%;
}

.node-5 {
  top: 20%;
  left: 2%;
}

.ecosystem-flows {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.flow-card {
  padding: 2.5rem;
  background: white;
  border-radius: 2rem;
  border: 1px solid var(--gray-100);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.flow-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-indigo);
}

.flow-number {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.flow-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.flow-path {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 0.5rem;
}

.flow-step {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  padding: 0.375rem 0.75rem;
  background: var(--gray-100);
  border-radius: 0.375rem;
}

.flow-arrow {
  color: var(--primary-blue);
  font-weight: bold;
}

.flow-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
}

.ecosystem-benefits {
  text-align: center;
}

.ecosystem-benefits h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-card {
  padding: 3rem 2rem;
  text-align: center;
  background: white;
  border-radius: 2rem;
  border: 1px solid var(--gray-100);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-indigo);
}

.benefit-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  border-radius: 20px;
  color: var(--primary-indigo);
  transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--primary-indigo);
  color: white;
}

.benefit-icon svg {
  width: 32px;
  height: 32px;
}

.benefit-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .ecosystem-diagram {
    height: 400px;
  }

  .ecosystem-node {
    width: 80px;
    height: 80px;
  }

  .ecosystem-node img {
    height: 30px;
  }

  .ecosystem-core {
    width: 120px;
    height: 120px;
  }

  .ecosystem-core img {
    height: 50px;
  }
}

/* ===================================
   Value Section
   =================================== */

.value-section {
  padding: var(--section-padding);
  background: var(--gray-50);
}

.market-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.market-card {
  grid-column: 1 / -1;
  background: var(--gradient-primary);
  color: white;
  padding: 3rem;
  border-radius: 1.5rem;
  text-align: center;
}

.market-card h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.market-value {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.market-label {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.market-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 600px;
  margin: 0 auto;
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 0.5rem;
  backdrop-filter: blur(10px);
}

.breakdown-pillar {
  font-weight: 600;
}

.breakdown-value {
  font-weight: 700;
}

.traction-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  grid-column: 1 / -1;
}

.traction-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.traction-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.traction-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.traction-card li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--gray-600);
}

.traction-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: bold;
}

.competitive-advantages {
  margin-top: 4rem;
}

.competitive-advantages h3 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

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

.advantage-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.advantage-number {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.advantage-card h4 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.advantage-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
}

@media (max-width: 968px) {
  .market-grid,
  .traction-cards {
    grid-template-columns: 1fr;
  }
}

/* ===================================
   Contact Section
   =================================== */

.contact-section {
  padding: var(--section-padding);
  background: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-info > p {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 3rem;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-option {
  padding: 1.5rem;
  background: var(--gray-50);
  border-radius: 1rem;
  border-left: 4px solid var(--primary-blue);
}

.contact-option h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.contact-option p {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 0.75rem;
}

.contact-link {
  color: var(--primary-blue);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--primary-purple);
}

.active-platforms h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.platform-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.platform-link {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 1rem;
  text-decoration: none;
  color: var(--gray-700);
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.platform-projecthub {
  background: #001b3d !important;
  color: white !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.platform-fretal {
  background: #047857 !important;
  color: white !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.platform-fretal img {
  filter: invert(1) !important;
  mix-blend-mode: screen;
}

.platform-link:hover {
  border-color: var(--primary-blue);
  transform: translateX(5px);
}

.platform-link img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.contact-form-container {
  background: var(--gray-50);
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid var(--gray-200);
  border-radius: 0.5rem;
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

@media (max-width: 968px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ===================================
   Product Showcases
   =================================== */

.showcase-container {
  margin-top: 5rem;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.2);
  background: white;
  border: 1px solid var(--gray-100);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.showcase-container.reveal {
  opacity: 1;
  transform: translateY(0);
}

.showcase-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===================================
   Intelligence Core Enhancements
   =================================== */

.ecosystem-core {
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.ecosystem-core::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.2), transparent 25%);
  animation: rotate 4s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================
   Footer
   =================================== */

.footer {
  background: var(--gray-900);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--gray-400);
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-column a {
  display: block;
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-800);
}

.footer-bottom p {
  color: var(--gray-500);
  font-size: 0.875rem;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: white;
}

@media (max-width: 968px) {
  .footer-content {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ===================================
   Animations
   =================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll-triggered animations */
.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

.slide-in-left {
  opacity: 0;
  animation: slideInLeft 1s ease forwards;
}

.slide-in-right {
  opacity: 0;
  animation: slideInRight 1s ease forwards;
}

/* ===================================
   Why Choose Section (Glassmorphism)
   =================================== */

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.why-card {
  transition: all 0.3s ease;
  border-top: none;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 3rem;
  border-radius: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-indigo);
}

.why-icon-wrapper {
  width: 80px;
  height: 80px;
  background: var(--gray-50);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: all 0.4s ease;
}

.why-card:hover .why-icon-wrapper {
  background: var(--primary-indigo);
  transform: scale(1.1) rotate(5deg);
}

.why-card:hover .why-icon-img {
  filter: brightness(0) invert(1);
}

.why-icon-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.why-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--gray-900);
  font-weight: 700;
}

.why-card > p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.why-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.why-benefits li {
  padding-left: 1.75rem;
  position: relative;
  color: var(--gray-700);
  font-size: 0.95rem;
  font-weight: 500;
}

.why-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: 800;
  font-size: 1.125rem;
}

/* ===================================
   FAQ Accordion (Smooth Transitions)
   =================================== */

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-color: var(--primary-blue-light);
}

.faq-trigger {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-primary);
}

.faq-question {
  font-weight: 600;
  color: var(--gray-900);
  font-size: 1.05rem;
  transition: color 0.2s;
}

.faq-item.active .faq-question {
  color: var(--primary-blue);
}

.faq-icon {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--primary-blue);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-content {
  max-height: 300px;
  /* Adjust if content is very long */
}

.faq-inner {
  padding: 0 24px 24px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===================================
   Contact Form (Modern Inputs)
   =================================== */

.contact-form-container {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.contact-form h3 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.form-group label {
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
  display: block;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all 0.2s ease;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: var(--gray-300);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
  background: white;
}

/* Consolidated Global Button Classes */
.btn-full {
  width: 100%;
}

.platform-benefits {
  margin-top: 4rem;
  text-align: center;
}

.platform-benefits h3 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: var(--gray-900);
}

.benefits-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-showcase-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  padding: 2.5rem;
  border-radius: 1.5rem;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-showcase-card:hover {
  background: white;
  transform: translateY(-8px);
  box-shadow: var(--premium-shadow);
  border-color: var(--primary-indigo);
}

.benefit-showcase-card h4 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: var(--primary-blue);
}

.benefit-showcase-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}
