:root {
  --bg: #f1f4f7;
  --surface: #ffffff;
  --surface-alt: #e7f0fa;
  --primary: #075fc8;
  --primary-dark: #064b9d;
  --text: #172737;
  --muted: #647384;
  --border: rgba(23, 39, 55, 0.1);
  --shadow: 0 18px 42px rgba(16, 44, 83, 0.1);
}

@font-face {
  font-family: "Inter";
  src: url("fonts/inter-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/inter-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/inter-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/inter-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/inter-800.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.form-privacy {
  margin: 0.25rem 0 1rem;
  color: var(--muted);
  font-size: 0.82rem;
}

a {
  color: #464feb;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1560px, calc(100% - 28px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(23, 39, 55, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: clamp(18px, 2.5vw, 40px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand,
.menu a {
  color: inherit;
}

.brand span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.35rem 0;
  border-radius: 0;
  background: transparent;
  color: #142535;
  font-size: clamp(1.05rem, 1.45vw, 1.45rem);
  line-height: 1.1;
  white-space: nowrap;
  box-shadow: none;
}

.nav > .brand {
  flex: 0 1 auto;
  min-width: 0;
}

.brand-mark {
  display: none;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: clamp(14px, 1.8vw, 30px);
  color: #1c2a38;
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  font-weight: 500;
}

.menu a {
  position: relative;
  padding: 0.55rem 0;
  transition: color 0.2s ease;
}

.menu a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.menu a:hover::after,
.menu a:focus-visible::after {
  transform: scaleX(1);
}

.menu a:hover,
.menu a:focus-visible {
  color: var(--primary);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: #3b91e8;
  color: white;
  box-shadow: 0 10px 22px rgba(59, 145, 232, 0.24);
  border-radius: 6px;
  padding: 0.8rem 1.35rem;
  min-height: 48px;
  font-size: 0.95rem;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #287bcf;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.3);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 86px));
  padding: 0;
  isolation: isolate;
  background-color: #0b4b8e;
  background-image: linear-gradient(90deg, rgba(5, 31, 67, 0.84) 0%, rgba(5, 45, 91, 0.64) 35%, rgba(5, 45, 91, 0.14) 75%, rgba(5, 45, 91, 0.08) 100%);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: block;
  min-height: inherit;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.about-copy h2 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: min(760px, calc(100vh - 86px));
  max-width: 760px;
  padding: clamp(52px, 8vw, 112px) 0 clamp(54px, 7vw, 92px);
}

.hero-copy h1 {
  display: block;
  margin: 0;
  width: 100%;
  color: #3b91e8;
  max-width: 760px;
  font-size: clamp(2.8rem, 5vw, 5.8rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 800;
  text-wrap: balance;
}

.hero .eyebrow {
  margin-bottom: 18px;
  color: #8fd0ff;
}

.hero-copy .lead,
.hero-copy .hero-points {
  color: #3b91e8;
}

.hero-copy h1 span {
  display: block;
  width: 100%;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.lead {
  margin-top: 34px;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.65;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding: 0;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 500;
}

.hero-points li {
  position: relative;
  padding-left: 20px;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9fd1ff;
}

.trust-section {
  padding: clamp(48px, 6vw, 78px) 0;
  background: #ffffff;
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 7vw, 110px);
  align-items: center;
}

.trust-grid h2,
.closing-cta h2 {
  max-width: 620px;
  margin: 0;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding: 16px 16px 16px 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #f8fbff;
  color: var(--text);
  font-weight: 600;
}

.trust-list li::before {
  position: absolute;
  top: 16px;
  left: 16px;
  content: "✓";
  color: var(--primary);
  font-weight: 800;
}

.hero-card {
  background: linear-gradient(180deg, #ffffff, #ecf3ff);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.card-badge {
  display: inline-block;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(13, 91, 214, 0.12);
  color: var(--primary);
  font-size: 0.79rem;
  font-weight: 700;
}

.hero-card h2 {
  margin: 18px 0 20px;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  letter-spacing: -0.04em;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.stats div {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 16px;
}

.stats strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1.2;
}

.stats span {
  color: var(--muted);
  font-size: 0.88rem;
}

.mini-panel {
  background: linear-gradient(135deg, var(--primary), #63a1ff);
  color: white;
  border-radius: 18px;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mini-panel span {
  font-size: 0.8rem;
  opacity: 0.85;
}

.features,
.references,
.about {
  padding: clamp(68px, 8vw, 112px) 0;
}

.references {
  background: #e7edf2;
}

.about {
  background: #f8fafb;
}

.closing-cta {
  padding: clamp(54px, 7vw, 92px) 0;
  background: #e7f0fa;
}

.closing-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.closing-cta .eyebrow {
  margin-bottom: 12px;
}

.closing-cta p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.closing-cta-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 20px;
  min-width: min(100%, 360px);
}

.closing-phone,
.closing-email {
  color: var(--primary);
  font-weight: 700;
}

.imprint {
  padding: clamp(68px, 8vw, 112px) 0;
  background: #eef2f5;
  scroll-margin-top: 94px;
}

.imprint-content {
  width: min(100% - 56px, 1120px);
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 64px);
  border: 1px solid rgba(23, 39, 55, 0.08);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(15, 39, 71, 0.08);
}

.imprint h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.imprint h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.privacy-document h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.privacy-document .imprint-sections h2 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  letter-spacing: -0.02em;
}

.privacy-notice {
  margin: 0 0 18px;
  padding: 16px 18px;
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  background: #eef5fd;
  color: var(--text);
  font-size: 0.96rem;
}

.privacy-sections {
  gap: 14px;
}

.privacy-sections article {
  padding: 26px 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fbfcfd;
}

.privacy-sections article:first-child {
  border-color: rgba(7, 95, 200, 0.18);
  background: #f5f9fe;
}

.privacy-sections h3 {
  margin: 22px 0 8px;
  font-size: 1.08rem;
}

.privacy-sections p {
  max-width: none;
}

.privacy-document .imprint-sections ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 1.25rem;
  color: var(--muted);
  line-height: 1.7;
}

.privacy-document .imprint-sections li {
  padding-left: 4px;
}

.privacy-table-wrap {
  margin-top: 18px;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.privacy-table-wrap table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: #ffffff;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.privacy-table-wrap th,
.privacy-table-wrap td {
  padding: 12px 14px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.privacy-table-wrap th:last-child,
.privacy-table-wrap td:last-child {
  border-right: 0;
}

.privacy-table-wrap tr:last-child td {
  border-bottom: 0;
}

.privacy-table-wrap th {
  background: #f5f7f9;
  color: var(--text);
  font-weight: 700;
}

tr th,
tr td {
  border: 1px solid #e6e6e6;
}

tr th {
  background-color: #f5f5f5;
}

.request-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 28px;
  margin-top: 34px;
}

.request-form,
.request-contact {
  display: grid;
  gap: 10px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #ffffff;
}

.request-form label {
  margin-top: 8px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
}

.request-form input,
.request-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(23, 39, 55, 0.18);
  border-radius: 6px;
  background: #fbfcfd;
  color: var(--text);
  font: inherit;
}

.request-form input:focus,
.request-form textarea:focus {
  outline: 2px solid rgba(7, 95, 200, 0.22);
  border-color: var(--primary);
}

.request-form .button {
  margin-top: 12px;
  cursor: pointer;
}

.request-contact {
  align-content: start;
  background: #eaf2fb;
}

.request-contact h2 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 1.35rem;
}

