:root {
  --bg: #f6f8fb;
  --bg-soft: #eef3f8;
  --bg-tint: #eaf1f7;
  --panel: rgba(255, 255, 255, 0.96);
  --panel-strong: #ffffff;
  --text: #13263d;
  --muted: #53667c;
  --line: rgba(19, 38, 61, 0.10);
  --primary: #0f86b8;
  --primary-2: #f08700;
  --accent: #19b5e8;
  --white: #ffffff;
  --success: #1f8f61;
  --danger: #c94f4f;
  --shadow: 0 18px 40px rgba(15, 32, 56, 0.07);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8fafc 0%, #f4f7fb 100%);
  line-height: 1.65;
}

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

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

p, li {
  color: var(--muted);
}

h1, h2, h3 {
  margin: 0 0 1rem;
  line-height: 1.15;
  color: var(--text);
}

h1 {
  font-size: clamp(1.9rem, 2.7vw, 2.7rem);
  max-width: 19ch;
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(1.65rem, 2.25vw, 2.25rem);
}

h3 {
  font-size: 1.25rem;
}

ul {
  margin: 0;
  padding-left: 1.1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.
.section-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.34), transparent 26%, transparent 74%, rgba(255,255,255,0.24));
}



.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--white);
  color: #000;
  padding: 0.75rem 1rem;
  z-index: 1000;
  border-radius: 0.75rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(15, 36, 63, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 82px;
}

.brand img {
  width: clamp(190px, 26vw, 330px);
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.primary-nav a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  font-size: 0.97rem;
  opacity: 0.92;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 5px auto;
}

.hero {
  position: relative;
  padding-top: 5rem;
  color: var(--white);
  background: linear-gradient(180deg, #0f2442 0%, #15314f 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}


.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255,255,255,0.08);
  pointer-events: none;
}


.hero-grid,
.split-grid,
.local-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 1.8rem;
}

.hero-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}

.hero-copy .lead {
  max-width: 62ch;
  font-size: 1.03rem;
  color: #d7e5fb;
}

.hero-copy,
.hero-card,
.section-heading,
.local-grid > div:first-child,
.contact-grid > div:first-child {
  text-wrap: pretty;
}

.eyebrow {
  margin-bottom: 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(25, 181, 232, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.10);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.map-consent .button-secondary {
  background: var(--panel-strong);
  color: var(--text);
  border: 1px solid rgba(19, 38, 61, 0.14);
  box-shadow: 0 10px 24px rgba(15, 32, 56, 0.08);
}

.button-block {
  width: 100%;
}

.hero-points {
  display: grid;
  gap: 0.65rem;
  list-style: none;
  padding: 0;
}

.hero-points li {
  position: relative;
  padding-left: 1.35rem;
}

.hero-points li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary-2));
}

