:root {
  --navy: #061829;
  --cyan: #00c8d7;
  --cyan-soft: #e7fbfd;
  --text: #17212b;
  --muted: #667085;
  --white: #c9e0f5;
  --light: #f7fbfc;
  --border: #dbe3ea;
  --shadow: 0 18px 45px rgba(6, 24, 41, 0.10);
  --radius: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1280px, 96%);
  margin: auto;
}

header {
  background-color: var(--navy);
  background-image: url("linien.png");
  background-repeat: no-repeat;

  background-size: cover;
  background-position: center;

  border-bottom: 1px solid #00c8d7;

  position: sticky;
  top: 0;
  z-index: 100;
}

header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-radial-gradient(
      ellipse at 20% 50%,
      rgba(0, 200, 215, 0.20) 0px,
      rgba(0, 200, 215, 0.20) 1px,
      transparent 2px,
      transparent 18px
    );
  opacity: 0.35;
  pointer-events: none;
}

.nav {
  position: relative;
  z-index: 2;
  min-height: 86px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #00c8d7;
  font-weight: 800;
  flex-shrink: 0;
}

.logo small {
  display: block;
  color: var(--cyan);
  font-size: 11px;
  margin-top: -3px;
  letter-spacing: 0.03em;
}

.logo-placeholder {
  width: 56px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(0, 200, 215, 0.45);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.logo img {
  width: 120px;
  max-height: 90px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(64%) sepia(93%) saturate(500%) hue-rotate(140deg) brightness(95%) contrast(95%);
}

.menu {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 13px;
  font-weight: 700;
  color: white;
  flex-wrap: nowrap;
}

.menu a {
  color: white;
  white-space: nowrap;
}

.menu a:hover {
  color: var(--cyan);
}

.btn {
  display: inline-flex;
  padding: 11px 17px;
  border-radius: 999px;
  background: var(--navy);
  color: white !important;
  font-weight: 800;
  transition: 0.2s ease;
}

.btn:hover {
  background: #10263a;
  color: white !important;
}

.btn-cyan {
  background: var(--cyan);
  color: var(--navy) !important;
}

.btn-cyan:hover {
  background: white;
  color: var(--navy) !important;
}

.language-switcher {
  position: relative;
  display: inline-block;
}

.language-current {
  border: 1px solid rgba(0, 200, 215, 0.4);
  background: transparent;
  color: white;
  font-weight: 700;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
}

.language-current:hover {
  border-color: #00c8d7;
  color: #00c8d7;
}

.language-menu {
  display: none;
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-20%);
  min-width: 120px;
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 6px;
  z-index: 999;
}

.language-menu a {
  display: block;
  padding: 9px 10px;
  border-radius: 10px;
  color: white;
}

.language-menu a:hover {
  background: rgba(0, 200, 215, 0.15);
}

.language-switcher:hover .language-menu {
  display: block;
}