.request-contact p {
  margin: 0;
  color: var(--muted);
}

.request-contact a {
  color: var(--primary);
}

.imprint-intro {
  margin: 14px 0 38px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 1.08rem;
}

.imprint-details {
  display: grid;
  margin: 0 0 46px;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
}

.imprint-details > div {
  display: grid;
  grid-template-columns: minmax(210px, 0.7fr) minmax(0, 1.3fr);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.imprint-details dt,
.imprint-details dd {
  margin: 0;
  padding: 16px 18px;
}

.imprint-details dt {
  background: #f5f7f9;
  color: var(--text);
  font-weight: 700;
}

.imprint-details dd {
  color: var(--muted);
}

.imprint-details a,
.imprint-sections a {
  color: var(--primary);
}

.imprint-details a:hover,
.imprint-details a:focus-visible,
.imprint-sections a:hover,
.imprint-sections a:focus-visible {
  color: var(--primary-dark);
}

.imprint-sections {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.imprint-sections article {
  padding: 24px 0;
  border-top: 1px solid var(--border);
}

.imprint-sections h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 1.05rem;
}

.imprint-sections p {
  margin: 0;
  max-width: 980px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 34px;
}

.section-heading h2,
.about-copy h2 {
  max-width: 820px;
  font-size: clamp(2rem, 4vw, 3.65rem);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.info-card,
.reference-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 12px;
  padding: 30px 26px;
  box-shadow: 0 12px 24px rgba(15, 39, 71, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover,
.reference-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.reference-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 0.45rem 0.7rem;
  border-radius: 4px;
  background: rgba(13, 91, 214, 0.1);
  color: var(--primary);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reference-card h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
}

.reference-card p {
  margin: 0;
  color: var(--muted);
}

.reference-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.reference-link:focus-visible {
  outline: 3px solid rgba(7, 95, 200, 0.35);
  outline-offset: 4px;
}

.reference-more {
  display: block;
  margin-top: 22px;
  color: var(--primary);
  font-weight: 700;
}

.project-hero {
  padding: 74px 0 86px;
  background: linear-gradient(135deg, #0d1b2a, #1b263b);
  color: #ffffff;
}

.project-hero-seo {
  padding-top: 92px;
}

.project-hero-seo .project-hero-grid {
  grid-template-columns: minmax(0, 820px);
}

.project-hero-seo .button-secondary {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--primary-dark);
  box-shadow: 0 8px 18px rgba(6, 75, 157, 0.16);
}

.project-hero-seo .button-secondary:hover,
.project-hero-seo .button-secondary:focus-visible {
  background: var(--surface-alt);
  color: var(--primary-dark);
  box-shadow: 0 10px 22px rgba(6, 75, 157, 0.22);
}

.project-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 56px;
  align-items: center;
}

.project-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.project-lead {
  max-width: 620px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.15rem;
}

.project-hero img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.project-hero-media {
  position: relative;
}

.project-media-label {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(7, 34, 68, 0.86);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
}

.project-proof {
  padding: 22px 0;
  background: var(--primary);
  color: #ffffff;
}

.project-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.project-proof-grid div {
  display: grid;
  gap: 2px;
  padding: 6px 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.project-proof-grid strong {
  font-size: 1.1rem;
}

.project-proof-grid span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
}

.project-content,
.project-gallery {
  padding: 88px 0;
}

.section-intro {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

.project-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.project-columns article,
.benefit-card,
.faq-list details {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.project-columns article:hover,
.benefit-card:hover {
  transform: translateY(-6px);
}

.project-number {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.project-columns h3 {
  margin: 0 0 10px;
}

.project-columns p,
.project-note {
  margin: 0;
  color: var(--muted);
}

.project-gallery {
  background: var(--surface-alt);
}

.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
}

.project-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 12px 24px rgba(15, 39, 71, 0.08);
}

.project-gallery img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  overflow: hidden;
}

.project-gallery figcaption {
  padding: 15px 18px;
  color: var(--muted);
}

.project-note {
  margin-top: 18px;
  font-size: 0.9rem;
}

.project-process {
  padding: 88px 0;
  background: #f8fafc;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid var(--border);
}

.process-list li > span {
  color: var(--primary);
  font-size: 1.6rem;
  font-weight: 800;
}

.process-list h3 {
  margin: 0 0 6px;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.project-faq {
  padding: 88px 0;
}

.faq-list {
  max-width: 880px;
}

.faq-list details {
  margin-bottom: 14px;
}

.faq-list details:last-child {
  margin-bottom: 0;
}

.faq-list summary {
  cursor: pointer;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 700;
}

.faq-list p {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--muted);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 10px;
  margin-bottom: 18px;
  background: var(--surface-alt);
  color: var(--primary);
  font-weight: 800;
}

.info-card h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
}