.hero-card,
.card,
.service-card,
.cta-panel,
.sectors-grid article,
.contact-cards article,
.legal-card,
.steps article,
.faq-list details {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.glass-card {
  padding: 2rem;
  background: linear-gradient(180deg, rgba(19, 41, 69, 0.98), rgba(13, 30, 52, 0.98));
  border-color: rgba(255, 255, 255, 0.08);
}

.card-kicker {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.mini-grid article {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.mini-grid strong,
.contact-cards strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.trust-bar {
  border-top: 1px solid rgba(19, 38, 61, 0.05);
  border-bottom: 1px solid rgba(19, 38, 61, 0.05);
  background: #f2f6fa;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem 0;
}

.trust-grid p {
  margin: 0;
}

.trust-grid strong {
  color: var(--text);
}

.section-heading {
  max-width: 70ch;
  margin-bottom: 2.2rem;
}

.section-heading > p:last-child,
.service-card p,
.sectors-grid article p,
.cta-panel p,
.faq-list details p,
.contact-form .form-note,
.contact-cards article span,
.contact-cards article a,
.legal-card p,
.legal-card li {
  max-width: 62ch;
}

.section-heading.narrow {
  max-width: 60ch;
  margin-inline: auto;
  text-align: center;
}

.section-heading.left {
  margin-inline: 0;
  text-align: left;
}

.cards-grid,
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.service-card,
.sectors-grid article,
.contact-cards article,
.legal-card,
.steps article {
  padding: 1.65rem;
}

.service-card .icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: rgba(25, 181, 232, 0.12);
  font-size: 1.4rem;
}

.accent-card {
  background: linear-gradient(135deg, rgba(15, 134, 184, 0.08), rgba(240, 135, 0, 0.08));
}

.split-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.steps {
  display: grid;
  gap: 1rem;
}

.steps article {
  position: relative;
  padding-left: 5rem;
}

.steps span {
  position: absolute;
  left: 1.4rem;
  top: 1.4rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent);
}

.local-grid {
  grid-template-columns: 1.1fr 0.75fr;
  align-items: center;
}

.cta-panel {
  padding: 2rem;
  background: rgba(255,255,255,0.94);
}

.check-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.check-list li {
  position: relative;
  padding-left: 1.35rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-list details {
  padding: 1.2rem 1.4rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
}

.faq-list details p {
  margin: 0.9rem 0 0;
}

.contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.6rem 0 1.4rem;
}

.contact-cards-stacked {
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.contact-cards-stacked article {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  align-items: start;
  gap: 0.95rem 1.1rem;
  padding: 1.15rem 1.35rem;
}

.contact-cards-stacked article strong {
  margin: 0;
  padding-top: 0.05rem;
}

.contact-cards-stacked article span,
.contact-cards-stacked article a {
  max-width: none;
  margin: 0;
}

.contact-cards-stacked .contact-email {
  word-break: normal;
  overflow-wrap: anywhere;
}

.contact-cards article a,
.site-footer a,
.legal-card a,
.consent a {
  color: var(--accent);
}

.contact-cards article a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.map-consent,
.contact-form {
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: var(--panel-strong);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.map-container {
  margin-top: 1rem;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
}

.map-container iframe {
  width: 100%;
  height: 340px;
  border: 0;
}

.form-row {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

label {
  color: var(--text);
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(21, 37, 59, 0.12);
  border-radius: 16px;
  background: #f9fbfe;
  color: var(--text);
  padding: 0.9rem 1rem;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(25, 181, 232, 0.4);
  border-color: rgba(25, 181, 232, 0.7);
}

textarea {
  resize: vertical;
  min-height: 170px;
}

.consent {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 1rem 0 1.2rem;
  font-weight: 400;
  line-height: 1.55;
}

.consent-text {
  display: inline;
}

.consent a {
  display: inline;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.consent input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 0.3rem;
}

.form-note,
.form-status {
  font-size: 0.94rem;
}

.form-status {
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
}

.form-status.success {
  background: rgba(46, 182, 125, 0.10);
  color: #166744;
  border: 1px solid rgba(46, 182, 125, 0.22);
}

.form-status.error {
  background: rgba(255, 122, 122, 0.10);
  color: #8d2f2f;
  border: 1px solid rgba(255, 122, 122, 0.22);
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.site-footer {
  padding: 2.4rem 0 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b172a;
  color: #d7e5fb;
}

.footer-grid {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  align-items: start;
}

.footer-logo {
  max-width: 250px;
  margin-bottom: 1rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.footer-bottom {
  padding-top: 1.25rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-layout {
  display: grid;
  gap: 1.2rem;
}

.legal-header {
  position: static;
}

.simple-footer {
  margin-top: 2rem;
}


.hero-card h2 {
  font-size: clamp(1.5rem, 2.1vw, 2rem);
  max-width: 16ch;
}

.cards-grid,
.sectors-grid,
.contact-cards,
.trust-grid,
.footer-grid,
.contact-grid,
.hero-grid,
.split-grid,
.local-grid {
  align-items: start;
}

.service-card,
.sectors-grid article,
.contact-cards article,
.legal-card,
.steps article,
.hero-card,
.cta-panel,
.map-consent,
.contact-form,
.faq-list details {
  overflow: hidden;
}

.contact-cards article {
  min-width: 0;
}

.contact-form {
  max-width: 100%;
}

.contact-form .button,
.map-consent .button {
  align-self: start;
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 1.4rem), var(--container));
  }

  .brand img {
    width: min(250px, 68vw);
  }

  .hero-copy .lead,
  .section-heading,
  .section-heading > p:last-child,
  .service-card p,
  .sectors-grid article p,
  .faq-list details p,
  .contact-form .form-note,
  .legal-card p,
  .legal-card li {
    max-width: none;
  }
}

@media (max-width: 1050px) {
  .hero-grid,
  .split-grid,
  .local-grid,
  .contact-grid,
  .footer-grid,
  .cards-grid,
  .sectors-grid,
  .contact-cards,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 760px;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(10, 23, 43, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 0.6rem 0;
  }

  .hero {
    padding-top: 3.75rem;
  }

  .section {
    padding: 4.2rem 0;
  }

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

@media (max-width: 580px) {
  h1 {
    font-size: 2rem;
    max-width: none;
  }

  h2 {
    font-size: 1.55rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .glass-card,
  .service-card,
  .cta-panel,
  .contact-form,
  .map-consent,
  .legal-card,
  .steps article,
  .faq-list details,
  .contact-cards article,
  .sectors-grid article {
    padding: 1.25rem;
  }

  .contact-cards-stacked article {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }
}

.hero h1,
.hero h2,
.hero h3,
.hero .card-kicker,
.hero .mini-grid strong,
.hero .mini-grid span {
  color: var(--white);
}

.hero p,
.hero li,
.site-footer p,
.site-footer li {
  color: #d7e5fb;
}

.hero .eyebrow,
.site-footer a,
.site-footer strong,
.site-footer h2,
.site-footer h3 {
  color: var(--white);
}

.hero .eyebrow {
  color: var(--accent);
}

.contact-form .button,
.map-consent .button {
  box-shadow: none;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark strong,
.section-dark summary {
  color: #ffffff;
}

.section-dark p,
.section-dark li {
  color: #dbe7f6;
}

.section-dark .cta-panel,
.section-dark .faq-list details,
.section-dark .service-card,
.section-dark .legal-card,
.section-dark .steps article,
.section-dark .contact-form,
.section-dark .map-consent,
.section-dark .contact-cards article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.10);
  box-shadow: 0 18px 40px rgba(8, 18, 34, 0.18);
}

.section-dark .check-list li::before,
.section-dark .hero-points li::before {
  background: linear-gradient(135deg, #74d8ff, #ffb65c);
}


#services .section-heading,
#methode .section-heading,
#local .container > div:first-child,
#contact > .container > div:first-child {
  max-width: 68ch;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.map-consent p {
  max-width: 54ch;
}

@media (max-width: 900px) {
  .hero {
    padding-top: 4.3rem;
  }

  h1 {
    font-size: clamp(1.85rem, 7vw, 2.45rem);
  }

  h2 {
    font-size: clamp(1.5rem, 5.2vw, 2rem);
  }
}
