:root {
  --bg-dark: #121e55;
  --bg-light: #ffffff;
  --bg-light-blue: #f0f8ff;
  --text-light: #ffffff;
  --text-dark: #121e55;
  --accent-primary: #00a2ff;
  --accent-secondary: #121e55;
  --border-light: #e6f2ff;
  --border-dark: #0d1333;
  --elevation: 0 2px 16px rgba(0,162,255,0.08);
  --elevation-hover: 0 4px 24px rgba(0,162,255,0.12);
}

/* Global overflow protection */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

.container, .main-header, .transformation-container, .industries-container, .projects-container, .events-news-container, .more-content-container {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 0;
}

/* Make all images fluid by default for mobile responsiveness */
img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.topbar {
  background: #fff;
  color: var(--text-dark);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border-light);
}

.topbar-flex {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 6px 0;
}

.lang-switcher {
  margin: 0;
}

.lang-switcher a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  opacity: 0.7;
  transition: all 0.2s;
  padding: 4px 8px;
  border-radius: 4px;
}

.lang-switcher a.active, .lang-switcher a:hover {
  opacity: 1;
  font-weight: 700;
  color: var(--accent-primary);
  background: rgba(0,162,255,0.08);
}

.header-container, .main-header, nav {
  overflow: unset !important;
}

.header-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.98);
  /* remove backdrop filter to avoid blurring shining through overlays */
  /* backdrop-filter: blur(16px); */
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--elevation);
  overflow: visible;
}

.main-header {
  background: transparent;
  color: var(--text-dark);
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 32px;
}

.logo img {
  height: 32px;
  vertical-align: middle;
  transition: transform 0.2s;
  filter: brightness(1) contrast(1.2) saturate(1.1);
  max-width: none;
}

.logo img:hover {
  transform: scale(1.05);
  filter: brightness(1.1) contrast(1.3) saturate(1.2);
}

/* Hide desktop navigation elements on mobile */
nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.nav-item {
  position: relative;
}

nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
  padding: 8px 12px;
  border-radius: 6px;
  white-space: nowrap;
  display: block;
}

nav a:hover, nav a:focus {
  color: var(--accent-primary);
  background: rgba(0,162,255,0.08);
}

.has-mega-menu > a::after {
  /* Use Unicode escape and explicit font fallback to avoid glyph substitution (e.g., showing ℃) */
  content: "\25BC"; /* down-pointing triangle */
  font-family: system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-size: 0.7rem;
  line-height: 1;
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.2s;
}

.has-mega-menu:hover > a::after {
  transform: rotate(180deg);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateX(0);
  margin-left: 200px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  border: 1px solid rgba(255, 255, 255, 0.8);
  width: 700px;
  max-width: 700px;
  min-width: 320px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 16px;
}

.has-mega-menu:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 24px 0;
  position: relative;
  justify-items: center;
}

.mega-menu-content::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 40px;
  right: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,162,255,0.2), transparent);
}

.mega-menu-section {
  padding: 0 32px;
  position: relative;
  background: transparent;
  transition: all 0.3s ease;
}

.mega-menu-section::after {
  content: '';
  position: absolute;
  top: 20px;
  right: 0;
  width: 1px;
  height: calc(100% - 40px);
  background: linear-gradient(180deg, transparent, rgba(0,162,255,0.1), transparent);
}

.mega-menu-section:last-child::after {
  display: none;
}

.mega-menu-section:hover {
  background: rgba(0,162,255,0.02);
  border-radius: 12px;
}

.mega-menu-section h4 {
  color: var(--text-dark);
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 20px 0;
  padding: 12px 16px;
  background: linear-gradient(135deg, var(--accent-primary), #00d4ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: none;
  letter-spacing: 0;
  position: relative;
  border-radius: 8px;
}

.mega-menu-section h4::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-primary), #00d4ff);
  border-radius: 2px;
}

.mega-menu-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
  columns: 2;
  column-gap: 32px;
}

.mega-menu-section li {
  margin: 0;
  padding: 0;
}

.mega-menu-section a {
  display: block;
  padding: 10px 0;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.97rem;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  text-align: left;
}

