/* Solutions Page Styles - Blue "White Hot" Theme */

.page-wrapper {
  padding-top: 80px !important;
}

.page-content-wrap {
  padding-top: 80px !important;
}

/* Override main theme colors for solutions pages */
.solutions-page {
  background: #00030D;
}

/* Solutions Hero Section */
.solutions-hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: visible;
  background: transparent;
}

.solutions-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    url("images/../images/blue-blur.png") no-repeat center center,
    radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
  background-size: cover, 100% 100%, 100% 100%;
  opacity: 0.6;
  pointer-events: none;
}

.solutions-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/forgebg.svg') no-repeat center center;
  background-size: cover;
  opacity: 0.3;
  z-index: 1;
}

.solutions-hero-container {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.solutions-hero-frameworks {
  margin-top: 80px;
}

.solutions-hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.solutions-hero-content {
  position: relative;
  z-index: 3;
  text-align: left;
}

.solutions-hero-badge {
  display: inline-block;
  color: #7795FF;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  background: transparent;
  border: none;
  box-shadow: none;
}

.solutions-hero-video {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.solutions-hero-video-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 16/9;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.solutions-hero-video-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
  border-radius: 16px;
  pointer-events: none;
}

.solutions-hero-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.solutions-hero-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.solutions-hero-play-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(147, 51, 234, 0.2) 100%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.solutions-hero-play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.solutions-hero-play-button:hover::before {
  opacity: 1;
}

.solutions-hero-play-button svg {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.solutions-hero-play-button:hover svg {
  transform: scale(1.1);
}

.solutions-hero-play-button.playing {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.solutions-hero h1 {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.1;
  gap: 8px;
}

.hero-title-main {
  color: #ffffff;
}

.hero-title-accent {
  color: #60a5fa;
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solutions-hero-subtitle {
  font-size: 20px;
  color: #cbd5e1;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.solutions-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Blue button override for solutions pages */
.button.blue {
  background: linear-gradient(135deg, #3562FF 0%, #1e40af 100%);
  box-shadow: 0 4px 12px rgba(53, 98, 255, 0.3), 
              inset 0 -1px 1px rgba(0, 0, 0, 0.2),
              inset 0 1px 1px rgba(255, 255, 255, 0.1);
  border: none;
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.button.blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(53, 98, 255, 0.4),
              inset 0 -1px 1px rgba(0, 0, 0, 0.2),
              inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.solutions-hero .button {
  background: linear-gradient(135deg, #3562FF 0%, #1e40af 100%);
  box-shadow: 0 4px 12px rgba(53, 98, 255, 0.3), 
              inset 0 -1px 1px rgba(0, 0, 0, 0.2),
              inset 0 1px 1px rgba(255, 255, 255, 0.1);
  border: none;
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.solutions-hero .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(53, 98, 255, 0.4),
              inset 0 -1px 1px rgba(0, 0, 0, 0.2),
              inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

/* Floating elements for visual interest */
.solutions-hero-floating {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

.solutions-hero-floating::before,
.solutions-hero-floating::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

.solutions-hero-floating::before {
  width: 200px;
  height: 200px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.solutions-hero-floating::after {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

/* Solutions Text Block Section */
.solutions-text-block {
  position: relative;
  padding: 80px 0;
  background: transparent;
  overflow: visible;
}

.solutions-text-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    url('../images/blue-blur.png') no-repeat center center,
    radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
  background-size: cover, 100% 100%, 100% 100%;
  opacity: 0.4;
  pointer-events: none;
}

.solutions-text-container {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.solutions-text-content {
  text-align: center;
}

.solutions-text-paragraph {
  font-size: 24px;
  line-height: 1.6;
  color: #ffffff;
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.2px;
}

.forge-e11y-highlight {
  background: linear-gradient(135deg, #60a5fa 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* Solutions Benefits Section */
.solutions-benefits {
  position: relative;
  padding: 80px 0;
  background: transparent;
  overflow: visible;
}

.solutions-benefits::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    url('../images/blue-blur.png') no-repeat center center,
    radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
  background-size: cover, 100% 100%, 100% 100%;
  opacity: 0.4;
  pointer-events: none;
}

.solutions-benefits-container {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.solutions-benefits-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.solutions-benefits-left {
  padding-right: 40px;
}

.solutions-benefits-badge {
  display: inline-block;
  color: #7795FF;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  background: transparent;
  border: none;
  box-shadow: none;
}

.solutions-benefits-heading {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.code-icon-inline {
  width: 48px;
  height: 48px;
  object-fit: contain;
  vertical-align: middle;
  display: inline-block;
  margin: 0 8px;
}

.solutions-benefits-description {
  font-size: 18px;
  line-height: 1.6;
  color: #cbd5e1;
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.2px;
}

.solutions-benefits-right {
  padding-left: 20px;
}

.solutions-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.solutions-benefit-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.solutions-benefit-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.solutions-benefit-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solutions-benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.8;
}

.solutions-benefit-content {
  flex: 1;
}

.solutions-benefit-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.solutions-benefit-description {
  font-size: 14px;
  line-height: 1.5;
  color: #cbd5e1;
  margin: 0;
  font-weight: 400;
}

/* Solutions Forge AI Section */
.solutions-forge-ai {
  position: relative;
  padding: 80px 0;
  background: transparent;
  overflow: visible;
}

.solutions-forge-ai::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    url('../images/blue-blur.png') no-repeat center center,
    radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
  background-size: cover, 100% 100%, 100% 100%;
  opacity: 0.4;
  pointer-events: none;
}

.solutions-forge-ai-container {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.solutions-forge-ai-bg-left,
.solutions-forge-ai-bg-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  z-index: 1;
}

.solutions-forge-ai-bg-left {
  left: 0;
}

.solutions-forge-ai-bg-right {
  right: 0;
}

.solutions-forge-ai-bg-left img,
.solutions-forge-ai-bg-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.solutions-forge-ai-content {
  position: relative;
  z-index: 3;
}

.solutions-forge-ai-header {
  text-align: center;
  margin-bottom: 60px;
}

.solutions-forge-ai-star {
  display: inline-block;
  margin-bottom: 24px;
}

.solutions-forge-ai-star img {
  width: 100px;
  height: 100px;
  filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.5));
}

.solutions-forge-ai-heading {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.solutions-forge-ai-description {
  font-size: 18px;
  line-height: 1.6;
  color: #cbd5e1;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  letter-spacing: -0.2px;
}

.solutions-forge-ai-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.solutions-forge-ai-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(10px);
}

.solutions-forge-ai-left-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.solutions-forge-ai-platform-button {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 16px;
  color: #ffffff;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.solutions-forge-ai-platform-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.solutions-forge-ai-platform-button img:first-child {
  width: 20px;
  height: 20px;
}

.solutions-forge-ai-platform-button img:last-child {
  width: 16px;
  height: 16px;
  margin-left: auto;
  transition: transform 0.3s ease;
}

/* Platform Icon Container */
.platform-icon-container {
  position: relative;
  width: 20px;
  height: 20px;
}

.platform-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.platform-icon.active {
  opacity: 1;
}

.solutions-forge-ai-platform-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-top: 4px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.solutions-forge-ai-platform-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.solutions-forge-ai-platform-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.solutions-forge-ai-platform-option:hover {
  background: rgba(255, 255, 255, 0.1);
}

.solutions-forge-ai-platform-option:first-child {
  border-radius: 8px 8px 0 0;
}

.solutions-forge-ai-platform-option:last-child {
  border-radius: 0 0 8px 8px;
}

.solutions-forge-ai-platform-option img:first-child {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.solutions-forge-ai-platform-option .platform-check {
  width: 16px;
  height: 16px;
  margin-left: auto;
  opacity: 0.6;
  display: none;
}

.solutions-forge-ai-platform-option[data-platform="miro"] .platform-check {
  display: block;
}

.solutions-forge-ai-platform {
  position: relative;
}

.solutions-forge-ai-platform-desc {
  font-size: 14px;
  color: #cbd5e1;
  margin: 8px 0 0 0;
}

.solutions-forge-ai-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.solutions-forge-ai-suggestion {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 8px 16px;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.solutions-forge-ai-suggestion:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.solutions-forge-ai-suggestion:active {
  transform: translateY(0);
}

.solutions-forge-ai-input-field {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(147, 51, 234, 0.3);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
}

.solutions-forge-ai-input-field span {
  flex: 1;
  color: #ffffff;
  font-size: 14px;
}

.solutions-forge-ai-send {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  border: none;
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.solutions-forge-ai-send:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.solutions-forge-ai-send img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.solutions-forge-ai-model {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #cbd5e1;
  position: relative;
}

.solutions-forge-ai-model img {
  width: 14px;
  height: 14px;
  opacity: 0.6;
}

.solutions-forge-ai-model-selector {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 2px 4px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.solutions-forge-ai-model-selector:hover {
  background: rgba(255, 255, 255, 0.1);
}

.solutions-forge-ai-model-selector img {
  width: 10px;
  height: 10px;
  transition: transform 0.3s ease;
}

.solutions-forge-ai-model-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-top: 4px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  max-height: 300px;
  overflow-y: auto;
}

.solutions-forge-ai-model-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.solutions-forge-ai-model-category {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.solutions-forge-ai-model-category:last-child {
  border-bottom: none;
}

.solutions-forge-ai-model-category-title {
  padding: 8px 12px;
  font-size: 10px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.05);
}

.solutions-forge-ai-model-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 11px;
}

.solutions-forge-ai-model-option:hover {
  background: rgba(255, 255, 255, 0.1);
}

.solutions-forge-ai-model-option .model-check {
  width: 12px;
  height: 12px;
  opacity: 0.6;
  display: none;
}

.solutions-forge-ai-model-option[data-model="claude-3-5-sonnet-latest"] .model-check {
  display: block;
}

/* Beta Application CTA */
.solutions-forge-ai-beta-cta {
  margin-top: 24px;
  text-align: center;
}

.solutions-forge-ai-beta-button {
  background: linear-gradient(135deg, #3562FF 0%, #1e40af 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(53, 98, 255, 0.3), 
              inset 0 -1px 1px rgba(0, 0, 0, 0.2),
              inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.solutions-forge-ai-beta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(53, 98, 255, 0.4),
              inset 0 -1px 1px rgba(0, 0, 0, 0.2),
              inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.solutions-forge-ai-beta-button:active {
  transform: translateY(0);
}

.solutions-forge-ai-files {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.solutions-forge-ai-file {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  color: #ffffff;
}

.solutions-forge-ai-file img:first-child {
  width: 16px;
  height: 16px;
}

.solutions-forge-ai-file img:nth-child(3) {
  width: 12px;
  height: 12px;
  margin-left: auto;
}

.solutions-forge-ai-file-status {
  font-size: 10px;
  color: #10b981;
}

.solutions-forge-ai-editor {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 13px;
  line-height: 1.5;
  position: relative;
}

.solutions-forge-ai-line {
  display: flex;
  gap: 16px;
  margin-bottom: 2px;
}

.line-number {
  color: #6b7280;
  font-size: 12px;
  min-width: 30px;
  text-align: right;
}

.code-content {
  color: #ffffff;
  flex: 1;
}

/* Syntax Highlighting */
.code-content .keyword {
  color: #ff79c6; /* Pink for keywords */
}

.code-content .function {
  color: #50fa7b; /* Green for functions */
}

.code-content .variable {
  color: #f8f8f2; /* Light gray for variables */
}

.code-content .string {
  color: #f1fa8c; /* Yellow for strings */
}

.code-content .comment {
  color: #6272a4; /* Gray-blue for comments */
}

.code-content .number {
  color: #bd93f9; /* Purple for numbers */
}

.code-content .property {
  color: #8be9fd; /* Cyan for object properties */
}

.code-content .parameter {
  color: #ffb86c; /* Orange for function parameters */
}

.solutions-forge-ai-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 12px;
  color: #10b981;
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 10;
}

.solutions-forge-ai-status img {
  width: 16px;
  height: 16px;
}

/* Solutions Infrastructure Section */
.solutions-infra {
  position: relative;
  padding: 80px 0;
  background: transparent;
  overflow: visible;
}

.solutions-infra::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    url('../images/blue-blur.png') no-repeat center center,
    radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
  background-size: cover, 100% 100%, 100% 100%;
  opacity: 0.4;
  pointer-events: none;
}

.solutions-infra-container {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.solutions-infra-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.solutions-infra-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  justify-content: flex-start;
  text-align: left;
}

.solutions-infra-heart {
  flex-shrink: 0;
}

.solutions-infra-heart img {
  width:  100px;
  height: 100px;
  opacity: 0.8;
}

.solutions-infra-header-content {
  flex: 1;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}

.solutions-infra-header-text {
  flex: 1;
  max-width: 600px;
  text-align: left;
}

.solutions-infra-heading {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.solutions-infra-description {
  font-size: 18px;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 32px;
  font-weight: 400;
  letter-spacing: -0.2px;
}

.solutions-infra-cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.solutions-infra-row {
  display: flex;
  gap: 32px;
}

.solutions-infra-row-portrait {
  justify-content: space-between;
}

.solutions-infra-row-landscape {
  justify-content: space-between;
}

/* Portrait cards in first row */
.solutions-infra-card.portrait {
  flex: 1;
  max-width: calc(33.333% - 21.333px);
}

/* Landscape cards in second row */
.solutions-infra-card.landscape {
  flex: 1;
  max-width: calc(50% - 16px);
  max-height: 300px;
}

/* Portrait Cards (Top Row) */
.solutions-infra-card.portrait {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.solutions-infra-card.portrait:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.solutions-infra-card.portrait .solutions-infra-card-icon {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.solutions-infra-card.portrait .solutions-infra-card-icon img {
  width: 100%;
  height: auto;
  max-width: 400px;
  object-fit: contain;
  opacity: 0.9;
}

.solutions-infra-card.portrait .solutions-infra-card-title {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.solutions-infra-card.portrait .solutions-infra-card-description {
  font-size: 14px;
  line-height: 1.5;
  color: #cbd5e1;
  margin: 0;
  font-weight: 400;
}

/* Landscape Cards (Bottom Row) */
.solutions-infra-card.landscape {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  max-height: 300px;
  overflow: hidden;
}

.solutions-infra-card.landscape:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.solutions-infra-card.landscape .solutions-infra-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.solutions-infra-card.landscape .solutions-infra-card-icon {
  width: auto;
  height: 100%;
  max-height: 236px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.solutions-infra-card.landscape .solutions-infra-card-icon img {
  width: auto;
  height: 100%;
  object-fit: contain;
  opacity: 0.9;
}

.solutions-infra-card.landscape .solutions-infra-card-title {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.solutions-infra-card.landscape .solutions-infra-card-description {
  font-size: 14px;
  line-height: 1.5;
  color: #cbd5e1;
  margin: 0;
  font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .solutions-hero {
    padding: 100px 0 60px;
  }
  
  .solutions-hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .solutions-hero-content {
    text-align: center;
  }
  
  .solutions-hero h1 {
    font-size: 48px;
  }
  
  .solutions-hero-subtitle {
    font-size: 18px;
  }
  
  .solutions-hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .solutions-text-block {
    padding: 60px 0;
  }
  
  .solutions-text-paragraph {
    font-size: 20px;
  }
  
  .solutions-benefits-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .solutions-benefits-left {
    padding-right: 0;
    text-align: center;
  }
  
  .solutions-benefits-heading {
    font-size: 36px;
  }
  
  .solutions-benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .solutions-forge-ai-panels {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .solutions-forge-ai-heading {
    font-size: 36px;
  }
  
  .solutions-forge-ai-bg-left,
  .solutions-forge-ai-bg-right {
    display: none;
  }
  
  .solutions-infra-header {
    flex-direction: column;
    gap: 16px;
  }
  
  .solutions-infra-heading {
    font-size: 36px;
  }
  
  .solutions-infra-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  
  .solutions-infra-card.portrait {
    grid-column: span 1;
  }
  
  .solutions-infra-card.landscape {
    grid-column: span 2;
  }
}

@media (max-width: 767px) {
  .solutions-hero {
    padding: 80px 0 40px;
  }
  
  .solutions-hero h1 {
    font-size: 36px;
  }
  
  .solutions-hero-subtitle {
    font-size: 16px;
  }
  
  .solutions-hero-actions .button {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 479px) {
  .solutions-hero h1 {
    font-size: 32px;
  }
  
  .solutions-hero-badge {
    font-size: 12px;
    padding: 6px 12px;
  }
  
  .solutions-infra-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .solutions-infra-card.portrait {
    grid-column: span 1;
  }
  
  .solutions-infra-card.landscape {
    grid-column: span 1;
    flex-direction: column;
    gap: 16px;
  }
  
  .solutions-infra-card.landscape .solutions-infra-card-icon {
    width: 64px;
    height: 64px;
  }
}

/* Solutions Case Study Section */
.solutions-case-study {
  position: relative;
  padding: 80px 0;
  background: transparent;
  overflow: visible;
}

.solutions-case-study::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    url('../images/blue-blur.png') no-repeat center center,
    radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
  background-size: cover, 100% 100%, 100% 100%;
  opacity: 0.4;
  pointer-events: none;
}

.solutions-case-study-container {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.solutions-case-study-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.solutions-case-study-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.solutions-case-study-icon {
  display: inline-block;
  margin-bottom: 24px;
}

.solutions-case-study-icon img {
  width: 100px;
  height: 100px;
  filter: drop-shadow(0 0 8px rgba(147, 51, 234, 0.5));
}

.solutions-case-study-heading {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.solutions-case-study-description {
  font-size: 18px;
  line-height: 1.6;
  color: #cbd5e1;
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.2px;
}

.solutions-case-study-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}

.solutions-case-study-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.solutions-case-study-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.solutions-case-study-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.solutions-case-study-card-logo {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.solutions-case-study-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.9;
}

.solutions-case-study-card-company {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.solutions-case-study-card-quote {
  font-size: 16px;
  line-height: 1.5;
  color: #cbd5e1;
  margin: 0;
  font-weight: 400;
  font-style: italic;
  border-left: 3px solid #60a5fa;
  padding-left: 16px;
}

.solutions-case-study-card-details {
  font-size: 14px;
  line-height: 1.5;
  color: #cbd5e1;
  margin: 0;
  font-weight: 400;
  opacity: 0.8;
}

/* Responsive adjustments for case study */
@media (max-width: 991px) {
  .solutions-case-study-heading {
    font-size: 36px;
  }
  
  .solutions-case-study-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .solutions-case-study-heading {
    font-size: 32px;
  }
  
  .solutions-case-study-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Logo Grid Layout */
.logo-grid-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  align-items: center;
  justify-items: center;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  transition: all 0.3s ease;
}

.logo-item:hover {
  transform: translateY(-2px);
}

.company-logo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  filter: brightness(0) invert(1);
}

.company-logo:hover {
  opacity: 1;
}

/* Responsive adjustments for logo grid */
@media (max-width: 991px) {
  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  
  .logo-item {
    height: 50px;
  }
}

@media (max-width: 767px) {
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .logo-item {
    height: 45px;
  }
}

@media (max-width: 479px) {
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .logo-item {
    height: 40px;
  }
}

/* Solutions CTA Section */
.solutions-cta {
  position: relative;
  padding: 120px 0;
  background: transparent;
  overflow: visible;
}

.solutions-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    url('../images/blue-blur.png') no-repeat center center,
    radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(90, 20, 255, 0.1) 0%, transparent 50%);
  background-size: cover, 100% 100%, 100% 100%;
  opacity: 0.4;
  pointer-events: none;
}

.solutions-cta-container {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.solutions-cta-content {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 60px 40px;
  backdrop-filter: blur(10px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.solutions-cta-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    url('../images/blue-blur.png') no-repeat center center,
    radial-gradient(circle at 30% 20%, rgba(78, 75, 193, 0.8) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(90, 20, 255, 0.8) 0%, transparent 50%);
  background-size: cover, 100% 100%, 100% 100%;
  border-radius: 24px;
  pointer-events: none;
}

.solutions-cta-subheadline {
  font-size: 16px;
  font-weight: 600;
  color: #60a5fa;
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
}

.solutions-cta-heading {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 24px 0;
  line-height: 1.1;
  letter-spacing: -0.5px;
  z-index: 10;
}

.solutions-cta-accent {
  background: linear-gradient(135deg, #60a5fa 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  z-index: 10;
}

.solutions-cta-description {
  font-size: 18px;
  line-height: 1.6;
  color: #cbd5e1;
  margin: 0 0 40px 0;
  font-weight: 400;
  letter-spacing: -0.2px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  z-index: 10;
}

.solutions-cta-actions {
  margin-bottom: 24px;
  z-index: 10;
}

.solutions-cta-actions .button {
  background: linear-gradient(135deg, #3562FF 0%, #1e40af 100%);
  box-shadow: 0 4px 12px rgba(53, 98, 255, 0.3), 
              inset 0 -1px 1px rgba(0, 0, 0, 0.2),
              inset 0 1px 1px rgba(255, 255, 255, 0.1);
  border: none;
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 16px 32px;
  font-size: 16px;
  z-index: 10;
}

.solutions-cta-actions .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(53, 98, 255, 0.4),
              inset 0 -1px 1px rgba(0, 0, 0, 0.2),
              inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.solutions-cta-tagline {
  font-size: 14px;
  color: white;
  margin: 0 0 40px 0;
  font-weight: 400;
  font-style: normal;
  z-index: 10;
}

.solutions-cta-icons {
  display: flex;
  justify-content: center;
  align-items: center;
}

.solutions-cta-icons img {
  width: 100%;
  max-width: 600px;
  height: auto;
  opacity: 0.8;
}

/* Responsive adjustments for CTA */
@media (max-width: 991px) {
  .solutions-cta {
    padding: 100px 0;
  }
  
  .solutions-cta-content {
    padding: 48px 32px;
  }
  
  .solutions-cta-heading {
    font-size: 36px;
  }
  
  .solutions-cta-description {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .solutions-cta {
    padding: 80px 0;
  }
  
  .solutions-cta-content {
    padding: 40px 24px;
  }
  
  .solutions-cta-heading {
    font-size: 32px;
  }
  
  .solutions-cta-subheadline {
    font-size: 14px;
  }
  
  .solutions-cta-description {
    font-size: 16px;
  }
} 