/* AWS Cost Intelligence module */
.aws-cost-container {
  min-height: 100vh;
  padding-top: 120px;
  background: linear-gradient(135deg, #1a3a52 0%, #2d5f7a 35%, #3d8a9e 65%, #5ec4a8 100%);
}

.aws-cost-content-area {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

.aws-cost-landing-view {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.aws-cost-landing-content {
  background: rgba(26, 58, 82, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
  color: #e0f2f1;
}

.aws-cost-landing-icon {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.aws-cost-landing-title {
  font-size: 1.75rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.aws-cost-landing-subtitle {
  font-size: 1rem;
  color: #a0c4d0;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.aws-cost-launch-btn {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.aws-cost-launch-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.6);
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
}

.aws-cost-config-hint {
  font-size: 0.9rem;
  color: #fcd34d;
  background: rgba(0, 0, 0, 0.2);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  border-left: 4px solid #f59e0b;
}

.aws-cost-config-hint code {
  background: rgba(0, 0, 0, 0.3);
  padding: 0.2em 0.4em;
  border-radius: 4px;
  font-size: 0.85em;
}

.aws-cost-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.aws-cost-feature-card {
  background: rgba(15, 30, 45, 0.6);
  border: 1px solid rgba(94, 196, 168, 0.2);
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
}

.aws-cost-feature-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.aws-cost-feature-card h3 {
  color: #5ec4a8;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.aws-cost-feature-card p {
  color: #e0f2f1;
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.4;
}

.aws-cost-iframe-wrap {
  width: 100%;
  height: calc(100vh - 140px);
  min-height: 500px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #0a0e1a;
}

.aws-cost-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

#awsCostScreen .work-wip-banner {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

@media (max-width: 768px) {
  .aws-cost-container {
    padding-top: 100px;
  }
  .aws-cost-landing-content {
    padding: 1.5rem;
  }
  .aws-cost-features {
    grid-template-columns: 1fr;
  }
}
