:root {
  --ink: #0d1b2a;
  --ink-soft: #3f4f63;
  --ink-muted: #65758b;
  --paper: #f6f7f8;
  --paper-strong: #ffffff;
  --paper-tint: #e8eef2;
  --line: rgba(16, 42, 67, .13);
  --primary: #287292;
  --primary-dark: #14546e;
  --primary-light: #8abdd0;
  --accent: #c89b45;
  --accent-dark: #8b621e;
  --navy: #08131f;
  --navy-2: #102233;
  --success: #0f7b5f;
  --max: 1180px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 8px;
  --radius-xl: 8px;
  --shadow-sm: 0 1px 2px rgba(15, 39, 61, .06), 0 10px 30px rgba(15, 39, 61, .06);
  --shadow-md: 0 1px 2px rgba(15, 39, 61, .07), 0 18px 44px rgba(15, 39, 61, .09);
  --shadow-lg: 0 2px 4px rgba(5, 16, 26, .18), 0 28px 68px rgba(5, 16, 26, .18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  --header-height: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id],
.card[id] {
  scroll-margin-top: 104px;
}
html {
  scroll-padding-top: calc(var(--header-height) + 1rem);
  scroll-padding-bottom: 7rem;
}
body {
  margin: 0;
  background:
    linear-gradient(180deg, #f9fbfc 0%, var(--paper) 44%, #eef4f7 100%);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-underline-offset: .22em; }
.lead a {
  color: var(--primary-dark);
  font-weight: 900;
  text-decoration-thickness: 2px;
}
img { display: block; max-width: 100%; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; border-radius: 8px; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-160%);
  background: var(--accent);
  color: #0b1723;
  padding: .7rem 1rem;
  border-radius: 999px;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section.compact { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.8rem);
}
.section-head.compact-head {
  margin-bottom: clamp(1rem, 2.5vw, 1.6rem);
}
.section-head h2 { flex: 0 0 auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 1rem;
  color: var(--primary-dark);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: 0;
}
h1 {
  max-width: 20ch;
  font-size: clamp(2.72rem, 4.8vw, 4.45rem);
}
h2 {
  max-width: 16ch;
  font-size: clamp(2.05rem, 5vw, 4rem);
}
h3 { font-size: clamp(1.22rem, 2vw, 1.65rem); }
p { margin: 0; color: var(--ink-soft); }
.lead {
  max-width: 65ch;
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  line-height: 1.54;
}
.small { color: var(--ink-muted); font-size: .93rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--paper-strong) 92%, transparent);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .7);
  backdrop-filter: blur(16px);
}
.header-row {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  flex: 1 1 auto;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  text-decoration: none;
}
.brand-mark {
  width: 64px;
  height: 48px;
  object-fit: cover;
  object-position: left center;
}
.brand-name {
  min-width: 0;
  max-width: min(38vw, 24rem);
  display: grid;
  line-height: 1.05;
}
.brand-name strong {
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  white-space: nowrap;
}
.brand-name span {
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--ink-muted);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav {
  display: flex;
  align-items: center;
  gap: .2rem;
}
.nav a {
  padding: .65rem .76rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: .94rem;
  font-weight: 750;
  text-decoration: none;
}
.nav a:hover { background: color-mix(in srgb, var(--primary) 10%, transparent); color: var(--ink); }
.nav a[aria-current="location"] {
  background: color-mix(in srgb, var(--primary) 14%, var(--paper-strong));
  color: var(--primary-dark);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--primary) 20%, transparent);
}
.nav-language { display: none; }
.header-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: .55rem;
}
.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .58rem .9rem;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: .88rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(8, 19, 31, .16);
}
.header-cta:hover { background: var(--primary-dark); }
.lang-toggle {
  display: inline-flex;
  gap: .2rem;
  padding: .2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-strong);
  box-shadow: 0 8px 24px rgba(15, 39, 61, .07);
}
.lang-toggle a {
  padding: .44rem .62rem;
  border-radius: 999px;
  color: var(--ink-muted);
  font-size: .84rem;
  font-weight: 900;
  text-decoration: none;
}
.lang-toggle a[aria-current="page"] {
  background: var(--accent);
  color: #07131f;
}
.menu-button {
  display: none;
  min-height: 42px;
  padding: .58rem .76rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-strong);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  font-weight: 850;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(1.65rem, 3vw, 2.7rem) 0 clamp(1.25rem, 3vw, 2.4rem);
  background:
    linear-gradient(135deg, #ffffff 0%, #f5fafc 48%, #edf4f7 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(112deg, transparent 0 54%, rgba(46, 120, 169, .08) 54% 54.45%, transparent 54.45%),
    linear-gradient(112deg, transparent 0 64%, rgba(216, 170, 85, .18) 64% 64.28%, transparent 64.28%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(20, 84, 110, .05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(20, 84, 110, .045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(115deg, transparent 0 40%, #000 58%, transparent 86%);
  opacity: .72;
}
.hero > .container {
  position: relative;
  z-index: 1;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(340px, .97fr);
  gap: clamp(1rem, 2.6vw, 2.4rem) clamp(2rem, 5vw, 5.5rem);
  align-items: center;
}
.hero-copy {
  display: grid;
  gap: .95rem;
}
.hero h1 {
  max-width: 19ch;
  font-size: 3.25rem;
  line-height: 1.03;
}
.hero-copy .lead {
  max-width: 42ch;
  font-size: 1.12rem;
  line-height: 1.5;
}
.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .55rem;
}
.hero-trust span {
  display: grid;
  gap: .18rem;
  min-height: 74px;
  padding: .7rem .8rem;
  border: 1px solid color-mix(in srgb, var(--primary) 16%, var(--line));
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--paper-strong) 88%, transparent);
  box-shadow: 0 10px 22px rgba(15, 39, 61, .05);
}
.hero-trust strong {
  color: var(--ink);
  font-size: .88rem;
  line-height: 1.15;
}
.hero-trust small {
  color: var(--ink-muted);
  font-size: .78rem;
  font-weight: 760;
  line-height: 1.25;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .8rem;
}
.hero-note {
  max-width: 43rem;
  padding-left: .95rem;
  border-left: 3px solid var(--accent);
  color: var(--ink-muted);
  font-size: .93rem;
  font-weight: 760;
}
.hero-note span {
  display: inline;
  color: var(--ink);
  font-weight: 950;
}
.hero-note span::after {
  content: ":";
}
.btn {
  position: relative;
  overflow: hidden;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  isolation: isolate;
  background: var(--primary-dark);
  color: #fff;
  box-shadow: 0 18px 32px rgba(21, 90, 134, .22);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, transparent 0 32%, rgba(255, 255, 255, .22) 46%, transparent 62% 100%);
  transform: translateX(-115%);
  transition: transform .55s cubic-bezier(.2, .8, .2, 1);
}
.btn-primary:hover::before {
  transform: translateX(115%);
}
.btn-secondary {
  background: var(--paper-strong);
  border-color: var(--line);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn-text {
  min-height: 44px;
  padding-inline: .2rem;
  color: var(--primary-dark);
}
.hero-visual {
  position: relative;
  min-height: 450px;
}
.visual-panel {
  position: absolute;
  inset: 0 0 auto auto;
  width: min(92%, 510px);
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .1), transparent 32%),
    linear-gradient(160deg, var(--navy-2), var(--navy));
  box-shadow: var(--shadow-lg);
}
.visual-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(112deg, transparent 0 56%, rgba(200, 155, 69, .34) 56% 56.35%, transparent 56.35%),
    linear-gradient(112deg, transparent 0 68%, rgba(138, 189, 208, .18) 68% 68.35%, transparent 68.35%);
  pointer-events: none;
}
.visual-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    repeating-linear-gradient(90deg, transparent 0 27px, rgba(255, 255, 255, .035) 27px 28px),
    linear-gradient(180deg, transparent 0 62%, rgba(200, 155, 69, .14) 100%);
  pointer-events: none;
}
.hero-portrait-main {
  position: absolute;
  right: -1rem;
  bottom: 0;
  z-index: 2;
  width: 70%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(.92) contrast(1.02);
}
.visual-badge,
.visual-proof {
  position: absolute;
  left: 1.1rem;
  z-index: 3;
  display: grid;
  gap: .15rem;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .1);
  color: #eef7fc;
  backdrop-filter: blur(12px);
}
.visual-badge {
  top: 1.1rem;
  width: min(58%, 260px);
  padding: .9rem;
}
.visual-badge span,
.visual-proof span {
  color: var(--accent);
  font-size: .75rem;
  font-weight: 1000;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.visual-badge strong,
.visual-proof strong {
  color: #fff;
  line-height: 1.12;
}
.visual-badge strong { font-size: 1.35rem; }
.visual-badge small {
  color: rgba(238, 247, 252, .76);
  font-size: .82rem;
}
.visual-steps {
  display: grid;
  gap: .46rem;
  margin: .58rem 0 0;
  padding: 0;
  list-style: none;
}
.visual-steps li {
  position: relative;
  padding-left: 1.05rem;
  color: rgba(244, 251, 255, .88);
  font-size: .82rem;
  font-weight: 850;
  line-height: 1.22;
}
.visual-steps li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .36em;
  width: .42rem;
  height: .42rem;
  border-radius: 50%;
  background: var(--accent);
}
.visual-proof {
  right: 1.1rem;
  bottom: 4.9rem;
  width: min(66%, 320px);
  padding: .9rem;
}
.visual-proof strong { font-size: 1rem; }
.decision-trail {
  position: absolute;
  left: 1.1rem;
  top: 9.4rem;
  z-index: 4;
  display: grid;
  gap: .62rem;
  width: min(58%, 260px);
  padding: .82rem .88rem .82rem 1.08rem;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-md);
  background: rgba(8, 19, 31, .34);
  color: #f4fbff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .2);
  backdrop-filter: blur(12px);
}
.decision-trail::before {
  content: "";
  position: absolute;
  left: 1.02rem;
  top: 1.18rem;
  bottom: 1.18rem;
  width: 1px;
  background: linear-gradient(180deg, var(--accent), rgba(138, 189, 208, .62));
}
.decision-trail span {
  position: relative;
  display: block;
  padding-left: 1.18rem;
  color: rgba(244, 251, 255, .86);
  font-size: .79rem;
  font-weight: 850;
  line-height: 1.24;
}
.decision-trail span::before {
  content: "";
  position: absolute;
  left: -.25rem;
  top: .28rem;
  width: .48rem;
  height: .48rem;
  border: 2px solid rgba(255, 255, 255, .76);
  border-radius: 50%;
  background: var(--primary-light);
  box-shadow: 0 0 0 4px rgba(138, 189, 208, .12);
}
.decision-trail span:nth-child(3)::before {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(200, 155, 69, .16);
}
.counsel-stack {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  z-index: 4;
  display: flex;
  align-items: center;
}
.counsel-stack img {
  width: 56px;
  height: 56px;
  margin-right: -.7rem;
  border: 2px solid rgba(255, 255, 255, .84);
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .22);
}
.risk-panel {
  position: relative;
  grid-column: 1 / -1;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 1rem;
  margin-top: .15rem;
  padding: clamp(1rem, 2.4vw, 1.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow-sm);
}
.risk-intro {
  display: grid;
  align-content: center;
}
.risk-intro h2 {
  max-width: 14ch;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
}
.risk-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
}
.risk-list article {
  position: relative;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: .55rem .72rem;
  align-content: start;
  padding: .85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--paper-strong) 86%, transparent);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.risk-list article:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent) 46%, var(--line));
  background: var(--paper-strong);
}
.risk-list span {
  grid-row: 1 / 3;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--accent) 18%, var(--paper-strong));
  color: var(--accent-dark);
  font-family: var(--mono);
  font-size: .82rem;
  font-weight: 1000;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 28%, var(--line));
}
.risk-list strong {
  color: var(--ink);
  line-height: 1.16;
}
.risk-list p {
  color: var(--ink-muted);
  font-size: .9rem;
  line-height: 1.42;
}
.cta-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: clamp(1rem, 2.4vw, 1.35rem);
  border: 1px solid color-mix(in srgb, var(--primary) 18%, var(--line));
  border-radius: var(--radius-lg);
  background:
    linear-gradient(100deg, color-mix(in srgb, var(--primary-dark) 9%, var(--paper-strong)), var(--paper-strong) 58%),
    linear-gradient(90deg, rgba(200, 155, 69, .16), transparent);
  box-shadow: var(--shadow-sm);
}
.cta-strip strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
  line-height: 1.2;
}
.cta-strip p {
  max-width: 64ch;
  margin-top: .22rem;
  color: var(--ink-muted);
}

