:root {
  --color-primary: #0f2d44;
  --color-accent: #0099cc;
  --color-bg: #f5f9fc;
  --color-text: #1a1a1a;
  --color-text-light: #6b7280;
  --color-white: #ffffff;
  --color-border: #d1dce6;
  --color-row-alt: #e8f2f8;
  --color-primary-light: #1a4566;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --max-width: 1180px;
  --header-height: 64px;
  --transition: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-primary);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4 {
  line-height: 1.25;
  font-weight: 700;
  color: var(--color-primary);
}

h1 { font-size: clamp(2rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

p {
  margin-bottom: 1rem;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link img {
  height: 36px;
  width: auto;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav > ul > li {
  position: relative;
}

.main-nav > ul > li > a {
  display: block;
  padding: 0.5rem 0.85rem;
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.92rem;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active {
  color: var(--color-accent);
}

.main-nav .has-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  vertical-align: middle;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: 0 8px 24px rgba(15, 45, 68, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 100;
}

.mega-menu {
  min-width: 520px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--color-text);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--color-border);
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background: var(--color-bg);
  color: var(--color-accent);
}

.dropdown-menu .dropdown-heading {
  grid-column: 1 / -1;
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-light);
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

main {
  padding-top: var(--header-height);
  min-height: calc(100vh - 320px);
}

/* Hero — minimal, no background image */
.hero-minimal {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-white);
}

.hero-minimal h1 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.hero-minimal .hero-tagline {
  font-size: 1.15rem;
  color: var(--color-text-light);
  max-width: 640px;
}

.page-hero {
  padding: 3rem 0 2rem;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.page-hero h1 {
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: var(--color-text-light);
  max-width: 720px;
  margin-bottom: 0;
}

.page-hero.with-image,
.container.with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.page-hero.with-image img,
.container.with-image img {
  border: 1px solid var(--color-border);
  border-radius: 2px;
}

/* Tech icon strip */
.icon-strip {
  padding: 2rem 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.icon-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.tech-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 100px;
}

.tech-icon svg {
  width: 48px;
  height: 48px;
  color: var(--color-primary);
}

.tech-icon span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-light);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Doc layout — sidebar + content */
.doc-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  min-height: 480px;
  border-bottom: 1px solid var(--color-border);
}

.doc-sidebar {
  background: var(--color-white);
  border-right: 1px solid var(--color-border);
  padding: 2rem 0;
}

.doc-sidebar h2 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  padding: 0 1.25rem;
  margin-bottom: 1rem;
}

.doc-sidebar nav a {
  display: block;
  padding: 0.6rem 1.25rem;
  color: var(--color-text);
  font-size: 0.9rem;
  border-left: 3px solid transparent;
}

.doc-sidebar nav a:hover,
.doc-sidebar nav a.active {
  background: var(--color-bg);
  border-left-color: var(--color-accent);
  color: var(--color-accent);
}

.doc-content {
  padding: 2rem 2.5rem;
  background: var(--color-bg);
}

.doc-content h2 {
  margin-bottom: 1rem;
}

.doc-content h3 {
  margin: 1.5rem 0 0.75rem;
  color: var(--color-primary);
}

/* Spec table */
.spec-section {
  padding: 3rem 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.spec-section h2 {
  margin-bottom: 0.5rem;
}

.spec-section .section-intro {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  max-width: 720px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--color-border);
  font-size: 0.92rem;
}

