:root {
  --ink: #122126;
  --petrol: #0c3038;
  --petrol-2: #174854;
  --petrol-3: #236270;
  --copper: #b77b52;
  --copper-2: #d2a07b;
  --sage: #e8f0ec;
  --mist: #f4f7f6;
  --paper: #fffdf9;
  --white: #ffffff;
  --muted: #627076;
  --line: #dbe5e2;
  --shadow: 0 18px 46px rgba(18, 33, 38, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(183, 123, 82, 0.6);
  outline-offset: 3px;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

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

h1,
h2,
h3 {
  color: var(--petrol);
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: normal;
  hyphens: manual;
}

h1 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: clamp(2.05rem, 4vw, 3.55rem);
  font-weight: 760;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.75rem, 3.7vw, 3rem);
  font-weight: 730;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 76px;
  padding: 14px max(20px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 253, 249, 0.96);
  border-bottom: 1px solid rgba(219, 229, 226, 0.95);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--petrol);
  font-weight: 760;
}

.brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--petrol);
  border: 1px solid rgba(183, 123, 82, 0.48);
  border-radius: 50%;
  box-shadow: 0 12px 22px rgba(12, 48, 56, 0.16);
  font-size: 0.85rem;
}

.brand-name {
  font-size: 1.02rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  font-size: 0.91rem;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 10px;
  color: #324348;
  border-radius: 999px;
  font-weight: 650;
  transition: background-color 160ms ease, color 160ms ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"],
.primary-nav a.is-active {
  color: var(--petrol);
  background: rgba(35, 98, 112, 0.1);
}

.primary-nav a[href="kontakt.html"] {
  color: var(--white);
  background: var(--petrol);
  border: 1px solid rgba(183, 123, 82, 0.34);
}

.primary-nav a[href="kontakt.html"]:hover,
.primary-nav a[href="kontakt.html"][aria-current="page"] {
  color: var(--petrol);
  background: var(--copper-2);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--petrol);
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 64px;
  background:
    linear-gradient(90deg, rgba(232, 240, 236, 0.92), rgba(255, 253, 249, 0.98) 48%, rgba(244, 247, 246, 0.96));
}

.hero--compact {
  padding-bottom: 52px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.hero-copy,
.hero-grid > * {
  min-width: 0;
}

.hero-subline {
  max-width: 760px;
  margin-bottom: 24px;
  color: #405057;
  font-size: clamp(1.06rem, 2vw, 1.25rem);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}

.hero-actions,
.cta-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 760;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--petrol);
  box-shadow: 0 14px 28px rgba(12, 48, 56, 0.18);
}

.button-primary:hover {
  background: var(--petrol-2);
}

.button-secondary {
  color: var(--petrol);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(12, 48, 56, 0.18);
}

.button-secondary:hover {
  border-color: rgba(183, 123, 82, 0.65);
  box-shadow: 0 12px 28px rgba(18, 33, 38, 0.09);
}

.button-light {
  color: var(--petrol);
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.58);
}

.hero-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(183, 123, 82, 0.28);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-image-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hero-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(76%, 310px);
  padding: 16px 18px;
  color: var(--white);
  background: rgba(12, 48, 56, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-weight: 720;
}

.hero-note span {
  display: block;
  margin-top: 5px;
  color: #d9e9e6;
  font-size: 0.88rem;
  font-weight: 560;
}

.signal-bar {
  background: var(--petrol);
  color: #edf5f2;
}

.signal-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  padding: 18px 0;
  font-weight: 720;
}

.signal-bar span + span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 26px;
  border-radius: 50%;
  background: var(--copper-2);
  vertical-align: middle;
}

.section {
  padding: 84px 0;
}

.section-soft {
  background: var(--mist);
}

.section-sage {
  background: var(--sage);
}

.section-deep {
  padding: 68px 0;
  background: linear-gradient(135deg, var(--petrol), var(--petrol-2));
}

.section-deep h2,
.section-deep p {
  color: var(--white);
}

.section-deep .section-kicker {
  color: var(--copper-2);
}

.split,
.feature-layout,
.process-list,
.faq-layout,
.contact-layout,
.legal-layout,
.compare-layout,
.decision-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.split h2,
.feature-copy h2,
.faq-intro h2 {
  margin-bottom: 0;
}

.prose {
  max-width: 760px;
}