.audience-grid {
  align-items: stretch;
}
.audience-card {
  min-height: 246px;
  display: grid;
  align-content: start;
  gap: .85rem;
}
.audience-card h3 {
  max-width: 18ch;
}
.audience-kicker {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--primary-dark) 12%, var(--paper-tint));
  color: var(--primary-dark);
  font-family: var(--mono);
  font-size: .9rem;
  font-weight: 1000;
  box-shadow: inset 0 0 0 1px var(--line);
}

.intro-panel,
.quote-panel {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  padding: clamp(1.4rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(232, 242, 247, .82));
  box-shadow: var(--shadow-md);
}
.principles,
.proof-list,
.faq {
  display: grid;
  gap: .85rem;
}
.principle {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: .85rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .74);
}
.principle .num {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--primary-dark);
  color: #fff;
  font-weight: 900;
}
.principle strong { display: block; margin-bottom: .15rem; }

.grid {
  display: grid;
  gap: 1rem;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.1rem, 2.5vw, 1.55rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--paper-strong) 96%, transparent);
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--primary) 28%, var(--line));
  box-shadow: var(--shadow-md);
}
.card:focus-within {
  border-color: color-mix(in srgb, var(--primary) 42%, var(--line));
  box-shadow: var(--shadow-md);
}
.card::after {
  content: "";
  position: absolute;
  inset: auto 1.2rem 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity .18s ease;
}
.card:hover::after { opacity: 1; }
.card h3 { margin-bottom: .75rem; }
.service-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 5.1rem;
  height: 5.1rem;
  border: 1px solid color-mix(in srgb, var(--primary) 16%, transparent);
  border-radius: var(--radius-md);
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--primary) 18%, transparent) 1px, transparent 1px),
    linear-gradient(180deg, color-mix(in srgb, var(--primary) 14%, transparent) 1px, transparent 1px);
  background-size: 17px 17px;
  opacity: .38;
  transform: rotate(4deg);
  transition: opacity .18s ease, transform .18s ease;
}
.service-card:hover::before {
  opacity: .76;
  transform: rotate(0deg) translateY(-2px);
}
.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  background: var(--paper-tint);
  color: var(--primary-dark);
  font-family: var(--mono);
  font-weight: 1000;
  box-shadow: inset 0 0 0 1px var(--line);
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.service-card:hover .icon {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: 1rem;
}
.tag {
  display: inline-flex;
  align-items: center;
  padding: .27rem .58rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink-soft);
  font-size: .8rem;
  font-weight: 800;
}
.decision-cta {
  display: grid;
  grid-template-columns: .22fr minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
  padding: clamp(1.1rem, 2.7vw, 1.55rem);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .1), transparent 34%),
    linear-gradient(145deg, var(--navy-2), var(--primary-dark));
  color: #fff;
  box-shadow: var(--shadow-md);
}
.decision-cta .eyebrow {
  margin: 0;
  color: var(--primary-light);
}
.decision-cta h3 {
  max-width: 29ch;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}