.info-card p,
.about-copy p,
.footer p {
  margin: 0;
  color: var(--muted);
}

.features .eyebrow,
.references .eyebrow,
.about .eyebrow {
  margin-bottom: 12px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(34px, 7vw, 110px);
  align-items: center;
}

.about-copy {
  display: grid;
  gap: 18px;
}

.about-copy strong {
  color: var(--text);
  font-weight: 700;
}

.about-panel {
  background: linear-gradient(180deg, #ffffff, #edf4ff);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  display: grid;
  gap: 16px;
}

.panel-item {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.panel-item strong {
  font-size: 1rem;
}

.panel-item span {
  color: var(--muted);
}

.footer {
  border-top: 1px solid var(--border);
  padding: 38px 0 56px;
  background: #172737;
}

.footer .brand span,
.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.86);
}

.footer a:hover,
.footer a:focus-visible {
  color: #ffffff;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
  gap: 20px;
}

.footer-inner > div:first-child {
  flex: 1 1 320px;
}

.contact-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  flex: 1 1 720px;
  width: 100%;
  gap: 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.contact-panel > p {
  grid-column: 1 / -1;
  justify-self: stretch;
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
}

.contact-panel > p a {
  display: inline-block;
}

.contact-panel .panel-item {
  min-height: 116px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.contact-panel .panel-item strong {
  color: #ffffff;
}

.contact-panel .panel-item span,
.contact-panel .panel-item a {
  color: rgba(255, 255, 255, 0.76);
}

.contact-panel .panel-item a:hover,
.contact-panel .panel-item a:focus-visible,
.contact-panel > p a:hover,
.contact-panel > p a:focus-visible {
  color: #ffffff;
}

.mobile-menu-toggle {
  display: none;
}

@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .card-grid,
  .reference-grid,
  .trust-grid,
  .project-hero-grid,
  .project-columns,
  .project-proof-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .menu {
    display: none;
  }

  .nav {
    justify-content: space-between;
  }

  .nav .button-primary {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: var(--text);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu {
    border-top: 1px solid var(--border);
    background: #fff;
    box-shadow: 0 16px 28px rgba(21, 40, 58, 0.12);
  }

  .mobile-menu.is-open {
    display: block;
  }

  .mobile-menu-inner {
    display: flex;
    flex-direction: column;
    padding: 8px 0 16px;
  }

  .mobile-menu-inner a:not(.mobile-menu-cta) {
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-weight: 700;
  }

  .mobile-menu-cta {
    width: 100%;
    margin-top: 14px;
  }

  .mobile-menu-toggle:focus-visible,
  .mobile-menu-inner a:focus-visible {
    outline: 3px solid rgba(22, 114, 184, 0.3);
    outline-offset: 3px;
  }

  @media (prefers-reduced-motion: reduce) {
    .mobile-menu-toggle span {
      transition: none;
    }
  }
}

@media (max-width: 1180px) and (min-width: 901px) {
  .brand span {
    font-size: 1rem;
  }

  .menu {
    gap: 12px;
    font-size: 0.82rem;
  }

  .nav .button-primary {
    padding-inline: 1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 36px, 520px);
  }

  .nav {
    min-height: 72px;
  }

  .brand span {
    white-space: normal;
    font-size: 1rem;
  }

  .hero-copy h1 {
    font-size: clamp(3.25rem, 16vw, 5.5rem);
  }

  .project-hero,
  .project-content,
  .project-gallery {
    padding: 56px 0;
  }

  .project-gallery-grid {
    grid-template-columns: 1fr;
  }

  .project-gallery img {
    height: 260px;
  }

  .project-proof-grid div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    padding-inline: 0;
    padding-top: 14px;
  }

  .hero {
    min-height: 720px;
    background-position: 64% center;
    background-image: linear-gradient(180deg, rgba(5, 31, 67, 0.82) 0%, rgba(5, 45, 91, 0.62) 52%, rgba(5, 31, 67, 0.86) 100%);
  }

  .hero-copy {
    width: 100%;
    min-height: 720px;
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .hero-copy h1 span {
    line-height: 0.9;
  }

  .features,
  .references,
  .about {
    padding: 64px 0;
  }

  .imprint {
    padding: 64px 0;
  }

  .imprint-content {
    width: min(100% - 32px, 520px);
    padding: 26px 18px;
  }

  .privacy-document h1 {
    font-size: clamp(1.35rem, 7vw, 2.4rem);
    letter-spacing: -0.06em;
  }

  .privacy-sections article {
    padding: 22px 16px;
  }

  .request-layout {
    grid-template-columns: 1fr;
  }

  .imprint-details > div {
    grid-template-columns: 1fr;
  }

  .imprint-details dt {
    padding-bottom: 8px;
  }

  .imprint-details dd {
    padding-top: 8px;
  }

  .hero-actions,
  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .closing-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .closing-cta-actions {
    justify-content: flex-start;
  }

  .contact-panel .panel-item {
    min-height: auto;
  }

  .button {
    width: 100%;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .trust-list {
    grid-template-columns: 1fr;
  }
}

/* Homepage visual system */
:root {
  --bg: #f5f7f9;
  --surface-alt: #edf3f7;
  --primary: #1672b8;
  --primary-dark: #0b4f86;
  --text: #15283a;
  --muted: #5f7080;
  --border: rgba(21, 40, 58, 0.12);
  --shadow: 0 20px 48px rgba(21, 40, 58, 0.12);
}

body {
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  width: min(1200px, calc(100% - 48px));
}

.topbar {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(21, 40, 58, 0.1);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 78px;
  gap: 28px;
}

.brand span {
  color: var(--text);
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.menu {
  gap: clamp(16px, 2.2vw, 30px);
  color: #314657;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.menu a::after {
  background: var(--primary);
}

.menu a:hover,
.menu a:focus-visible {
  color: var(--primary-dark);
}

.button {
  min-height: 50px;
  border-radius: 8px;
  font-size: 0.9rem;
}

.button-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(22, 114, 184, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--primary-dark);
}

.hero {
  min-height: min(720px, calc(100vh - 78px));
  background-color: #071d34;
  background-image: none;
}

.hero::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(4, 27, 52, 0.72) 0%,
    rgba(4, 27, 52, 0.68) 38%,
    rgba(4, 27, 52, 0.24) 62%,
    rgba(4, 27, 52, 0.02) 100%
  );
}