.prose-large p {
  color: #3a4a50;
  font-size: 1.08rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

.section-head {
  max-width: 790px;
  margin-bottom: 34px;
}

.section-head.narrow {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}

.section-head.narrow .section-kicker {
  justify-content: center;
}

.question-grid,
.card-grid,
.route-grid,
.proof-grid,
.facts-grid,
.two-column-cards,
.timeline,
.check-grid {
  display: grid;
  gap: 20px;
}

.question-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.question-card,
.service-card,
.route-card,
.statement-card,
.fact-card,
.form-card,
.contact-card,
.legal-card,
.note-band,
details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(18, 33, 38, 0.07);
}

.question-card,
.service-card,
.route-card,
.statement-card,
.fact-card {
  padding: 28px;
}

.question-card {
  min-height: 190px;
}

.question-card span,
.card-icon,
.number-list span,
.timeline > li > span {
  display: inline-grid;
  width: 48px;
  height: 42px;
  place-items: center;
  color: var(--petrol);
  background: rgba(183, 123, 82, 0.14);
  border: 1px solid rgba(183, 123, 82, 0.28);
  border-radius: 8px;
  font-weight: 820;
}

.question-card h3,
.service-card h3,
.route-card h3,
.fact-card h3 {
  margin-top: 22px;
}

.route-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.route-card {
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

.route-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--copper);
}

.route-label {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 7px 10px;
  color: var(--petrol);
  background: var(--sage);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--petrol);
  font-weight: 760;
}

.text-link::after {
  content: ">";
  color: var(--copper);
}

.ledger-visual,
.security-visual,
.capital-visual,
.network-visual,
.process-visual,
.contact-visual {
  position: relative;
  width: min(100%, 480px);
  min-height: 370px;
  margin-left: auto;
  padding: 34px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(12, 48, 56, 0.98), rgba(35, 98, 112, 0.96));
  border: 1px solid rgba(183, 123, 82, 0.42);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.ledger-visual::before,
.security-visual::before,
.capital-visual::before,
.network-visual::before,
.process-visual::before,
.contact-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.ledger-lines,
.capital-stack,
.network-points,
.security-stack,
.process-bars,
.contact-sheet {
  position: relative;
  z-index: 1;
}