.decision-cta p:not(.eyebrow) {
  max-width: 62ch;
  margin-top: .45rem;
  color: rgba(241, 248, 252, .78);
}
.decision-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: .65rem;
}
.decision-cta .btn-secondary {
  border-color: rgba(255, 255, 255, .22);
}

.dark-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(140, 195, 220, .16), transparent 38%),
    linear-gradient(160deg, var(--navy), var(--navy-2));
  color: #f1f8fc;
}
.dark-band p,
.dark-band .lead,
.dark-band .small { color: rgba(241, 248, 252, .78); }
.dark-band .eyebrow { color: var(--primary-light); }
.dark-band .card {
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  box-shadow: none;
}
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  counter-reset: step;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 155, 69, .72), transparent);
}
.step {
  position: relative;
  z-index: 1;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .1);
  color: var(--accent);
  font-family: var(--mono);
  font-weight: 1000;
  box-shadow: 0 0 0 8px rgba(8, 19, 31, .88);
}

.sector-map {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 1rem;
}
.sector-feature {
  min-height: 420px;
  display: grid;
  align-content: end;
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .08), transparent 34%),
    linear-gradient(150deg, var(--navy-2), var(--navy));
  color: #fff;
  box-shadow: var(--shadow-md);
}
.sector-feature p { color: rgba(255, 255, 255, .78); }
.sector-feature h3 {
  max-width: 13ch;
  margin-bottom: .8rem;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}
