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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Navigation */
.site-header {
  background: #1a1a2e;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-links a:hover {
  color: #fff;
}

/* Hero Section - matches old TYPO3 blue AI background */
.hero {
  background: url('/images/img-ai1.jpg') center center / cover no-repeat;
  color: #fff;
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 46, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero .lead {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  opacity: 0.95;
  line-height: 1.7;
}

.hero p {
  font-size: 1.05rem;
  opacity: 0.85;
  line-height: 1.7;
}

/* Capabilities flow section (Monitor, Gather, Design, Train) */
.capabilities {
  background: #fff;
  padding: 3rem 2rem;
  text-align: center;
}

.capabilities img {
  max-width: 900px;
  width: 100%;
  height: auto;
}

/* Overview section */
.overview {
  background: #f5f7fa;
  padding: 4rem 2rem;
  text-align: center;
}

.overview-content {
  max-width: 1000px;
  margin: 0 auto;
}

.overview h2 {
  color: #0a5ca8;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.overview img {
  max-width: 800px;
  width: 100%;
  height: auto;
}

/* Solutions Section - two cards side by side */
.solutions {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.solution {
  background: #fff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #0a5ca8;
}

.solution img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.solution h2 {
  color: #0a5ca8;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.solution ul {
  list-style: none;
  padding: 0;
}

.solution li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.solution li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #0a5ca8;
  font-weight: bold;
}

/* Manufacturing/Industry banner */
.industry-banner {
  background: url('/images/manufacturing_robot.jpeg') center center / cover no-repeat;
  position: relative;
  padding: 5rem 2rem;
  text-align: center;
  color: #fff;
}

.industry-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 92, 168, 0.6);
}

.industry-banner-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.industry-banner h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.industry-banner p {
  font-size: 1.15rem;
  opacity: 0.95;
}

/* Page Content (single pages) */
.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.page-content h1 {
  margin-bottom: 2rem;
  color: #0a5ca8;
  font-size: 2.2rem;
}

.page-content h2 {
  color: #0a5ca8;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.page-content h3 {
  color: #333;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.page-content li {
  padding: 0.3rem 0;
}

/* Footer */
.site-footer {
  background: #1a1a2e;
  color: #ccc;
  padding: 2rem;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.footer-content a {
  color: #ccc;
  text-decoration: none;
}

.footer-content a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero .lead {
    font-size: 1.1rem;
  }

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

  .industry-banner {
    padding: 3rem 2rem;
  }
}
