@charset "UTF-8";
/* ============================================
   SKILLWORKS AG — Stylesheet (SCSS)
   Farben, Abstände und Komponenten
   ============================================ */
:root {
  --sw-blue: #1a3a5c;
  --sw-blue-dark: #0f2239;
  --sw-accent: #e85d26;
  --sw-accent-light: #fde8dc;
  --sw-light: #f4f6f9;
  --sw-mid: #d0dce8;
  --sw-text: #1a2535;
  --sw-muted: #5a6a7e;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --transition: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #1a2535;
  background: #fff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.section-tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #e85d26;
  margin-bottom: 0.6rem;
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}
.section-head h2 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #1a3a5c;
  margin-bottom: 0.5rem;
}
.section-head p {
  color: #5a6a7e;
  font-size: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.navbar {
  background: #0f2239;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.logo .logo-mark {
  height: 22px;
  width: auto;
  display: block;
}
.logo span {
  color: #fff;
}

.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  transition: color 0.2s ease;
}
.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  background: #e85d26;
  color: #fff;
  border: none;
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.nav-cta:hover {
  opacity: 0.88;
}

.nav-burger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 1rem;
}
.lang-switch span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

.lang-btn {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  padding: 2px 7px;
  border-radius: 4px;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.lang-btn:hover {
  color: #fff;
}
.lang-btn.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #0f2239;
  padding: 1rem 2rem;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
}
.mobile-menu.open {
  display: flex;
}

.mobile-nav-label {
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: -0.25rem;
}

.mobile-sub-link {
  padding-left: 0.75rem;
  border-left: 2px solid #e85d26;
  font-size: 14px !important;
}

.nav-dropdown {
  position: relative;
}
.nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-toggle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  line-height: inherit;
  transition: color 0.2s ease;
}
.nav-dropdown-toggle::after {
  content: "▾";
  font-size: 10px;
  opacity: 0.7;
}
.nav-dropdown-toggle:hover {
  color: #fff;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff;
  border-radius: 10px;
  padding: 0.4rem;
  min-width: 230px;
  box-shadow: 0 8px 32px rgba(15, 34, 57, 0.18);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 200;
}
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
}

.dropdown-item {
  display: block;
  padding: 0.7rem 0.9rem;
  border-radius: 6px;
  transition: background 0.2s ease;
}
.dropdown-item:hover {
  background: #f4f6f9;
}
.dropdown-item .di-name {
  font-size: 14px;
  font-weight: 600;
  color: #1a3a5c;
  display: block;
  margin-bottom: 2px;
}
.dropdown-item .di-desc {
  font-size: 12px;
  color: #5a6a7e;
  display: block;
  line-height: 1.4;
}

.page-hero {
  background: #1a3a5c;
  padding: 3.5rem 2.5rem 3rem;
  text-align: center;
}
.page-hero .breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  margin-bottom: 1.25rem;
}
.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
}
.page-hero .breadcrumb a:hover {
  color: #fff;
}
.page-hero .breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
}
.page-hero .page-eyebrow {
  display: inline-block;
  background: rgba(232, 93, 38, 0.2);
  color: #ffb88a;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.page-hero .page-hero-desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 2rem;
}

.page-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2.5rem;
}

.content-placeholder {
  background: #f4f6f9;
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  border: 2px dashed #d0dce8;
}
.content-placeholder p {
  color: #5a6a7e;
  font-size: 15px;
}

.hero {
  background: #1a3a5c;
  padding: 5rem 2.5rem 4rem;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(232, 93, 38, 0.2);
  color: #ffb88a;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 em {
  color: #ffb88a;
  font-style: normal;
}
.hero > p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: #e85d26;
  color: #fff;
  border: none;
  padding: 13px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.btn-primary:hover {
  opacity: 0.88;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  padding: 13px 28px;
  border-radius: 12px;
  font-size: 15px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.btn-outline:hover {
  border-color: #fff;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-top: 3.5rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
}
.stat-num span {
  color: #ffb88a;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

.about {
  padding: 5rem 2.5rem;
  display: flex;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 280px;
}
.about-text h2 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #1a3a5c;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.about-text p {
  color: #5a6a7e;
  margin-bottom: 1rem;
}

.about-values {
  flex: 1;
  min-width: 280px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.val-card {
  background: #f4f6f9;
  border-radius: 10px;
  padding: 1.25rem;
  border-left: 3px solid #e85d26;
}
.val-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: #1a3a5c;
  margin-bottom: 4px;
}
.val-card p {
  font-size: 13px;
  color: #5a6a7e;
}

.services {
  background: #f4f6f9;
  padding: 5rem 2.5rem;
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem;
  border: 1px solid #d0dce8;
  transition: box-shadow 0.2s ease;
}
.card:hover {
  box-shadow: 0 4px 20px rgba(26, 58, 92, 0.1);
}
.card h3 {
  font-size: 15px;
  font-weight: 600;
  color: #1a3a5c;
  margin-bottom: 0.5rem;
}
.card p {
  font-size: 13px;
  color: #5a6a7e;
  line-height: 1.6;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #1a3a5c;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-icon svg {
  width: 22px;
  height: 22px;
}

.clients {
  padding: 5rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.logo-scroll-wrap {
  overflow: hidden;
  position: relative;
  margin-top: 2.5rem;
}
.logo-scroll-wrap::before, .logo-scroll-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.logo-scroll-wrap::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}
.logo-scroll-wrap::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.logo-track {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  animation: scroll-logos 70s linear infinite;
  width: max-content;
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.logo-item {
  flex-shrink: 0;
  height: 48px;
  width: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: none;
  transition: none;
}
.logo-item:hover {
  filter: none;
}
.logo-item img {
  max-height: 48px;
  max-width: 120px;
  object-fit: contain;
}

.projects {
  background: #f4f6f9;
  padding: 5rem 2.5rem;
}

.projects-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.proj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.proj-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #d0dce8;
  background: #fff;
  transition: transform, box-shadow 0.2s ease;
}
.proj-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(26, 58, 92, 0.12);
}