.hero-image {
  object-position: center top;
  filter: saturate(0.78) contrast(0.92);
}

.hero-copy {
  min-height: min(720px, calc(100vh - 78px));
  max-width: 690px;
  padding: clamp(60px, 8vw, 110px) 0;
}

.hero-copy h1 {
  max-width: 650px;
  padding-left: 22px;
  border-left: 5px solid #1672b8;
  color: #fff;
  font-size: clamp(3rem, 5.4vw, 5.35rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  font-weight: 800;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.2);
}

.hero-copy h1 span {
  width: auto;
}

.hero-copy h1 .hero-location {
  color: #8fd0ff;
  font-size: 0.82em;
  letter-spacing: -0.045em;
}

.hero-copy .lead {
  max-width: 590px;
  margin-top: 28px;
  color: #3b91e8;
  font-size: clamp(0.98rem, 1.15vw, 1.1rem);
  line-height: 1.72;
  letter-spacing: 0.005em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.22);
}

.hero-actions {
  margin-top: 32px;
}

.hero-actions .button-secondary {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(22, 114, 184, 0.24);
}

.hero-actions .button-secondary:hover,
.hero-actions .button-secondary:focus-visible {
  border-color: var(--primary-dark);
  background: var(--primary-dark);
}

.hero-points {
  margin-top: 38px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  letter-spacing: 0.01em;
}