.spec-table th,
.spec-table td {
  padding: 0.85rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.spec-table th {
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.spec-table tr:nth-child(even) td {
  background: var(--color-row-alt);
}

.spec-table tr:last-child td {
  border-bottom: none;
}

/* Partner grid */
.partner-section {
  padding: 3rem 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.partner-box {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 1.5rem 1rem;
  text-align: center;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Contact teaser */
.contact-teaser {
  padding: 3rem 0;
  background: var(--color-white);
}

.contact-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.directions-block h3 {
  margin-bottom: 0.75rem;
}

.directions-block address {
  font-style: normal;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.directions-block dl {
  margin-top: 1rem;
}

.directions-block dt {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: 0.75rem;
}

.directions-block dd {
  margin-left: 0;
  font-size: 0.92rem;
}

.contact-link-block {
  border: 1px solid var(--color-border);
  padding: 2rem;
  background: var(--color-bg);
}

.contact-link-block p {
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.65rem 1.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.btn-accent {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.btn-accent:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.btn-outline:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

/* Content sections */
.content-section {
  padding: 3rem 0;
}

.content-section.alt-bg {
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.section-header {
  margin-bottom: 2rem;
}

.section-header p {
  color: var(--color-text-light);
  max-width: 680px;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 1.5rem;
}

.card h3 {
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--color-text-light);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.card-link {
  font-size: 0.88rem;
  font-weight: 600;
}

/* Case studies */
.case-study {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.case-study h3 {
  margin-bottom: 1rem;
}

.case-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.case-meta dt {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-light);
}

.case-meta dd {
  font-size: 0.92rem;
  margin-bottom: 0.75rem;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.team-member {
  display: flex;
  gap: 1.25rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 1.5rem;
}

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.team-member h3 {
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-member p {
  font-size: 0.92rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* FAQ */
.faq-list {
  max-width: 800px;
}

.faq-list details {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  margin-bottom: 0.5rem;
}

.faq-list summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--color-primary);
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before {
  content: "+";
  display: inline-block;
  width: 1.25rem;
  color: var(--color-accent);
  font-weight: 700;
}

.faq-list details[open] summary::before {
  content: "−";
}

.faq-list details p {
  padding: 0 1.25rem 1rem;
  color: var(--color-text-light);
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* Forms */
.contact-form {
  max-width: 560px;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--color-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--color-text);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 0;
}

.form-success {
  display: none;
  background: #e6f7ed;
  border: 1px solid #8fd4a8;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  color: #1a5c32;
}

/* Job listings */
.job-listing {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.job-listing h3 {
  margin-bottom: 0.35rem;
}

.job-meta {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
}

/* Articles */
.article-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.article-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 1.5rem;
}

.article-item time {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.article-item h3 {
  margin: 0.35rem 0 0.5rem;
}

.article-item p {
  color: var(--color-text-light);
  font-size: 0.92rem;
  margin-bottom: 0.75rem;
}

.article-body {
  max-width: 760px;
}

.article-body h2 {
  margin: 2rem 0 0.75rem;
}

.article-body p {
  color: var(--color-text);
}

/* Legal pages */
.legal-content {
  max-width: 760px;
  padding: 3rem 0 4rem;
}

.legal-content h1 {
  margin-bottom: 1.5rem;
}

.legal-content h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.35rem;
}

.legal-content h3 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.1rem;
}

.legal-content p,
.legal-content li {
  color: var(--color-text);
  font-size: 0.95rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content ol {
  list-style: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

/* Definition lists for technical content */
.def-list dl {
  border: 1px solid var(--color-border);
  background: var(--color-white);
}

.def-list dt {
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  color: var(--color-primary);
}

.def-list dd {
  padding: 0.75rem 1.25rem;
  color: var(--color-text-light);
  border-bottom: 1px solid var(--color-border);
  margin: 0;
}

.def-list dd:last-child {
  border-bottom: none;
}

/* Footer */
.site-footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 1.5rem;
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  padding: 0.25rem 0;
  font-size: 0.88rem;
}

.footer-col a:hover {
  color: var(--color-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 1rem 1.25rem;
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-inner p {
  margin: 0;
  font-size: 0.88rem;
  flex: 1;
  min-width: 240px;
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
}

.cookie-actions button {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  font-family: inherit;
}

#cookie-accept {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

#cookie-decline {
  background: transparent;
  color: var(--color-white);
}

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--color-text-light);
}

.breadcrumb a:hover {
  color: var(--color-accent);
}

/* Responsive */
@media (max-width: 1024px) {
  .doc-layout {
    grid-template-columns: 200px 1fr;
  }

  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-hero.with-image,
  .container.with-image {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-white);
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
    padding: 1rem;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav > ul {
    flex-direction: column;
    align-items: stretch;
  }

  .dropdown-menu,
  .mega-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    min-width: auto;
    display: block;
    margin-left: 1rem;
    border: none;
  }

  .has-dropdown > a::after {
    display: none;
  }

  .doc-layout {
    grid-template-columns: 1fr;
  }

  .doc-sidebar {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 0;
  }

  .doc-content {
    padding: 1.5rem 1.25rem;
  }

  .contact-teaser-grid {
    grid-template-columns: 1fr;
  }

  .case-meta {
    grid-template-columns: 1fr;
  }

  .icon-strip-inner {
    justify-content: center;
  }

  .tech-icon {
    min-width: 80px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}


.logo img {
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
}

/* Fix hero overflow */
.hero-massive h1,
.hero h1,
.hero-section h1,
[class*="hero"] h1 {
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100vw;
  padding: 0 1rem;
}

section, main {
  overflow-x: hidden;
}

/* Hero section with background image */
.hero,
.hero-section,
.hero-split,
.hero-massive,
[class*="hero"] {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-image: linear-gradient(135deg, #0f2d44ee 0%, #0f2d44cc 100%), url('../img/hero-1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 6rem 2rem;
}

.hero h1,
.hero-section h1,
.hero-split h1,
.hero-massive h1,
[class*="hero"] h1 {
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  max-width: 800px;
}

.hero p,
.hero-section p,
[class*="hero"] p {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  max-width: 600px;
  margin-top: 1rem;
}

.hero .btn,
.hero a.btn,
.hero button,
[class*="hero"] .btn,
[class*="hero"] .cta-btn,
[class*="hero"] a[class*="btn"] {
  background: #0099cc;
  color: #ffffff;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 1.5rem;
  margin-right: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero .btn:hover,
[class*="hero"] .btn:hover,
[class*="hero"] .cta-btn:hover,
[class*="hero"] a[class*="btn"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Section visual depth */
section:nth-child(even) {
  background-color: #f5f9fc;
}

section:nth-child(odd) {
  background-color: #ffffff;
}

section {
  padding: 5rem 2rem;
}

section .container,
section .section-inner,
section > div:first-child {
  max-width: 1200px;
  margin: 0 auto;
}

/* Better card styling */
.service-card,
.card,
[class*="card"] {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover,
.card:hover,
[class*="card"]:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* Stats/numbers section */
.stats,
.numbers,
[class*="stat"],
[class*="zahlen"] {
  background: #0f2d44;
  color: #ffffff;
  padding: 4rem 2rem;
}

.stats h2,
.stats h3,
[class*="stat"] h2,
[class*="stat"] span {
  color: #0099cc;
}

/* Footer enhancement */
footer {
  background: #0f2d44;
  color: rgba(255,255,255,0.85);
  padding: 4rem 2rem 2rem;
}

footer a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}

footer a:hover {
  color: #0099cc;
}

/* Enhanced navigation */
.site-header,
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0f2d44;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-cta,
nav a:last-child,
.main-nav a:last-child {
  background: #0099cc;
  color: #ffffff !important;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  font-weight: 600;
}