.sector-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.sector { display: grid; gap: .55rem; align-content: start; }

.quote-panel {
  grid-template-columns: .86fr 1.14fr;
  background: var(--paper-strong);
}
.quote-mark {
  color: var(--accent);
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: .7;
}
blockquote {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 3vw, 2.08rem);
  line-height: 1.28;
  letter-spacing: 0;
}
.proof {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: .7rem;
  align-items: start;
  color: var(--ink-soft);
}
.proof::before {
  content: "✓";
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--success) 14%, var(--paper-strong));
  color: var(--success);
  font-weight: 1000;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.person {
  display: flex;
  flex-direction: column;
  padding: 0;
}
.portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
  background: var(--paper-tint);
}
.portrait.placeholder {
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--paper-tint), var(--paper-strong));
  color: var(--primary-dark);
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 1000;
}
.person-body {
  display: grid;
  gap: .75rem;
  padding: 1.1rem;
}
.person-body h3 {
  min-height: 2.75em;
  font-size: 1.28rem;
}
.role {
  min-height: 4.85em;
  color: var(--primary-dark);
  font-size: .94rem;
  font-weight: 900;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper-strong);
  box-shadow: var(--shadow-sm);
}
.dark-band .faq-item {
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .07);
}
.faq button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  font-weight: 900;
}
.faq button::after { content: "-"; color: var(--primary-dark); font-size: 1.25rem; }
.faq.is-ready button::after { content: "+"; }
.dark-band .faq button::after { color: var(--accent); }
.faq.is-ready button[aria-expanded="true"]::after { content: "-"; }
.faq-panel {
  display: grid;
  grid-template-rows: 1fr;
}
.faq.is-ready .faq-panel {
  grid-template-rows: 0fr;
  transition: grid-template-rows .22s ease;
}
.faq.is-ready button[aria-expanded="true"] + .faq-panel { grid-template-rows: 1fr; }
.faq-panel > div { overflow: hidden; }
.faq-panel p { padding: 0 1.2rem 1.1rem; }