.hero-points li::before {
  background: #8fd0ff;
}

.trust-section {
  padding: clamp(58px, 7vw, 92px) 0;
  background: #fff;
}

.trust-grid {
  gap: clamp(34px, 7vw, 100px);
}

.trust-grid h2,
.closing-cta h2 {
  color: var(--text);
}

.eyebrow {
  color: var(--primary-dark);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
}

.trust-list {
  gap: 12px;
}

.trust-list li {
  border-radius: 8px;
  background: #f8fafb;
  color: var(--text);
  font-size: 0.92rem;
}

.trust-list li::before {
  color: var(--primary);
}

.features,
.references,
.about {
  padding: clamp(72px, 9vw, 116px) 0;
}

.features {
  background: #f5f7f9;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 38px;
}

.section-heading h2,
.about-copy h2 {
  color: var(--text);
  font-size: clamp(2rem, 3.7vw, 3.35rem);
  line-height: 1.1;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.card-grid,
.reference-grid {
  gap: 20px;
}

.info-card,
.reference-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(21, 40, 58, 0.05);
}

.info-card:hover,
.reference-card:hover {
  box-shadow: var(--shadow);
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  margin-bottom: 24px;
  background: #e2f1fc;
  color: var(--primary-dark);
}

.info-card h3,
.reference-card h3 {
  color: var(--text);
  letter-spacing: -0.025em;
  font-weight: 700;
}