.hero {
  padding: 90px 0;
  background: linear-gradient(135deg, #ffffff 0%, #eefbfc 60%, #f7fafc 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.eyebrow {
  color: var(--cyan);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  margin-bottom: 14px;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.08;
  margin-bottom: 22px;
}

.hero p {
  color: var(--muted);
  font-size: 19px;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-visual {
  background: var(--navy);
  border-radius: 16px;
  min-height: 330px;
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 34px;
}

.visual-box {
  height: 100%;
  min-height: 270px;
  border: 1px solid rgba(0, 200, 215, 0.45);
  border-radius: 24px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(0, 200, 215, 0.25), transparent 35%),
    linear-gradient(135deg, #061829, #10263a);
}

.visual-box h2 {
  color: var(--cyan);
  font-size: 52px;
  letter-spacing: 0.12em;
}

section {
  padding: 72px 0;
}

.section-title {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-title h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  font-size: 42px;
  margin-bottom: 12px;
}

.section-title p {
  color: var(--muted);
  font-size: 18px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.blog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  background: white;
  box-shadow: 0 10px 28px rgba(6, 24, 41, 0.05);
}

.tag {
  display: inline-block;
  background: var(--cyan-soft);
  color: var(--navy);
  font-weight: 800;
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 13px;
  margin-bottom: 14px;
}

.blog-card h3 {
  color: var(--navy);
  margin-bottom: 10px;
}

.blog-card p {
  color: var(--muted);
}

.highlight {
  background: var(--navy);
  color: white;
  border-radius: 32px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}

.highlight h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.highlight p {
  color: rgba(255, 255, 255, 0.78);
}

footer {
  background: var(--navy);
  color: white;
  padding: 48px 0 24px;
  background-image: url("linien.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.footer-grid {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-grid > div {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-grid > div:first-child {
  gap: 4px;
}

.company-name,
.company-desc {
  margin: 0;
}

.company-name {
  margin-top: 0px;
}

.company-desc {
  margin-top: 0px;
}

footer p,
footer a {
  color: rgba(255, 255, 255, 0.8);
}

footer p strong {
  text-decoration: underline;
}

.footer-links a {
  display: block;
  margin-bottom: 6px;
  white-space: nowrap;
}

.footer-links + h4 {
  margin-top: 20px;
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--cyan);
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

.page-hero {
  padding: 90px 0;
  background: linear-gradient(135deg, #ffffff 0%, #eefbfc 60%, #f7fafc 100%);
}

.page-hero p {
  color: var(--muted);
  font-size: 19px;
  max-width: 760px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 28px rgba(6, 24, 41, 0.05);
}

.service-card h3 {
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
}

.prices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.price-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 28px rgba(6, 24, 41, 0.05);
}

.price-card h3 {
  color: var(--navy);
  margin-bottom: 14px;
}

.price-card p {
  margin-bottom: 12px;
  color: var(--muted);
}

.price-card strong {
  color: var(--navy);
}

.blog-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.blog-page-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 28px rgba(6, 24, 41, 0.05);
}

.blog-page-card h3 {
  color: var(--navy);
  margin-bottom: 10px;
}

.blog-page-card p {
  color: var(--muted);
  margin-bottom: 16px;
}

.blog-page-card a {
  color: var(--navy);
  font-weight: 800;
}

.blog-page-card a:hover {
  color: var(--cyan);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.value-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 10px 28px rgba(6, 24, 41, 0.05);
}

.value-card h3 {
  color: var(--navy);
  margin-bottom: 10px;
}

.value-card p {
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Abstand Kontakt-Seite */
.contact-grid p {
  margin-bottom: 26px;
}

.contact-grid strong {
  display: block;
  margin-bottom: 6px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-family: inherit;
}

.contact-form button {
  margin-top: 10px;
}

#success-message {
  color: #0e5f4c; /* elegantes, nicht grelles Grün */
  font-weight: 600;
}

/* Kontakt-Blöcke sauber formatieren */
.contact-block {
  margin-bottom: 30px;
}

.contact-block strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
}

.contact-block span {
  display: block;
}

/* Erfolgsmeldung */
#success-message {
  color: #2f6f4f;
  font-weight: 600;
  margin-top: 10px;
}

/* Danke-Seite */
.thanks-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  background: linear-gradient(135deg, #ffffff 0%, #eefbfc 60%, #f7fafc 100%);
}

.thanks-box {
  background: white;
  padding: 50px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 500px;
}

.thanks-box h1 {
  color: var(--navy);
  margin-bottom: 20px;
}

.thanks-text {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
}

.thanks-subtext {
  color: var(--muted);
  margin-bottom: 30px;
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0;
  }

  .menu {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-grid,
  .blog-grid,
  .services-grid,
  .about-grid,
  .values-grid,
  .blog-page-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
  grid-template-columns: 1fr;
}

  .footer-grid {
    flex-direction: column !important;
  }

  .highlight {
    grid-template-columns: 1fr;
    padding: 34px;
  }
}
.calendly-inline-widget {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.archive-link-section {
  padding-top: 0;
}

.archive-link-box {
  text-align: center;
}
.article-content {
  max-width: 850px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.article-content h2 {
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--navy);
}

.article-content p {
  margin-bottom: 18px;
}

.article-content ul {
  margin-bottom: 20px;
  padding-left: 22px;
}

.article-content li {
  margin-bottom: 8px;
}

.article-cta {
  margin-top: 50px;
  padding-bottom: 20px;
}
.article-content {
  max-width: 850px;
}

.article-content p {
  text-align: justify;
  margin-bottom: 18px;
}

.article-content h2 {
  margin-top: 38px;
  margin-bottom: 12px;
  color: var(--navy);
}

.article-cta {
  margin-top: 40px;
}
.article-image {
  width: 100%;
  max-width: 900px;
  display: block;
  margin: 30px auto 50px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}