.contact-shell {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 1rem;
}
.contact-card {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.5rem, 4vw, 2.6rem);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .08), transparent 34%),
    linear-gradient(145deg, var(--primary-dark), var(--navy));
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.contact-card p { color: rgba(255, 255, 255, .78); }
.contact-card a { color: #fff; }
.contact-card .btn-secondary {
  background: var(--paper-strong);
  color: var(--ink);
}
.contact-card .btn-secondary:hover {
  background: var(--paper-tint);
  color: var(--ink);
}
.contact-actions {
  display: grid;
  gap: .8rem;
  margin-top: 2rem;
}
.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.detail {
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-sm);
}
.detail strong {
  display: block;
  margin-bottom: .3rem;
}
.detail a {
  color: var(--primary-dark);
  font-weight: 900;
}
.wide { grid-column: 1 / -1; }

.site-footer {
  padding: 2.4rem 0;
  border-top: 1px solid var(--line);
  background: var(--paper-strong);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 2rem;
}
.footer-links {
  display: grid;
  gap: .45rem;
}
.footer-links a {
  color: var(--ink-soft);
  font-weight: 700;
  text-decoration: none;
}
.footer-links a:hover { color: var(--ink); text-decoration: underline; }

.quick-contact {
  position: fixed;
  left: .75rem;
  right: .75rem;
  bottom: calc(.75rem + env(safe-area-inset-bottom));
  z-index: 120;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  padding: .5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 1rem));
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  visibility: hidden;
}
.quick-contact.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}
.quick-contact a {
  min-height: 46px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: #fff;
  font-weight: 950;
  text-decoration: none;
}
.quick-contact a + a {
  background: var(--primary-dark);
}