.info-card p,
.reference-card p,
.about-copy p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.72;
}

.references {
  background: #eaf0f4;
}

.reference-tag {
  border-radius: 4px;
  background: #e2f1fc;
  color: var(--primary-dark);
}

.reference-more {
  color: var(--primary-dark);
}

.about {
  background: #fff;
}

.about-copy {
  max-width: 820px;
}

.about-copy p {
  max-width: 760px;
}

.about-person-link {
  color: var(--primary-dark);
}

.closing-cta {
  padding: clamp(58px, 7vw, 88px) 0;
  background: #e6edf2;
}

.closing-cta p:not(.eyebrow) {
  color: var(--muted);
}

.closing-phone,
.closing-email {
  color: var(--primary-dark);
}

.footer {
  padding: 48px 0 58px;
  background: #11283d;
  border-top: 0;
}

.footer .brand span {
  color: #fff;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.72);
}

.contact-panel .panel-item {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}

.mobile-menu {
  display: none;
}

@media (max-width: 900px) {
  .hero {
    min-height: 680px;
  }

  .hero::before {
    background: rgba(4, 27, 52, 0.9);
  }

  .hero-copy {
    min-height: 680px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 32px, 520px);
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 14vw, 4.7rem);
    padding-left: 16px;
    border-left-width: 4px;
  }

  .hero-copy h1 .hero-location {
    font-size: 0.84em;
  }

  .hero-actions .button {
    width: 100%;
  }
}

.cookie-banner {
  position: fixed;
  z-index: 1000;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 16px;
  animation: cookie-banner-in 0.3s ease;
}

@keyframes cookie-banner-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  padding: 22px 26px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(16, 44, 83, 0.18);
}

.cookie-banner-text {
  flex: 1 1 420px;
  margin: 0;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.6;
}

.cookie-banner-text a {
  color: var(--primary-dark);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  gap: 12px;
}