/* Farbiger Streifen oben */
.proj-header {
  height: 7px;
}
.proj-header.blue {
  background: #1a3a5c;
}
.proj-header.accent {
  background: #e85d26;
}
.proj-header.teal {
  background: #1D9E75;
}
.proj-header.purple {
  background: #534AB7;
}

.proj-body {
  padding: 1.5rem;
}
.proj-body h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1a3a5c;
  margin-bottom: 0.5rem;
}
.proj-body p {
  font-size: 13px;
  color: #5a6a7e;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.proj-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}
.proj-tag.it {
  background: #e6f1fb;
  color: #1a3a5c;
}
.proj-tag.beratung {
  background: #fde8dc;
  color: #993c1d;
}
.proj-tag.infrastruktur {
  background: #E1F5EE;
  color: #0F6E56;
}
.proj-tag.digital {
  background: #EEEDFE;
  color: #3C3489;
}

.proj-meta {
  display: flex;
  gap: 1.25rem;
  font-size: 12px;
  color: #5a6a7e;
  flex-wrap: wrap;
}
.proj-meta span::before {
  content: "·";
  margin-right: 5px;
  color: #e85d26;
}

.why {
  padding: 5rem 2.5rem;
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: #1a3a5c;
  margin-bottom: 3px;
}
.why-item p {
  font-size: 13px;
  color: #5a6a7e;
}

.team-highlight {
  margin-top: 3.25rem;
}

.team-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.team-card {
  background: #fff;
  border: 1px solid #d0dce8;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
}
.team-card img {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 10px;
  margin: 0 auto 0.8rem;
}
.team-card h4 {
  font-size: 15px;
  color: #1a3a5c;
  margin-bottom: 0.2rem;
}
.team-card .team-role {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #e85d26;
  margin-bottom: 0.5rem;
}
.team-card p {
  font-size: 13px;
  color: #5a6a7e;
  line-height: 1.5;
}
.team-card a {
  color: inherit;
}

.why-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e85d26;
  margin-top: 6px;
  flex-shrink: 0;
}

.contact {
  background: #0f2239;
  padding: 5rem 2.5rem;
  text-align: center;
}
.contact .section-tag {
  color: #ffb88a;
}
.contact h2 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.contact > p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

.contact-info {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.ci strong {
  display: block;
  color: #ffb88a;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.ci span,
.ci a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}
.ci a:hover {
  color: #fff;
}

.contact-form {
  display: flex;
  gap: 1rem;
  max-width: 540px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.contact-form input {
  flex: 1;
  min-width: 160px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
}
.contact-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.contact-form input:focus {
  border-color: rgba(255, 255, 255, 0.5);
}
.contact-form textarea {
  flex-basis: 100%;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  outline: none;
  resize: vertical;
  min-height: 110px;
  transition: border-color 0.2s ease;
}
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.contact-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.5);
}
.contact-form .hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-form button {
  background: #e85d26;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.contact-form button:hover {
  opacity: 0.88;
}
.contact-form button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.contact-map {
  display: block;
  max-width: 720px;
  margin: 2rem auto 0;
  background: #fff;
  padding: 0.45rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.contact-map img {
  width: 100%;
  height: auto;
  display: block;
}

.contact-subhead {
  margin-top: 2rem;
  font-size: 1.1rem;
  color: #fff;
}

footer {
  background: #060f1c;
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
footer p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-burger {
    display: block;
  }

  .lang-switch {
    margin-left: auto;
    margin-right: 0.5rem;
  }

  .about {
    flex-direction: column;
    gap: 2rem;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 2rem;
  }

  .contact-info {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

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

  .team-cards {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=style.css.map */
