/*!*******************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[3]!./components/sections/BentoGrid.css ***!
  \*******************************************************************************************************************************************************************************************************************************************************************************/
/* Bento Grid Masonry Layout */
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  grid-auto-flow: dense;
}

@media (max-width: 1024px) {
  .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .masonry-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
}

/* Resource Card Styles */
.resource-card {
  border-radius: 20px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  /* background removed - now controlled via inline styles only */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Card Colors */
.resource-card.card-blue {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
}

.resource-card.card-purple {
  background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
}

.resource-card.card-pink {
  background: linear-gradient(135deg, #fce7f3, #fbcfe8);
}

.resource-card.card-teal {
  background: linear-gradient(135deg, #ccfbf1, #99f6e4);
}

/* Card Tags/Badges */
.card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 16px 0;
  width: -moz-fit-content;
  width: fit-content;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  height: 28px;
  line-height: 1;
}

.badge-featured {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  border: none;
}

.badge-core {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
  border: none;
}

.badge-integration {
  background: white;
  color: #8b5cf6;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.badge-whitepaper {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: white;
  border: none;
}

.badge-guide {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: white;
  border: none;
}

.badge-defense {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border: none;
}

.badge-pricing {
  background: linear-gradient(135deg, #ec4899, #db2777);
  color: white;
  border: none;
}

.badge-security {
  background: white;
  color: #8b5cf6;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.badge-ai-innovation {
  background: white;
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.badge-transformation {
  background: white;
  color: #8b5cf6;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.badge-intelligence {
  background: white;
  color: #ec4899;
  border: 1px solid rgba(236, 72, 153, 0.2);
}

.badge-deployment {
  background: white;
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.badge-scalability {
  background: white;
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-performance {
  background: white;
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.badge-enterprise {
  background: white;
  color: #d97706;
  border: 1px solid rgba(217, 119, 6, 0.2);
}

.badge-solution {
  background: rgba(255, 255, 255, 0.95);
  color: #2563eb;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.badge-optimizing {
  background: rgba(255, 255, 255, 0.95);
  color: #4338ca;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Resource Card Lists */
.resource-card ul {
  list-style: none;
  padding-left: 0 !important;
}

.resource-card ul li {
  position: relative;
  padding-left: 24px !important;
  display: flex;
  align-items: flex-start;
}

.resource-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: #3b82f6;
}

/* White checkmarks for dark theme cards */
.resource-card[data-theme="dark"] ul li::before {
  color: rgba(255, 255, 255, 0.9);
}

.resource-card.card-teal ul li::before,
.resource-card.card-purple ul li::before {
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .resource-card {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .resource-card {
    padding: 20px;
  }

  .card-tag {
    font-size: 0.625rem;
    padding: 4px 10px;
    height: 24px;
  }
}

/*!*************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[3]!./app/products/ai-engine-suite/styles.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************************************/
/* === GLOBAL STYLES === */
body {
  font-family: var(--font-primary);
}

/* === BRAND COLOR PALETTE === */
.primary-gradient {
  background: linear-gradient(135deg, #1e40af, #3b82f6, #7c3aed);
}

.hero-gradient {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #7c3aed 100%);
  background-size: 400% 400%;
  animation: gradientMove 8s ease infinite;
}

.bg-brand-light {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

.text-gradient {
  background: linear-gradient(135deg, #1e40af, #3b82f6, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === INTERACTIVE BUTTON EFFECTS === */
.gradient-btn-primary {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  position: relative;
  overflow: hidden;
}

.gradient-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  transition: left 0.3s ease;
  z-index: 0;
}

.gradient-btn-primary:hover::before {
  left: 0;
}

.gradient-btn-primary > * {
  position: relative;
  z-index: 1;
}

/* === KEYFRAME ANIMATIONS === */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

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

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% { transform: translateY(0); }
  40%, 43% { transform: translateY(-10px); }
  70% { transform: translateY(-5px); }
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
}

@keyframes shapeFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

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

/* === HERO SECTION STYLES === */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(124, 58, 237, 0.3));
  top: -10%;
  left: -5%;
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: orbFloat 15s ease-in-out infinite;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(239, 68, 68, 0.2));
  bottom: 10%;
  right: -5%;
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: orbFloat 15s ease-in-out infinite reverse;
}

.orb-3 {
  width: 450px;
  height: 450px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(59, 130, 246, 0.25));
  top: 50%;
  left: 50%;
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
  animation: orbFloat 18s ease-in-out infinite;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
  top: -15%;
  right: 10%;
  position: absolute;
  animation: shapeFloat 20s ease-in-out infinite;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 70%);
  top: 30%;
  right: -10%;
  position: absolute;
  animation: shapeFloat 18s ease-in-out infinite reverse;
}

.hero-container {
  position: relative;
  z-index: 10;
  max-width: 1598px;
  margin: 0 auto;
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 100vh;
}

.left-content {
  max-width: 700px;
}

.hero-h1 {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

/* Badge Styles */
.hero-section .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 24px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2563eb;
  width: -moz-fit-content;
  width: fit-content;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
}

.hero-section .badge-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  flex-shrink: 0;
}

.button-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: white;
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  background: white;
  color: #1e40af;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 60px 30px;
  }
  .hero-h1 {
    font-size: 3rem;
  }
}

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

@media (max-width: 640px) {
  .hero-h1 {
    font-size: 2rem;
  }
  .subtitle {
    font-size: 0.9375rem;
  }
  .button-group {
    flex-direction: column;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
}