.cookie-banner-btn {
  min-height: 46px;
  padding: 0.65rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.cookie-banner-btn:hover,
.cookie-banner-btn:focus-visible {
  transform: translateY(-1px);
}

.cookie-banner-btn-decline {
  border-color: var(--border);
  background: #fff;
  color: var(--text);
}

.cookie-banner-btn-decline:hover,
.cookie-banner-btn-decline:focus-visible {
  border-color: var(--muted);
}

.cookie-banner-btn-accept {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(22, 114, 184, 0.24);
}

.cookie-banner-btn-accept:hover,
.cookie-banner-btn-accept:focus-visible {
  background: var(--primary-dark);
}

.cookie-settings-link {
  padding: 0;
  border: none;
  background: none;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

@media (max-width: 640px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
  }

  .cookie-banner-actions {
    justify-content: stretch;
  }

  .cookie-banner-btn {
    flex: 1 1 auto;
  }
}

/* Mobile layout refinements */
@media (max-width: 900px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: min(100% - 32px, 620px);
  }

  .nav {
    min-height: 68px;
    gap: 12px;
  }

  .nav > .brand {
    min-width: 0;
  }

  .brand span {
    max-width: 70vw;
    overflow: hidden;
    font-size: 0.98rem;
    text-overflow: ellipsis;
  }

  .hero,
  .hero-copy {
    min-height: 640px;
  }

  .hero-copy {
    justify-content: flex-end;
    padding: 52px 0 48px;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 10.5vw, 4.6rem);
  }

  .hero-copy .lead {
    max-width: 100%;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.96);
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-copy .hero-points {
    color: rgba(255, 255, 255, 0.9);
  }

  .hero-actions,
  .closing-cta-actions {
    width: 100%;
  }

  .hero-actions .button,
  .closing-cta-actions .button {
    width: 100%;
  }

  .hero-points {
    gap: 8px;
    margin-top: 24px;
    font-size: 0.84rem;
  }

  .trust-section,
  .features,
  .references,
  .about,
  .closing-cta {
    padding: 56px 0;
  }

  .trust-grid,
  .about-grid,
  .card-grid,
  .reference-grid,
  .footer-inner {
    gap: 28px;
  }

  .trust-grid h2,
  .closing-cta h2,
  .section-heading h2,
  .about-copy h2 {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
    line-height: 1.12;
  }

  .trust-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .trust-list li {
    padding: 14px 14px 14px 40px;
    font-size: 0.9rem;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .info-card,
  .reference-card {
    padding: 24px 20px;
  }

  .info-card p,
  .reference-card p,
  .about-copy p {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .closing-cta-inner {
    align-items: stretch;
    gap: 24px;
  }

  .closing-cta p:not(.eyebrow) {
    font-size: 0.98rem;
  }

  .closing-cta-actions {
    align-items: stretch;
    justify-content: flex-start;
    gap: 12px;
  }

  .closing-phone,
  .closing-email {
    display: block;
    padding: 4px 0;
  }

  .footer {
    padding: 38px 0 44px;
  }

  .footer-inner {
    display: flex;
    flex-direction: column;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-panel > p {
    text-align: left;
    line-height: 1.8;
  }

  .contact-panel .panel-item {
    min-height: auto;
    padding: 15px;
  }

  .request-form input,
  .request-form textarea,
  .request-form .button {
    width: 100%;
  }

  .privacy-table-wrap {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .privacy-table-wrap table {
    min-width: 620px;
  }

  .project-hero h1 {
    font-size: clamp(2.3rem, 10vw, 3.8rem);
    line-height: 1.08;
  }

  .project-lead {
    font-size: 1rem;
    line-height: 1.65;
  }

  .project-hero,
  .project-content,
  .project-gallery {
    padding: 52px 0;
  }

  .project-gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .project-gallery img {
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, 620px);
  }

  .brand span {
    font-size: 0.9rem;
  }

  .hero,
  .hero-copy {
    min-height: 620px;
  }

  .hero-copy {
    padding-top: 42px;
    padding-bottom: 38px;
  }

  .hero-copy h1 {
    padding-left: 13px;
    border-left-width: 3px;
    font-size: clamp(2.2rem, 10.5vw, 3.7rem);
  }

  .hero-copy h1 span {
    line-height: 0.98;
  }

  .hero-copy .lead {
    font-size: 0.94rem;
  }

  .hero-points {
    display: grid;
    gap: 7px;
  }

  .eyebrow {
    font-size: 0.7rem;
  }

  .cookie-banner {
    padding: 8px;
  }

  .cookie-banner-inner {
    padding: 16px;
  }

  .cookie-banner-actions {
    flex-direction: column;
  }

  .cookie-banner-btn {
    width: 100%;
  }
}
