/* ── Siemens Hero ── */
.siemens-hero {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-bg-deep);
}

.siemens-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(0,0,0,0.6) 100%);
}

.siemens-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: clamp(1rem, 3vw, 2rem) clamp(1.5rem, 4vw, 3rem);
}

.siemens-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.siemens-hero-content p {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

.siemens-hero-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.siemens-partner-logo {
  max-height: 60px;
  max-width: 180px;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.siemens-partner-logo:hover {
  opacity: 1;
}

.siemens-polarion-logo {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

/* ── Content Section ── */
.siemens-content {
  width: 100%;
  background: var(--color-bg);
  border-top: 1px solid var(--color-glass-border);
}

/* ── Intro Section ── */
.intro-section {
  margin-bottom: 2.5rem;
  padding: 2rem;
  border-radius: 16px;
  background: var(--color-glass-bg);
  border: 1px solid var(--color-glass-border);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.intro-section:hover {
  border-color: rgba(242, 139, 42, 0.2);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.intro-section p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin: 0;
}

/* ── Content Sections ── */
.content-section {
  margin-bottom: 2.5rem;
  padding: 2rem;
  border-radius: 16px;
  background: var(--color-glass-bg);
  border: 1px solid var(--color-glass-border);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.content-section:hover {
  border-color: rgba(242, 139, 42, 0.2);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.content-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 400;
  color: var(--color-brand-orange);
  margin-bottom: 1rem;
  margin-top: 0;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(242, 139, 42, 0.2);
}

.content-section h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.content-section p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}

.content-section p:last-child {
  margin-bottom: 0;
}

.content-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.content-section ul li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 0.75rem;
  padding-left: 1.8rem;
  position: relative;
}

.content-section ul li::before {
  content: "✓";
  color: var(--color-brand-orange);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1rem;
}

/* ── Capabilities Grid ── */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.capability-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-glass-border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.capability-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border-color: rgba(242, 139, 42, 0.25);
}

.capability-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-brand-orange);
  margin-bottom: 0.75rem;
  margin-top: 0;
}

.capability-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin: 0;
}

/* ── Results Section ── */
.results-section {
  margin-bottom: 2.5rem;
  padding: 2rem;
  border-radius: 16px;
  background: rgba(242, 139, 42, 0.05);
  border: 1px solid rgba(242, 139, 42, 0.2);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.results-section:hover {
  border-color: rgba(242, 139, 42, 0.35);
  box-shadow: 0 4px 24px rgba(242, 139, 42, 0.1);
}

.results-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 400;
  color: var(--color-brand-orange);
  margin-bottom: 1rem;
  margin-top: 0;
}

.results-highlight {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-brand-orange);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.results-section p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}

.results-section p:last-child {
  margin-bottom: 0;
}

/* ── CTA Section ── */
.cta-section {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.cta-section .cta-button {
  display: inline-block;
  padding: 14px 32px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--color-brand-orange) 0%, var(--color-brand-orange-dark) 100%);
  color: #ffffff;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 4px 20px rgba(242, 139, 42, 0.3);
}

.cta-section .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(242, 139, 42, 0.5);
  opacity: 0.95;
}

/* ── Responsive ── */
@media (width < 768px) {
  .siemens-hero-logos {
    gap: 1.5rem;
  }

  .siemens-partner-logo {
    max-height: 40px;
    max-width: 120px;
  }

  .intro-section,
  .content-section,
  .results-section {
    padding: 1.4rem;
  }

  .capabilities-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    flex-direction: column;
    align-items: center;
  }

  .cta-section .cta-button {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}