.legal-page {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 0;
  background:
    linear-gradient(112deg, transparent 0 61%, rgba(46, 120, 169, .06) 61% 61.4%, transparent 61.4%),
    linear-gradient(180deg, rgba(255, 255, 255, .65), rgba(232, 242, 247, .36));
}
.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.legal-copy {
  display: grid;
  gap: 1rem;
}
.legal-copy .card h2 {
  max-width: none;
  margin-bottom: .7rem;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}
.legal-copy .card p + p { margin-top: .85rem; }
.legal-copy a { color: var(--primary-dark); font-weight: 800; }
.service-faq .faq {
  margin-top: 1rem;
}
.service-faq .faq-item {
  box-shadow: none;
}
.notice {
  padding: .9rem 1rem;
  border: 1px dashed color-mix(in srgb, var(--accent) 70%, var(--line));
  border-radius: 16px;
  background: color-mix(in srgb, var(--accent) 11%, var(--paper-strong));
  color: var(--ink-soft);
}

@media (max-width: 1060px) {
  .nav {
    position: fixed;
    top: calc(var(--header-height) + .5rem);
    left: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: .65rem;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--paper-strong);
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - var(--header-height) - 1.5rem);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .js-ready .nav { display: none; }
  .js-ready .nav.is-open { display: flex; }
  .nav a { padding: .9rem 1rem; }
  .menu-button { display: inline-flex; }
	  .hero-grid,
	  .intro-panel,
	  .quote-panel,
	  .sector-map,
	  .contact-shell,
	  .risk-panel,
	  .cta-strip,
	  .decision-cta,
	  .legal-layout { grid-template-columns: 1fr; }
  .hero-visual { min-height: 520px; }
  .grid-3,
  .timeline,
  .team-grid,
  .risk-list { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1061px) {
  .legal-layout > div:first-child {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
  }
}