.ledger-lines {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.ledger-lines span {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 54px;
  padding: 13px;
  color: #edf5f2;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font-weight: 720;
}

.ledger-lines span::after,
.process-bars span::after {
  content: "";
  height: 9px;
  border-radius: 99px;
  background: rgba(210, 160, 123, 0.72);
}

.visual-title {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 780;
}

.capital-stack {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.capital-stack span,
.security-stack span,
.network-points span {
  display: block;
  padding: 16px 18px;
  color: var(--petrol);
  background: var(--white);
  border-left: 5px solid var(--copper);
  border-radius: 8px;
  font-weight: 750;
}

.security-stack,
.network-points {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.process-bars {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.process-bars span {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  color: #edf5f2;
  font-weight: 760;
}

.contact-sheet {
  margin-top: 28px;
  padding: 28px;
  color: var(--petrol);
  background: var(--white);
  border-radius: 8px;
}

.contact-sheet i {
  display: block;
  height: 8px;
  margin-top: 14px;
  background: rgba(12, 48, 56, 0.13);
  border-radius: 99px;
}

.proof-grid,
.facts-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.proof-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 86px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.proof-item strong {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--petrol);
  background: var(--sage);
  border-radius: 8px;
}

.proof-item span {
  color: #334348;
  font-weight: 690;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  min-height: 252px;
}

.two-column-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.statement-card,
.note-band {
  padding: 36px;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 980px;
  margin-inline: auto;
}

.pill-grid span {
  padding: 12px 16px;
  color: var(--petrol);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
}

.number-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.number-list li {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.number-list p {
  margin: 0;
  color: var(--ink);
  font-weight: 680;
}

.timeline {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline li {
  display: flex;
  gap: 18px;
  min-height: 176px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(18, 33, 38, 0.06);
}

.timeline p {
  margin-bottom: 0;
}

.compare-table,
.decision-points,
.faq-list,
.check-grid {
  display: grid;
  gap: 12px;
}

.compare-table div {
  display: grid;
  grid-template-columns: minmax(130px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.compare-table strong {
  color: var(--petrol);
}

.decision-points span,
.check-item {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 16px 18px;
  color: var(--petrol);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 710;
}

.check-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.check-item {
  gap: 12px;
  align-items: flex-start;
}

.check-item span {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border: 5px solid rgba(183, 123, 82, 0.24);
  border-radius: 50%;
  background: var(--copper);
}

.faq-layout {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
}

summary {
  cursor: pointer;
  padding: 20px 54px 20px 22px;
  color: var(--petrol);
  font-weight: 760;
  list-style: none;
  position: relative;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: var(--copper);
  font-size: 1.4rem;
  font-weight: 700;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 22px 22px;
}

.contact-layout {
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
}

.form-card,
.contact-card,
.legal-card {
  padding: 32px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-intro {
  margin: -4px 0 22px;
  color: #4c5b60;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--petrol);
  font-weight: 720;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.checkbox-label {
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  color: var(--muted);
  font-weight: 600;
}

.checkbox-label input {
  min-height: auto;
  margin-top: 4px;
}

.form-message {
  margin: 0;
  padding: 16px;
  color: #163b2b;
  background: #eaf6ef;
  border: 1px solid #b8dfc7;
  border-radius: 8px;
  font-weight: 680;
}

.contact-card {
  position: sticky;
  top: 98px;
}

.contact-card h2 {
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
}

.contact-card p {
  margin-bottom: 10px;
}

.contact-card a,
.footer-contact a {
  color: var(--petrol);
  font-weight: 720;
}

.contact-note {
  margin-top: 24px;
  padding: 18px;
  background: var(--mist);
  border: 1px solid rgba(183, 123, 82, 0.22);
  border-radius: 8px;
}

.contact-note p {
  margin: 8px 0 0;
}

.legal-layout {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
}

.legal-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.legal-list div {
  display: grid;
  grid-template-columns: minmax(160px, 0.55fr) minmax(0, 1fr);
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.legal-list dt {
  color: var(--petrol);
  font-weight: 760;
}

.legal-list dd {
  margin: 0;
  color: var(--muted);
}

.cta-panel {
  justify-content: space-between;
}

.cta-panel > div {
  max-width: 790px;
}

.site-footer {
  padding: 58px 0 28px;
  color: #eaf0ee;
  background: #071f25;
}

.site-footer p,
.site-footer a {
  color: #cbd9d6;
}

.site-footer h2 {
  color: var(--white);
  font-size: 1.1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.8fr) minmax(260px, 0.8fr);
  gap: 42px;
}

.brand-footer {
  color: var(--white);
}

.footer-brand p {
  max-width: 420px;
  margin-top: 18px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--copper-2);
}

.legal-note {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.legal-note p {
  max-width: 1060px;
  margin-bottom: 0;
  font-size: 0.95rem;
}

@media (max-width: 1080px) {
  .primary-nav {
    font-size: 0.84rem;
  }

  .primary-nav a {
    padding-inline: 8px;
  }
}

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

  .primary-nav {
    position: fixed;
    top: 76px;
    right: 16px;
    left: 16px;
    display: grid;
    max-height: calc(100vh - 94px);
    padding: 14px;
    overflow: auto;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

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

  .primary-nav a {
    justify-content: space-between;
    min-height: 46px;
    padding: 12px 14px;
    border-radius: 8px;
  }

  .hero-grid,
  .split,
  .feature-layout,
  .process-list,
  .faq-layout,
  .contact-layout,
  .legal-layout,
  .compare-layout,
  .decision-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .question-grid,
  .card-grid.three,
  .route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ledger-visual,
  .security-visual,
  .capital-visual,
  .network-visual,
  .process-visual,
  .contact-visual {
    margin-inline: auto;
  }

  .contact-card {
    position: static;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    min-height: 70px;
    padding-inline: 14px;
  }

  .brand-name {
    font-size: 0.92rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .primary-nav {
    top: 70px;
  }

  .hero {
    padding: 54px 0 44px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 2.55rem);
  }

  .eyebrow,
  .section-kicker {
    display: block;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    letter-spacing: 0.06em;
  }

  .eyebrow::before,
  .section-kicker::before {
    display: none;
  }

  .hero-actions,
  .cta-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-note {
    position: static;
    width: auto;
    border-radius: 0;
  }

  .signal-bar-inner {
    justify-content: flex-start;
  }

  .signal-bar span + span::before {
    display: none;
  }

  .section {
    padding: 58px 0;
  }

  .question-grid,
  .card-grid.three,
  .route-grid,
  .proof-grid,
  .facts-grid,
  .two-column-cards,
  .timeline,
  .check-grid,
  .form-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .ledger-visual,
  .security-visual,
  .capital-visual,
  .network-visual,
  .process-visual,
  .contact-visual {
    min-height: 300px;
    padding: 28px;
  }

  .ledger-lines span {
    grid-template-columns: 1fr;
  }

  .compare-table div,
  .legal-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .timeline li {
    flex-direction: column;
    min-height: auto;
  }

  .question-card,
  .service-card,
  .route-card,
  .statement-card,
  .fact-card,
  .form-card,
  .contact-card,
  .legal-card,
  .note-band {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* AWZ Spezialseiten-Ergaenzungen */
:root {
  --petrol: #062846;
  --petrol-2: #0c3d63;
  --petrol-3: #15537f;
  --copper: #c99034;
  --copper-2: #f0c06f;
  --sage: #eef3f1;
  --mist: #f7f6f2;
  --paper: #fbfaf6;
  --line: #dce4e3;
}

html,
body {
  overflow-x: hidden;
}

.site-header {
  min-height: 76px;
  padding-block: 10px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 24px rgba(0, 24, 46, 0.06);
}

.brand {
  gap: 12px;
}

.brand-logo {
  flex: 0 0 auto;
  width: 108px;
  height: 40px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  min-width: 0;
  line-height: 1.05;
}

.brand-copy strong {
  color: var(--petrol);
  font-size: 1rem;
  white-space: nowrap;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  white-space: nowrap;
}

.header-phone {
  display: none;
  color: var(--petrol);
  font-weight: 800;
  white-space: nowrap;
}

.primary-nav {
  gap: 2px;
}

.primary-nav a {
  border-radius: 8px;
}

.primary-nav a[href="kontakt.html"],
.primary-nav a.nav-cta {
  background: var(--copper);
  color: #201300;
  border-color: rgba(148, 105, 29, 0.35);
}

.hero-awz {
  background:
    linear-gradient(90deg, rgba(247, 246, 242, 0.98), rgba(255, 255, 255, 0.96) 48%, rgba(238, 243, 241, 0.98));
}

.hero-awz h1 {
  font-size: clamp(1.9rem, 3.2vw, 3rem);
}

.hero-image-card--clean {
  overflow: hidden;
}

.hero-image-card--clean img,
.section-photo img,
.entry-card img {
  width: 100%;
  object-fit: cover;
}

.hero-image-card--clean img {
  aspect-ratio: 16 / 11;
}

.hero-grid--single {
  grid-template-columns: minmax(0, 850px);
}

.hero-grid--single .hero-copy {
  max-width: 850px;
}

.image-caption {
  position: static;
  padding: 16px 18px;
  color: var(--petrol);
  background: var(--white);
  border-top: 1px solid var(--line);
  font-weight: 700;
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.trust-points span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 11px;
  color: var(--petrol);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 760;
}

.entry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.entry-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.44fr) minmax(0, 0.56fr);
  gap: 24px;
  align-items: stretch;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(0, 24, 46, 0.08);
}

.entry-card img {
  height: 100%;
  min-height: 280px;
  aspect-ratio: 4 / 3;
}

.entry-card > div {
  min-width: 0;
  padding: 28px 28px 28px 0;
}

.entry-card h3 {
  margin-top: 0;
}

.question-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.section-photo {
  align-self: stretch;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section-photo img {
  height: 100%;
  min-height: 390px;
}

.feature-layout > .proof-grid--compact {
  grid-column: 2;
}

.proof-grid--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cta-panel--center {
  display: grid;
  gap: 22px;
  justify-items: center;
  text-align: center;
}

.cta-panel--center > div {
  max-width: 820px;
}

label em {
  color: var(--muted);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 600;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.brand-footer .brand-copy strong,
.brand-footer .brand-copy small {
  color: var(--white);
}

@media (min-width: 1180px) {
  .header-phone {
    display: inline-flex;
  }
}

@media (max-width: 1080px) {
  .brand-copy small {
    display: none;
  }
}

@media (max-width: 960px) {
  .entry-grid,
  .entry-card,
  .question-grid--four {
    grid-template-columns: 1fr;
  }

  .entry-card img {
    min-height: 260px;
  }

  .entry-card > div {
    padding: 0 24px 26px;
  }

  .section-photo img {
    min-height: 300px;
  }

  .feature-layout > .proof-grid--compact {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .container {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .hero-grid,
  .hero-copy,
  .hero-image-card,
  .entry-card,
  .section-photo {
    max-width: 100%;
    min-width: 0;
  }

  .site-header {
    min-height: 70px;
    gap: 8px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    gap: 8px;
  }

  .brand-logo {
    width: 86px;
    height: 32px;
  }

  .brand-copy strong {
    max-width: min(170px, calc(100vw - 180px));
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-toggle {
    flex: 0 0 44px;
  }

  h1 {
    font-size: clamp(1.85rem, 8.2vw, 2.18rem);
    overflow-wrap: anywhere;
  }

  .trust-points {
    display: grid;
  }

  .entry-card img,
  .hero-image-card--clean img,
  .section-photo img {
    min-height: 220px;
  }
}