.mega-menu-section a:hover, .mega-menu-section a:focus {
  background: rgba(0,162,255,0.08);
  color: var(--accent-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.btn-header {
  background: var(--accent-primary);
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: var(--elevation);
  font-size: 0.95rem;
  white-space: nowrap;
}

.btn-header:hover {
  background: var(--bg-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--elevation-hover);
}

.hero {
  position: relative;
  background: linear-gradient(rgba(18, 30, 85, 0.6), rgba(0, 162, 255, 0.4)), url('assests/hero_banner/hero-back-banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 100px 0;
  border-bottom: 1px solid var(--border-light);
}

.hero-bg-pattern {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 40px);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 36px;
  letter-spacing: -0.5px;
  line-height: 1.15;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-subtitle {
  color: #ffffff;
  font-size: 1.18rem;
  margin-bottom: 48px;
  line-height: 1.6;
  opacity: 0.95;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.btn-main {
  background: var(--accent-primary);
  color: #fff;
  padding: 20px 48px;
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  border: none;
  box-shadow: var(--elevation);
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-main:hover, .btn-main:focus {
  background: var(--bg-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--elevation-hover);
}

.trust-badges {
  padding: 48px 0 40px 0;
  background: var(--bg-light-blue);
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

.trust-label {
  display: block;
  font-size: 1.08rem;
  color: #666;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.badges-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.trust-badge-img {
  height: 52px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.04));
}

.tagline-section {
  background: #fff;
  padding: 80px 0;
  border-bottom: 1px solid var(--border-light);
}

.tagline-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

.tagline-heading h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin: 0;
}

.tagline-text p {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.transformation {
  background: var(--bg-dark);
  padding: 96px 0 64px 0;
  border-bottom: 1px solid var(--border-dark);
}

.transformation-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.transformation h2 {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--text-light);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.transformation-sub {
  font-weight: 500;
  color: #e0e0e0;
  font-size: 1.18rem;
  margin-top: 8px;
  display: block;
}

.transformation-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.transformation-card {
  background: linear-gradient(135deg, rgba(25, 35, 85, 0.95) 0%, rgba(13, 19, 51, 0.98) 100%);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #fff;
  cursor: pointer;
  border: 1px solid rgba(255, 214, 0, 0.1);
  backdrop-filter: blur(10px);
  text-decoration: none;
  color: inherit;
}

.transformation-card:hover, .transformation-card:focus {
  box-shadow: 0 16px 48px rgba(255, 214, 0, 0.15);
  transform: translateY(-6px);
  border-color: var(--accent-primary);
  background: linear-gradient(135deg, rgba(25, 35, 85, 1) 0%, rgba(13, 19, 51, 1) 100%);
}

.transformation-icon-wrapper {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent-primary), #ffea4a);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(255, 214, 0, 0.2);
  flex-shrink: 0;
}

.transformation-icon {
  width: 32px;
  height: 32px;
  color: var(--bg-dark);
  stroke-width: 2;
}

.transformation-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-label {
  font-size: 0.875rem;
  color: var(--accent-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}

.card-title {
  font-size: 1.25rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}

.card-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  font-weight: 400;
}

.transformation-cta {
  margin-top: 64px;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-radius: 20px;
  padding: 48px 32px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.transformation-cta-content h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.transformation-cta-content p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.transformation-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-transformation-primary {
  background: var(--accent-primary);
  color: var(--bg-dark);
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(255, 214, 0, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-transformation-primary:hover, .btn-transformation-primary:focus {
  background: #ffea4a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 214, 0, 0.4);
}

.btn-transformation-secondary {
  background: transparent;
  color: #fff;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-transformation-secondary:hover, .btn-transformation-secondary:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.services {
  background: var(--bg-light-blue);
  padding: 80px 0 60px 0;
  border-bottom: 1px solid var(--border-light);
}

.services-content-col {
  color: var(--text-dark);
  background: rgba(255,255,255,0.95);
  border-radius: 18px;
  box-shadow: var(--elevation);
  padding: 48px 40px 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
}

.services-label {
  color: var(--accent-primary);
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 1.08rem;
  letter-spacing: 0.5px;
}

.services-content-col h2 {
  font-size: 2.2rem;
  margin-top: 0;
  margin-bottom: 18px;
  color: var(--text-dark);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.services-desc {
  margin-bottom: 32px;
  color: var(--text-dark);
  font-size: 1.15rem;
  line-height: 1.6;
  font-weight: 500;
}

.services-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.services-list .service-item {
  margin-bottom: 0;
  border-bottom: 1px solid #e6f2ff;
  padding-bottom: 0;
}

.services-list .service-toggle {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.13rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 16px 0 0 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  outline: none;
  transition: color 0.2s;
  margin-bottom: 0;
}

.services-list .service-toggle:hover {
  color: var(--accent-primary);
}

.services-list .plus-icon {
  display: inline-block;
  font-size: 1.2em;
  transition: transform 0.3s;
}

.services-list .service-item.open .plus-icon {
  transform: rotate(45deg);
}

.services-list .service-details {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #f8fbff;
  border-radius: 0 0 8px 8px;
  margin: 0;
  padding: 0 18px;
  font-size: 0.97rem;
  color: #333;
  box-shadow: none;
}

.services-list .service-item.open .service-details {
  padding: 10px 18px 16px 18px;
  max-height: 300px;
}

.services-list .service-details p {
  margin: 0;
  font-size: 0.97rem;
  color: #444;
  line-height: 1.6;
}

.btn-secondary {
  background: var(--accent-primary);
  color: #fff;
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1.08rem;
  border: none;
  box-shadow: var(--elevation);
  margin-top: 18px;
  align-self: flex-start;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover, .btn-secondary:focus {
  background: var(--bg-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--elevation-hover);
}

.industries {
  background: var(--bg-dark);
  padding: 80px 0 60px 0;
}

.industries-container {
  width: 100%;
  text-align: center;
}

.industries h2 {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--text-light);
  letter-spacing: -0.5px;
}

.industries-desc {
  color: #e0e0e0;
  font-size: 1.15rem;
  margin-bottom: 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.industry-card {
  background: #1a2a6b;
  border-radius: 16px;
  padding: 24px 12px 20px 12px;
  text-align: center;
  font-weight: 500;
  font-size: 1.08rem;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: var(--elevation);
  transition: all 0.3s;
  cursor: pointer;
  border: 1px solid rgba(0,162,255,0.1);
  text-decoration: none;
  color: inherit;
}

.industry-card:hover, .industry-card:focus {
  background: #2a3a7b;
  box-shadow: 0 8px 24px rgba(0,162,255,0.2);
  transform: translateY(-3px) scale(1.02);
  border-color: var(--accent-primary);
}

.industry-icon-wrapper {
  background: rgba(0,162,255,0.1);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transition: all 0.3s;
}

.industry-icon {
  width: 28px;
  height: 28px;
  color: var(--accent-primary);
  stroke-width: 2;
}

.industry-card:hover .industry-icon-wrapper {
  background-color: var(--accent-primary);
}

.industry-card:hover .industry-icon {
  color: #fff;
}

.industry-card span {
  font-weight: 600;
  color: var(--text-light);
  opacity: 0.95;
  font-size: 1.05rem;
}

.industry-card:hover span {
  opacity: 1;
  color: var(--accent-primary);
}

.industry-card.highlight {
  background: var(--accent-primary);
  color: #fff;
  font-weight: bold;
  min-height: 160px;
}

.highlight-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.highlight-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}

.highlight-desc {
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: #fff;
  opacity: 0.9;
}

.btn-industries {
  background: #fff;
  color: var(--accent-primary);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn-industries:hover, .btn-industries:focus {
  background: var(--bg-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--elevation);
}

.projects {
  background: #fff;
  color: var(--text-dark);
  padding: 100px 0 80px 0;
  border-bottom: 1px solid var(--border-light);
}

.projects-container {
  width: 100%;
}

.projects h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  text-align: center;
}

.projects-desc {
  color: #555;
  font-size: 1.2rem;
  margin-bottom: 64px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 32px;
  margin-bottom: 80px;
}

.case-study-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--elevation);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-light);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.case-study-card:hover, .case-study-card:focus {
  box-shadow: var(--elevation-hover);
  transform: translateY(-8px);
  border-color: var(--accent-primary);
}

.case-study-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.case-study-card:hover .case-study-image img {
  transform: scale(1.05);
}

.case-study-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(18, 30, 85, 0.8) 0%, rgba(0, 162, 255, 0.6) 100%);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 20px;
}

.case-study-category {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.case-study-content {
  padding: 32px 28px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.case-study-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
  line-height: 1.3;
}

.case-study-summary {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

.case-study-results {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.result-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.result-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-primary);
  margin-bottom: 4px;
}

.result-label {
  font-size: 0.875rem;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-case-study {
  background: var(--accent-primary);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 162, 255, 0.2);
}

.btn-case-study:hover, .btn-case-study:focus {
  background: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 162, 255, 0.3);
}

.case-studies-cta {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1a2a6b 100%);
  border-radius: 24px;
  padding: 56px 40px;
  text-align: center;
  color: #fff;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.case-studies-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 40px);
  pointer-events: none;
}

.case-studies-cta-content {
  position: relative;
  z-index: 2;
}

.case-studies-cta h3 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.case-studies-cta p {
  font-size: 1.15rem;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.case-studies-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-case-studies-primary {
  background: var(--accent-primary);
  color: var(--bg-dark);
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(255, 214, 0, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-case-studies-primary:hover, .btn-case-studies-primary:focus {
  background: #ffea4a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 214, 0, 0.4);
}

.btn-case-studies-secondary {
  background: transparent;
  color: #fff;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-case-studies-secondary:hover, .btn-case-studies-secondary:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.clients-section {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

.clients-label {
  display: block;
  font-size: 1.08rem;
  color: #666;
  margin-bottom: 24px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.clients-logos {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.clients-logos span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--elevation);
  transition: all 0.2s;
  border: 1px solid var(--border-light);
}

.clients-logos span:hover {
  box-shadow: var(--elevation-hover);
  transform: translateY(-1px);
  border-color: var(--accent-primary);
}

.clients-logos img {
  filter: grayscale(1);
  opacity: 0.6;
  max-height: 32px;
  transition: all 0.2s;
}

.clients-logos span:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.about {
  background: var(--bg-light-blue);
  color: var(--text-dark);
  padding: 100px 0 80px 0;
}

.about-content-col {
  background: #fff;
  padding: 64px 48px 56px 48px;
  border-radius: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--elevation);
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.about-accent {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at 60% 40%, var(--accent-primary) 0%, rgba(0,162,255,0.3) 80%, transparent 100%);
  border-radius: 50%;
  z-index: 1;
  opacity: 0.7;
}

.about-content-col h2 {
  font-size: 2.4rem;
  margin-bottom: 32px;
  color: var(--text-dark);
  position: relative;
  z-index: 2;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.about-stats {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: flex;
  gap: 60px;
  position: relative;
  z-index: 2;
  justify-content: center;
}

.about-stats li {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-primary);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.about-stats li strong {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.about-content-col p {
  font-size: 1.2rem;
  color: #555;
  position: relative;
  z-index: 2;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.events-news {
  background: #fff;
  color: var(--text-dark);
  padding: 80px 0 60px 0;
  border-bottom: 1px solid var(--border-light);
}

.events-news-container {
  width: 100%;
}

.events-news h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.events-news-desc {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.events-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.event-news-card {
  background: var(--bg-light-blue);
  border-radius: 12px;
  padding: 22px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 180px;
  box-shadow: var(--elevation);
  position: relative;
  font-size: 1.05rem;
  transition: all 0.3s;
  border: 1px solid var(--border-light);
}

.event-news-card:hover {
  box-shadow: var(--elevation-hover);
  transform: translateY(-2px) scale(1.02);
  border-color: var(--accent-primary);
}

.event-news-date {
  color: var(--accent-primary);
  font-size: 0.98rem;
  font-weight: bold;
  margin-bottom: 6px;
}

.event-news-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.event-news-desc {
  color: #555;
  font-size: 0.98rem;
  margin-bottom: 12px;
}

.btn-event-news {
  background: var(--accent-primary);
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  margin-top: auto;
  display: inline-block;
}

.btn-event-news:hover {
  background: var(--bg-dark);
  color: #fff;
  transform: translateY(-1px);
}

.event-news-card.highlight {
  background: var(--accent-primary);
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  text-align: center;
  flex-direction: column;
}

.highlight-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.btn-event-news-highlight {
  background: #fff;
  color: var(--accent-primary);
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  display: inline-block;
}

.btn-event-news-highlight:hover {
  background: var(--bg-dark);
  color: #fff;
}

.more-content {
  background: var(--bg-light-blue);
  color: var(--text-dark);
  padding: 80px 0 60px 0;
}

.more-content-container {
  width: 100%;
}

.more-content h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.more-content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.more-content-card {
  background: #fff;
  border-radius: 12px;
  padding: 0 0 18px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 320px;
  box-shadow: var(--elevation);
  position: relative;
  font-size: 1.05rem;
  transition: all 0.3s;
  border: 1px solid var(--border-light);
}

.more-content-card:hover {
  box-shadow: var(--elevation-hover);
  transform: translateY(-2px) scale(1.02);
  border-color: var(--accent-primary);
}

.more-content-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  margin-bottom: 10px;
  background: #eee;
}

.more-content-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 6px;
  color: var(--text-dark);
  padding: 0 18px;
}

.more-content-desc {
  color: #555;
  font-size: 0.98rem;
  margin-bottom: 12px;
  padding: 0 18px;
}

.btn-more-content {
  background: var(--accent-primary);
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  margin-left: 18px;
  margin-top: auto;
  display: inline-block;
}

.btn-more-content:hover {
  background: var(--bg-dark);
  color: #fff;
  transform: translateY(-1px);
}

footer {
  background: var(--bg-dark);
  color: var(--text-light);
  border-top: 1px solid var(--border-dark);
}

.footer-primary {
  padding: 72px 0 0 0;
}

.footer-cta {
  text-align: center;
  margin-bottom: 64px;
  border: 1px solid var(--border-dark);
  padding: 48px 32px;
  border-radius: 16px;
  background: #1a2a6b;
  box-shadow: var(--elevation);
}

.footer-cta-title {
  font-size: 2.1rem;
  font-weight: 800;
  margin: 0 0 18px 0;
  color: #fff;
}

.footer-cta-desc {
  font-size: 1.15rem;
  color: #e0e0e0;
  max-width: 500px;
  margin: 0 auto 28px auto;
}

.footer-form {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.footer-input {
  width: 320px;
  padding: 14px 18px;
  border-radius: 8px;
  border: 1px solid var(--border-dark);
  background: #0d1333;
  color: var(--text-light);
  font-size: 1.05rem;
}

.btn-footer-cta {
  background: var(--accent-primary);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  font-weight: 800;
  cursor: pointer;
  font-size: 1.05rem;
  box-shadow: var(--elevation);
  transition: all 0.2s;
}

.btn-footer-cta:hover, .btn-footer-cta:focus {
  background: #fff;
  color: var(--accent-primary);
  transform: translateY(-1px);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 0;
}

.footer-logo img {
  height: 32px;
  vertical-align: middle;
  filter: brightness(0) invert(1);
}

.footer-mission {
  color: #e0e0e0;
  font-size: 1.08rem;
  margin-top: 16px;
}

.footer-title {
  font-size: 1.08rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  color: var(--text-light);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li a {
  color: #e0e0e0;
  text-decoration: none;
  margin-bottom: 14px;
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 500;
  border-radius: 4px;
  padding: 4px 0;
  transition: all 0.2s;
}

.footer-col ul li a:hover, .footer-col ul li a:focus {
  color: var(--accent-primary);
}

.footer-secondary {
  border-top: 1px solid var(--border-dark);
  padding: 32px 0 24px 0;
}

.footer-secondary-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 32px;
  color: #aaa;
  font-size: 1rem;
}

.footer-legal p { margin: 0; }
.footer-legal a { 
  color: #aaa; 
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: var(--accent-primary);
}

.footer-socials {
  display: flex;
  gap: 20px;
}
.footer-socials a {
  color: #aaa;
  border-radius: 50%;
  padding: 6px;
  transition: all 0.2s;
}
.footer-socials a:hover, .footer-socials a:focus {
  background: var(--accent-primary);
  color: #fff;
}

/* Accessibility & Focus States */
a:focus-visible, button:focus-visible, [tabindex="0"]:focus-visible {
  outline: 3px solid var(--accent-primary);
  outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 1100px) {
  .container, .main-header {
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
  .footer-links-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .main-header, .container {
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
  nav ul {
    gap: 14px;
  }
  .mega-menu {
    min-width: 650px;
    left: 0;
    transform: none;
    margin-left: -30px;
    border-radius: 16px;
  }
  .mega-menu-content {
    grid-template-columns: repeat(2, 1fr);
    padding: 32px 0;
  }
  .mega-menu-content::before {
    left: 32px;
    right: 32px;
    top: 16px;
  }
  .mega-menu-section {
    padding: 16px 32px;
  }
  .mega-menu-section:nth-child(3) {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(0,162,255,0.1);
    padding-top: 24px;
    margin-top: 16px;
  }
  .mega-menu-section:nth-child(3)::after {
    display: none;
  }
  .mega-menu-section h4 {
    font-size: 1rem;
    margin-bottom: 16px;
  }
  .mega-menu-section a {
    font-size: 0.9rem;
    padding: 10px 14px;
  }
  .hero h1 {
    font-size: 2.4rem;
  }
  

  
  .hero-content {
    max-width: 100% !important;
    padding: 0 20px !important;
  }
  
  .hero h1 {
    font-size: 2.2rem !important;
    margin-bottom: 24px !important;
    line-height: 1.2 !important;
  }
  
  .hero-subtitle {
    font-size: 1.1rem !important;
    margin-bottom: 32px !important;
    line-height: 1.5 !important;
  }
  
  .btn-main {
    padding: 16px 32px !important;
    font-size: 1.1rem !important;
    border-radius: 10px !important;
  }
  .btn-main {
    padding: 14px 24px;
    font-size: 1rem;
  }
  .trust-badges {
    padding: 32px 0 24px 0;
  }
  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .footer-cta {
    padding: 32px 8px;
  }
  .tagline-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about {
    padding: 60px 0 50px 0;
  }
  .about-content-col {
    padding: 48px 32px 40px 32px;
    margin: 0 16px;
  }
  .about-content-col h2 {
    font-size: 2rem;
    margin-bottom: 28px;
  }
  .about-stats {
    flex-direction: column;
    gap: 24px;
    align-items: center;
    margin-bottom: 32px;
  }
  .about-stats li {
    font-size: 1.3rem;
  }
  .about-stats li strong {
    font-size: 1.8rem;
  }
  .about-content-col p {
    font-size: 1.1rem;
  }
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .transformation-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .transformation-cta {
    margin-top: 48px;
    padding: 40px 24px;
  }
  .transformation-cta-content h3 {
    font-size: 1.75rem;
  }
  .projects {
    padding: 60px 0 50px 0;
  }
  .projects h2 {
    font-size: 2rem;
  }
  .projects-desc {
    font-size: 1.1rem;
    margin-bottom: 48px;
  }
  .case-studies-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 60px;
  }
  .case-study-content {
    padding: 24px 20px 20px 20px;
  }
  .case-study-title {
    font-size: 1.25rem;
  }
  .case-study-results {
    gap: 16px;
    padding: 16px 0;
  }
  .result-number {
    font-size: 1.5rem;
  }
  .case-studies-cta {
    padding: 40px 24px;
    margin-bottom: 60px;
  }
  .case-studies-cta h3 {
    font-size: 1.8rem;
  }
  .case-studies-cta p {
    font-size: 1.1rem;
    margin-bottom: 28px;
  }
  .case-studies-cta-buttons {
    flex-direction: column;
    gap: 16px;
  }
  .btn-case-studies-primary,
  .btn-case-studies-secondary {
    width: 100%;
    justify-content: center;
  }
  .events-news-grid {
    grid-template-columns: 1fr 1fr;
  }
  .more-content-grid {
    grid-template-columns: 1fr 1fr;
  }
  .industries-grid {
    grid-template-columns: 1fr 1fr;
  }
  .transformation-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .transformation-card {
    padding: 24px;
  }
  .transformation-cta {
    margin-top: 48px;
    padding: 40px 24px;
  }
  .transformation-cta-content h3 {
    font-size: 1.75rem;
  }
  .services-content-col {
    padding: 32px 20px;
    margin: 0 8px;
  }
  .btn-transformation-primary, 
  .btn-transformation-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  /* Reduce top offset to match smaller fixed header on mobile (60px header + 1px border) */
  main { padding-top: 61px; }

  .container {
    padding: 0 16px;
  }

  .main-header {
    padding: 12px 16px;
    min-height: 60px;
  }

  .logo img {
    height: 32px;
  }

  /* Show mobile menu toggle on mobile */
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
  }

  .hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    margin: 2px 0;
    transition: 0.3s;
  }

  .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  /* Hide desktop navigation on mobile (we use overlay menu) */
  .main-header nav { display: none; }

  /* Scope mobile desktop-nav overrides strictly to header navigation */
  .main-header nav ul {
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 20px 0;
    transform: translateY(-100vh);
    transition: transform 0.3s ease;
    z-index: 1000;
    display: flex;
  }
  .main-header nav ul.mobile-open { transform: translateY(0); }
  .main-header .nav-item { margin: 0; border-bottom: 1px solid var(--border-light); }
  .main-header .nav-item:last-child { border-bottom: none; }
  .main-header nav a { padding: 16px 20px; font-size: 1.1rem; display: block; min-height: 48px; }

  /* Drawer-specific sizing/typography for small screens */


  .has-mega-menu > a::after {
    display: none;
  }

  .mega-menu {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .hero {
    padding: 60px 0 40px 0;
    /*min-height: 100vh;*/
    text-align: center;
  }
  
  /* Nur für Seiten mit hero-modern, nicht für Kontaktseiten */
  .hero-modern:not(.contact-hero) {
    min-height: 100vh !important;
    padding: 120px 0 120px 0 !important;
  }
  
  /* Smooth header loading - prevent flicker without huge spaces */
  .header-loading {
    opacity: 0.9 !important;
    transition: opacity 0.3s ease-in-out !important;
  }
  
  .header-loading .header-content {
    justify-content: flex-start !important;
  }
  
  /* Reserve minimal space for header */
  #header-include {
    position: relative !important;
    min-height: 0 !important;
  }
  
  /* Ensure header doesn't cause layout shifts */
  .main-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    background: rgba(255,255,255,0.98) !important;
    backdrop-filter: blur(10px) !important;
  }
  
  /* Kontaktseite mobile Styles */
  .contact-hero {
    padding: 80px 0 40px 0 !important;
    min-height: auto !important;
  }
  
  .contact-container {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  
  .contact-form-container {
    order: 1 !important;
  }
  
  .contact-info {
    order: 2 !important;
  }
  

  

  


  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 32px;
  }

  .btn-main {
    width: 100%;
    max-width: 300px;
    padding: 16px 24px;
    font-size: 1.1rem;
    margin: 0 auto;
    display: block;
    text-align: center;
  }

  .tagline-section {
    padding: 60px 0;
  }

  .tagline-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .tagline-heading h2 {
    font-size: 2rem;
    margin-bottom: 0;
  }

  .tagline-text p {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .transformation {
    padding: 60px 0;
  }

  .transformation h2 {
    font-size: 2.2rem;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 40px;
  }

  .transformation-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .transformation-card {
    padding: 28px 24px;
    text-align: center;
  }

  .transformation-icon-wrapper {
    margin: 0 auto 20px auto;
  }

  .card-title {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }

  .card-description {
    font-size: 1rem;
    line-height: 1.5;
  }

  .transformation-cta {
    margin-top: 60px;
    padding: 40px 24px;
    text-align: center;
  }

  .transformation-cta-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .transformation-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 32px;
  }

  .transformation-cta-buttons {
    flex-direction: column;
    gap: 16px;
  }

  .btn-transformation-primary,
  .btn-transformation-secondary {
    width: 100%;
    padding: 16px 24px;
    font-size: 1.1rem;
    justify-content: center;
  }

  .services {
    padding: 60px 0;
  }

  .services-content-col {
    padding: 40px 24px;
    text-align: center;
  }

  .services-content-col h2 {
    font-size: 2rem;
    margin-bottom: 24px;
  }

  .services-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 32px;
  }

  .services-list li {
    padding: 20px 0;
    font-size: 1.2rem;
    min-height: 60px;
  }

  .btn-secondary {
    width: 100%;
    max-width: 300px;
    padding: 16px 24px;
    font-size: 1.1rem;
    margin: 32px auto 0 auto;
    display: block;
    text-align: center;
  }

  .industries {
    padding: 60px 0;
  }

  .industries h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 24px;
  }

  .industries-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 40px;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .industry-card {
    min-height: 140px;
    padding: 20px 12px 16px 12px;
    text-align: center;
  }

  .industry-card span {
    font-size: 0.95rem;
  }

  .industry-card.highlight {
    grid-column: 1 / -1;
    min-height: 120px;
  }

  .highlight-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .highlight-desc {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .btn-industries {
    padding: 12px 24px;
    font-size: 1rem;
  }

  .projects {
    padding: 60px 0;
  }

  .projects h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 24px;
  }

  .projects-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 40px;
  }

  .case-studies-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
  }

  .case-study-image {
    height: 200px;
  }

  .case-study-content {
    padding: 24px 20px 20px 20px;
  }

  .case-study-title {
    font-size: 1.2rem;
    margin-bottom: 16px;
  }

  .case-study-summary {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 24px;
  }

  .case-study-results {
    flex-direction: column;
    gap: 16px;
    padding: 20px 0;
    margin-bottom: 24px;
  }

  .result-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .result-number {
    font-size: 1.6rem;
  }

  .result-label {
    font-size: 0.9rem;
  }

  .case-studies-cta {
    padding: 40px 24px;
    margin-bottom: 48px;
    text-align: center;
  }

  .case-studies-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .case-studies-cta p {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 32px;
  }

  .case-studies-cta-buttons {
    flex-direction: column;
    gap: 16px;
  }

  .btn-case-studies-primary,
  .btn-case-studies-secondary {
    width: 100%;
    padding: 16px 24px;
    font-size: 1.1rem;
    justify-content: center;
  }

  .clients-section {
    text-align: center;
  }

  .clients-label {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .clients-logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .clients-logos span {
    padding: 12px 16px;
  }

  .about {
    padding: 60px 0;
  }

  .about-content-col {
    padding: 40px 24px;
    margin: 0;
    text-align: center;
  }

  .about-content-col h2 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 32px;
  }

  .about-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
  }

  .about-stats li {
    font-size: 1.3rem;
    text-align: center;
  }

  .about-stats li strong {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 4px;
  }

  .about-content-col p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: left;
  }

  .about-accent {
    width: 50px;
    height: 50px;
    top: 16px;
    right: 16px;
  }

  .footer-primary {
    padding: 60px 0 40px 0;
  }

  .footer-cta {
    text-align: center;
    margin-bottom: 48px;
  }

  .footer-cta-title {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }

  .footer-cta-desc {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 24px;
  }

  .footer-form {
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-input {
    padding: 16px;
    font-size: 1rem;
  }

  .btn-footer-cta {
    padding: 16px 24px;
    font-size: 1.1rem;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-logo-col {
    order: -1;
    margin-bottom: 16px;
  }

  .footer-title {
    font-size: 1.2rem;
    margin-bottom: 16px;
  }

  .footer-col ul li a {
    font-size: 1rem;
    padding: 8px 0;
    display: block;
  }

  .footer-secondary {
    padding: 24px 0;
  }

  .footer-secondary-flex {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
  }

  .footer-legal {
    flex-direction: column;
    gap: 12px;
  }

  .footer-legal a {
    font-size: 1rem;
    padding: 8px 0;
  }

  .footer-socials {
    gap: 20px;
  }

  .footer-socials a {
    width: 48px;
    height: 48px;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

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

  .hero-subtitle {
    font-size: 1rem;
  }

  .transformation h2 {
    font-size: 1.8rem;
  }

  .transformation-card {
    padding: 24px 20px;
  }

  .card-title {
    font-size: 1.2rem;
  }

  .transformation-cta-content h3 {
    font-size: 1.7rem;
  }

  .services-content-col h2,
  .industries h2,
  .projects h2,
  .about-content-col h2 {
    font-size: 1.8rem;
  }

  .industries-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .industry-card {
    min-height: 120px;
    padding: 16px 12px;
  }

  .industry-icon-wrapper {
    width: 48px;
    height: 48px;
  }

  .industry-icon {
    width: 24px;
    height: 24px;
  }

  .industry-card span {
    font-size: 0.9rem;
  }

  .case-study-title {
    font-size: 1.1rem;
  }

  .case-study-summary {
    font-size: 0.95rem;
  }

  .about-stats li {
    font-size: 1.2rem;
  }

  .about-stats li strong {
    font-size: 1.6rem;
  }

  .footer-cta-title {
    font-size: 1.6rem;
  }
}

/* Very small phones */
@media (max-width: 375px) {
  .hero {
    min-height: 380px;
  }
  .hero h1 {
    font-size: 1.7rem;
  }
  .hero-subtitle {
    font-size: 0.98rem;
  }
  .tagline-heading h2,
  .projects h2,
  .industries h2,
  .services-content-col h2,
  .about-content-col h2 {
    font-size: 1.6rem;
  }
  .case-study-image {
    height: 180px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .transformation-card:hover,
  .industry-card:hover,
  .case-study-card:hover {
    transform: none;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  }

  nav a,
  .btn-main,
  .btn-secondary,
  .btn-transformation-primary,
  .btn-transformation-secondary,
  .btn-case-study,
  .btn-case-studies-primary,
  .btn-case-studies-secondary,
  .btn-footer-cta {
    min-height: 44px;
    min-width: 44px;
  }

  .transformation-cta-buttons,
  .case-studies-cta-buttons {
    gap: 20px;
  }
}

/* Mobile Menu Toggle - only hide on desktop */
@media (min-width: 769px) {
  .mobile-menu-toggle { display: none; }
}

/* Ensure mega menu never causes overflow */
.mega-menu {
  max-width: calc(100vw - 32px);
} 

/* Mobile Menu Overlay - Syntra Style */
.mobile-overlay {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 2000;
}
.mobile-overlay.active { display: block; }

.mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.mobile-sidebar {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(85vw, 340px);
  background: #ffffff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
}

.mobile-overlay.active .mobile-sidebar {
  transform: translateX(0);
}

.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #f0f2f5;
  background: #fafbfc;
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-logo img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.mobile-logo span {
  font-size: 18px;
  font-weight: 700;
  color: #1a1d29;
}

.mobile-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #6b7280;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

.mobile-menu {
  flex: 1;
  padding: 16px 0;
  overflow-y: auto;
}

.menu-item {
  margin-bottom: 2px;
}

.menu-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: none;
  border: none;
  text-decoration: none;
  color: #374151;
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.menu-link:hover {
  background: #f9fafb;
}

.menu-icon {
  font-size: 20px;
  width: 24px;
  text-align: center;
}

.menu-arrow {
  margin-left: auto;
  font-size: 16px;
  color: #9ca3af;
  transition: transform 0.2s ease;
}

.menu-expandable.expanded .menu-arrow {
  transform: rotate(90deg);
}

.submenu {
  max-height: 0;
  overflow: hidden;
  background: #f8f9fa;
  transition: max-height 0.3s ease;
}

.submenu.active {
  max-height: 500px;
}

.submenu a {
  display: block;
  padding: 12px 20px 12px 60px;
  color: #6b7280;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-top: 1px solid #e5e7eb;
  transition: background-color 0.2s ease;
}

.submenu a:hover {
  background: #f3f4f6;
  color: #374151;
}

.mobile-footer {
  padding: 20px;
  border-top: 1px solid #f0f2f5;
  background: #fafbfc;
}

.language-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.language-switch a {
  color: #6b7280;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.language-switch a.active {
  color: var(--accent-primary);
}

.language-switch span {
  color: #d1d5db;
}

/* Show mobile menu only on mobile */
@media (min-width: 769px) {
  #mobileMenuOverlay { display: none !important; }
}

@media (max-width: 768px) {
  #mobileMenuOverlay { display: none; }
  #mobileMenuOverlay.active { display: block; }
}

.industry-card.highlight .highlight-title {
  color: var(--bg-dark);
  text-align: center;
} 

.case-study-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "badge badge"
    "title title"
    "subtitle subtitle"
    "heroVisual heroVisual"
    "cta cta" !important;
  align-items: center;
}
.case-study-hero .hero-text-modern { display: contents !important; }
.case-study-hero .case-study-badge { grid-area: badge !important; align-self: start !important; }
.case-study-hero .hero-text-modern h1 { grid-area: title !important; }
.case-study-hero .hero-subtitle-modern { grid-area: subtitle !important; }
.case-study-hero .hero-visual { grid-area: heroVisual !important; }
.case-study-hero .hero-cta { grid-area: cta !important; }

@media (max-width: 768px) {
  .case-study-hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "badge"
      "title"
      "subtitle"
      "heroVisual"
      "cta" !important;
    gap: 8px !important;
  }
}

.compact-hero .hero,
.compact-hero .hero-modern {
  /* Mobile-only compaction; gated by class from JS */
}

@media (max-width: 768px) {
  .compact-hero .hero {
    min-height: 0 !important;
    padding: 12px 0 12px 0 !important;
  }
  .compact-hero .hero h1 { margin-bottom: 8px !important; }
  .compact-hero .hero .hero-subtitle { margin-bottom: 12px !important; }
  .compact-hero .hero .btn-main { margin-top: 8px !important; }

  /* Modern hero variant */
  .compact-hero .hero-modern {
    position: relative !important;
    min-height: 60vh !important;
    padding: 80px 0 80px 0 !important;
  }
  .compact-hero .hero-content-modern {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    grid-template-areas:
      "badge"
      "title"
      "subtitle"
      "heroVisual"
      "cta" !important;
  }
  .compact-hero .hero-text-modern { display: contents !important; }
  .compact-hero .case-study-badge { grid-area: badge !important; align-self: start !important; }
  .compact-hero .hero-text-modern h1 { grid-area: title !important; }
  .compact-hero .hero-subtitle-modern { grid-area: subtitle !important; }
  .compact-hero .hero-cta { grid-area: cta !important; }
  .compact-hero .hero-visual { grid-area: heroVisual !important; justify-self: center !important; }
  .compact-hero .hero-text-modern h1 { font-size: 2rem !important; margin: 0 0 12px 0 !important; }
  .compact-hero .hero-subtitle-modern { font-size: 1.2rem !important; margin: 0 0 16px 0 !important; }
  .compact-hero .hero-card { padding: 8px 12px !important; min-height: 0 !important; }
  .compact-hero .hero-card .card-icon { font-size: 24px !important; }
}

.services-list .service-details {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #f8fbff;
  border-radius: 8px;
  margin: 0 0 12px 0;
  padding: 0 18px;
  font-size: 0.97rem;
  color: #333;
  box-shadow: none;
}
.services-list .service-item.open .service-details {
  padding: 14px 18px 16px 18px;
  max-height: 300px;
}
.services-list .service-details p {
  margin: 0;
  font-size: 0.97rem;
  color: #444;
  line-height: 1.6;
}
.services-list .service-toggle {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.13rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 16px 0 10px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  outline: none;
  transition: color 0.2s;
}
.services-list .service-toggle:hover {
  color: var(--accent-primary);
}
.services-list .plus-icon {
  display: inline-block;
  font-size: 1.2em;
  transition: transform 0.3s;
}
.services-list .service-item.open .plus-icon {
  transform: rotate(45deg);
} 

main {
  /* Match fixed header height to eliminate gap (72px header + 1px border) */
  padding-top: 73px;
}

.mega-menu-list-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(4, auto);
  gap: 0 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.mega-menu-list-2col li {
  margin: 0;
  padding: 0;
}
.mega-menu-list-2col a {
  display: block;
  padding: 8px 0;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.93rem;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  text-align: left;
}
.mega-menu-list-2col a:hover, .mega-menu-list-2col a:focus {
  background: rgba(0,162,255,0.08);
  color: var(--accent-primary);
}

.mega-menu--branchen {
  width: 420px;
  max-width: 420px;
}

.mega-menu--casestudies {
  width: 420px;
  max-width: 420px;
}
.mega-menu-list-1col {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.mega-menu-list-1col li {
  margin: 0;
  padding: 0;
}
.mega-menu-list-1col a {
  display: block;
  padding: 10px 0;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  text-align: left;
}
.mega-menu-list-1col a:hover, .mega-menu-list-1col a:focus {
  background: rgba(0,162,255,0.08);
  color: var(--accent-primary);
}

/* Contact page specific styles */
.contact-section .hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1a365d 50%, var(--accent-primary) 100%) !important;
  background-image: none !important;
}

.contact-section .consent-group input[type="checkbox"] {
  transform: scale(1.8);
  margin-top: 8px;
}

@media (max-width: 768px) {
  .contact-section .consent-group input[type="checkbox"] {
    transform: scale(2.5) !important;
    margin-right: 12px;
    margin-top: 8px;
  }
  
  .contact-section .consent-group label {
    font-size: 1rem;
    line-height: 1.6;
  }
}