@media (max-width: 720px) {
  :root { --header-height: 74px; }
  .container { width: min(100% - 1rem, var(--max)); }
  .header-row {
    position: relative;
    flex-wrap: nowrap;
    align-items: center;
    min-height: var(--header-height);
    padding: 0;
  }
  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }
  .brand-mark { width: 58px; height: 44px; }
  .brand-name { display: none; }
  .header-cta { display: none; }
  .lang-toggle { display: none; }
  .header-actions {
    display: flex;
    margin-left: auto;
  }
  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .nav { top: calc(var(--header-height) + .5rem); }
  .nav-language { display: block; }
  .hero {
    padding-top: 2rem;
    padding-bottom: 1.35rem;
  }
  .hero-copy { gap: 1.05rem; }
  .hero h1 {
    max-width: 15ch;
    font-size: 2.38rem;
    line-height: 1.05;
  }
  .hero-copy .lead {
    max-width: 34ch;
    font-size: 1.04rem;
  }
  .hero-trust {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .35rem;
  }
  .hero-trust span {
    min-height: 86px;
    padding: .52rem .44rem;
  }
  .hero-trust strong {
    font-size: .76rem;
  }
  .hero-trust small {
    font-size: .67rem;
    line-height: 1.18;
  }
	  .hero-grid { gap: 1.15rem; }
	  .hero-copy { order: 1; }
	  .risk-panel { order: 2; }
	  .cta-strip { order: 3; }
	  .hero-visual {
	    order: 4;
	    display: none;
	    min-height: 0;
	  }
  .visual-panel {
    position: relative;
    width: 100%;
    min-height: 350px;
  }
  .hero-portrait-main {
    right: -.8rem;
    width: 66%;
  }
  .visual-badge {
    width: min(68%, 250px);
    padding: .85rem;
  }
  .visual-badge strong { font-size: 1.1rem; }
  .visual-proof {
    display: none;
  }
  .counsel-stack img {
    width: 48px;
    height: 48px;
  }
  .section-head { display: grid; }
  .grid-3,
  .grid-2,
  .timeline,
  .team-grid,
  .contact-details,
  .footer-grid,
  .sector-list { grid-template-columns: 1fr; }
  .contact-card { min-height: auto; }
  .person {
    display: grid;
    grid-template-columns: minmax(82px, 24vw) minmax(0, 1fr);
    min-height: 132px;
    align-items: stretch;
  }
  .portrait {
    height: 100%;
    min-height: 132px;
    aspect-ratio: auto;
    object-position: center 18%;
  }
  .person-body {
    padding: .9rem;
    gap: .5rem;
  }
  .person-body h3 {
    min-height: auto;
    font-size: 1.05rem;
    line-height: 1.15;
  }
  .role {
    min-height: auto;
    font-size: .82rem;
    line-height: 1.35;
  }
  #team .section-head .lead,
  #team .person-body .small,
  #team .person-body .tags {
    display: none;
  }
  .person-body .small {
    font-size: .84rem;
    line-height: 1.42;
  }
  .person-body .tags {
    gap: .34rem;
  }
  .person-body .tag {
    padding: .28rem .48rem;
    font-size: .72rem;
  }
  .risk-panel {
    padding: .95rem;
  }
  .risk-intro h2 {
    max-width: 100%;
    font-size: clamp(1.45rem, 8vw, 2.05rem);
  }
	  .risk-list { grid-template-columns: 1fr; }
	  .risk-list article {
	    grid-template-columns: 36px minmax(0, 1fr);
	    padding: .72rem;
	  }
	  .risk-list span {
	    width: 36px;
	    height: 36px;
	  }
	  .cta-strip {
	    gap: .85rem;
	  }
	  .cta-strip .btn,
	  .decision-actions,
	  .decision-actions .btn {
	    width: 100%;
	  }
	  .decision-actions {
	    justify-content: stretch;
	  }
	  .quick-contact.is-visible { display: grid; }
  body { padding-bottom: calc(5.8rem + env(safe-area-inset-bottom)); }
  .site-footer { padding-bottom: calc(6.3rem + env(safe-area-inset-bottom)); }
  h1 {
    max-width: 100%;
    font-size: clamp(2.02rem, 9.2vw, 2.74rem);
    hyphens: manual;
    overflow-wrap: normal;
    word-break: normal;
  }
}

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


/* 2026-06-11: Kanzlei-Refinement – ruhiger, seriöser, weniger Landingpage-Optik */
:root {
  --ink: #111820;
  --ink-soft: #334155;
  --ink-muted: #667085;
  --paper: #f7f6f2;
  --paper-strong: #ffffff;
  --paper-tint: #eee9df;
  --line: rgba(17, 24, 32, .14);
  --primary: #17364a;
  --primary-dark: #102f43;
  --primary-light: #d7e3ea;
  --accent: #a77a33;
  --accent-dark: #705020;
  --navy: #0f1b28;
  --navy-2: #17283a;
  --radius-sm: 4px;
  --radius-md: 5px;
  --radius-lg: 6px;
  --radius-xl: 6px;
  --shadow-sm: 0 1px 2px rgba(17, 24, 32, .06), 0 10px 24px rgba(17, 24, 32, .05);
  --shadow-md: 0 1px 2px rgba(17, 24, 32, .07), 0 16px 34px rgba(17, 24, 32, .08);
  --shadow-lg: 0 2px 4px rgba(8, 16, 24, .16), 0 24px 54px rgba(8, 16, 24, .16);
}
body {
  background: linear-gradient(180deg, #faf9f6 0%, var(--paper) 55%, #f1eee7 100%);
}
h1, h2, h3,
.brand-name strong,
blockquote {
  font-family: var(--serif);
  font-weight: 700;
}
h1 { font-size: 3.7rem; }
h2 { font-size: 3rem; }
h3 { line-height: 1.15; }
.lead { font-size: 1.16rem; }
.site-header {
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(10px);
}
.nav a,
.header-cta,
.lang-toggle,
.lang-toggle a,
.menu-button,
.skip-link,
.btn,
.tag,
.quick-contact a {
  border-radius: var(--radius-sm);
}
.header-cta,
.btn {
  font-weight: 800;
  letter-spacing: 0;
}
.btn:hover,
.card:hover,
.risk-list article:hover,
.service-card:hover .icon {
  transform: none;
}
.btn-primary::before,
.card::after {
  display: none;
}
.btn-primary {
  background: var(--primary-dark);
  box-shadow: 0 10px 24px rgba(16, 47, 67, .16);
}
.btn-secondary {
  background: #fff;
}
.hero {
  background: linear-gradient(135deg, #fff 0%, #faf9f6 58%, #f0eee8 100%);
}
.hero::after { display: none; }
.hero::before {
  background: linear-gradient(112deg, transparent 0 62%, rgba(167, 122, 51, .12) 62% 62.18%, transparent 62.18%);
}
.hero h1 {
  max-width: 18ch;
  font-size: 3.45rem;
}
.hero-trust span,
.risk-panel,
.cta-strip,
.card,
.detail,
.faq-item {
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow-sm);
}
.visual-panel {
  background: linear-gradient(145deg, #182a3b, #0f1b28);
}
.visual-panel::before,
.visual-panel::after {
  opacity: .18;
}
.visual-badge,
.visual-proof,
.decision-trail {
  border-radius: var(--radius-sm);
  backdrop-filter: none;
}
.visual-badge {
  background: rgba(15, 27, 40, .76);
}
.decision-trail {
  background: rgba(15, 27, 40, .58);
}
.icon,
.audience-kicker,
.risk-list span,
.step::before {
  border-radius: var(--radius-sm);
}
.decision-cta,
.dark-band,
.contact-card {
  background: linear-gradient(145deg, var(--navy-2), var(--navy));
}
.dark-band::before,
.dark-band::after { opacity: .25; }
.tag {
  background: #faf9f6;
  font-weight: 700;
}
.role { color: var(--primary-dark); }
.person-body h3 { min-height: 2.5em; }
@media (max-width: 720px) {
  h1 { font-size: 2.35rem; }
  h2 { font-size: 2rem; }
  .lead { font-size: 1.04rem; }
  .hero h1 { max-width: 100%; font-size: 2.3rem; }
  .hero-trust span { min-height: 92px; }
}
