:root {
  --bg: #f4f7fb;
  --surface: #FFFFFF;
  --surface-soft: #f8fbff;
  --primary: #0a2342;
  --dark: #0f1d37;
  --medium: #31486b;
  --muted: #6f809e;
  --light: #FFFFFF;
  --accent: #004e98;
  --accent-strong: #003b79;
  --border: #d7e0ee;
  --card-border: rgba(8, 33, 66, 0.1);
  --card-shadow: 0 8px 24px rgba(12, 33, 65, 0.08);
  --card-shadow-hover: 0 14px 30px rgba(11, 34, 72, 0.13);
  --font-sans: 'Avenir Next', 'Helvetica Neue', 'Helvetica light', Arial, sans-serif;
  --font-ui: 'Helvetica Neue', 'Helvetica light', Arial, sans-serif;
  --layout-max: 1200px;
  --layout-gutter: 1rem;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.005em;
  color: var(--primary);
  background:
    radial-gradient(circle at 8% -5%, rgba(0, 122, 255, 0.08) 0%, rgba(0, 122, 255, 0) 38%),
    radial-gradient(circle at 92% 4%, rgba(10, 35, 66, 0.1) 0%, rgba(10, 35, 66, 0) 34%),
    var(--bg);
  line-height: 1.72;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  color: var(--dark);
  letter-spacing: 0.01em;
}


.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;
}
p, li, label, input, select, textarea, button {
  font-family: var(--font-sans);
}

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

header {
  background: #ffffff;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(10, 35, 66, 0.12);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: 0.52rem var(--layout-gutter);
}
.nav-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  margin-left: -1.8rem;
}

.logo-img {
  width: auto;
  height: 96px;
  object-fit: contain;
  display: block;
}

.nav .logo-img rect {
  fill: #ffffff !important;
}

.nav .logo-img .title {
  fill: #0f3f85 !important;
}

.nav .logo-img .subtitle {
  fill: #7b8496 !important;
}
.nav-links { display: flex; align-items: center; gap: 2rem; padding-right: 0; margin-right: 0.72rem; }
.nav a { color: #102644; text-decoration: none; font-family: var(--font-ui); font-weight: 400; font-size: 0.95rem; letter-spacing: 0.04em; text-transform: none; transition: color 0.2s, opacity 0.2s, border-color 0.2s; }
.nav-links a { padding-bottom: 0.2rem; border-bottom: 1px solid transparent; }
.nav-links a:first-child { color: #102644; }
.nav-links a:hover { opacity: 0.9; border-bottom-color: rgba(16, 38, 68, 0.45); }
.nav-links a.is-active {
  color: #0f3f85;
  border-bottom-color: #0f3f85;
}
.lang-switcher {
  display: inline-flex;
  align-items: center;
  margin-left: 0;
  padding-left: 0.72rem;
  border-left: 1px solid rgba(16, 38, 68, 0.24);
}

.lang-select,
.lang-switcher select {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  appearance: none;
  -webkit-appearance: none;
}

.lang-select:focus {
  outline: none;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.header-content { display: none; }
.nav-brand { display: none; }
.brand-image { display: none; }

.hero {
  background-image: url('images/Background_tower.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: var(--light);
  padding: 6.5rem 1rem;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(6, 20, 39, 0.9), rgba(11, 49, 98, 0.68));
}

/* optional: genau wie im Beispielbild */
.nav-brand img { border-radius: 0px; box-shadow: 0 6px 12px rgba(0,0,0,.25); }

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  margin: 0 0 1.5rem;
  font-family: var(--font-sans);
  font-size: clamp(2.45rem, 5vw, 4.15rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.15;
  color: var(--light);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.hero p {
  margin: 0 0 2rem;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.hero-intro {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-signature {
  margin: -0.7rem auto 2rem;
  max-width: 760px;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(236, 244, 255, 0.94);
  letter-spacing: 0.02em;
}

.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.82rem;
  font-family: var(--font-ui);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, #0b3f82 0%, #0f2c63 100%);
  color: var(--light);
  border-color: rgba(5, 38, 82, 0.3);
  box-shadow: 0 10px 20px rgba(7, 37, 77, 0.25);
}
.btn-primary:hover { background: linear-gradient(135deg, #0d478f 0%, #133773 100%); transform: translateY(-1px); }
.btn-secondary { background: #ffffff; color: #0f2c63; border: 1px solid rgba(15, 44, 99, 0.35); }
.btn-secondary:hover { background: #eef4ff; color: #0f2c63; }

.section { padding: 4rem var(--layout-gutter); }
.container { max-width: var(--layout-max); margin: 0 auto; }
.section h2 { margin-bottom: 1rem; color: var(--primary); font-size: clamp(2rem, 3.5vw, 2.7rem); font-weight: 500; letter-spacing: 0.01em; line-height: 1.2; text-align: center; }
.section > .container > p { text-align: center; max-width: 800px; margin: 0 auto 3rem; color: var(--medium); font-size: 1.02rem; line-height: 1.78; }

.home-page main > .section {
  padding-top: 5.25rem;
  padding-bottom: 5.25rem;
}

.global-breadcrumb-bar {
  background: #ffffff;
  border-top: 1px solid rgba(10, 35, 66, 0.08);
  border-bottom: 1px solid rgba(10, 35, 66, 0.1);
  padding: 0.62rem var(--layout-gutter);
}

.global-breadcrumb {
  margin: 0;
  display: flex;
  gap: 0.48rem;
  align-items: center;
  flex-wrap: wrap;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: #4e6386;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.global-breadcrumb a {
  color: #244a82;
  text-decoration: none;
  font-weight: 500;
}

.global-breadcrumb a:hover {
  text-decoration: underline;
}

.global-breadcrumb strong {
  color: #0f2f60;
  font-weight: 600;
}

.expertise-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); margin-bottom: 3rem; }
.expertise-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.expertise-card h3 { margin: 0 0 0.95rem; color: var(--dark); font-size: 1.18rem; font-weight: 500; line-height: 1.35; }
.expertise-card p { margin: 0; color: var(--medium); font-size: 0.98rem; line-height: 1.75; }

.expertise-card:hover,
.focus-item:hover,
.team-member:hover,
.reference-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(15, 26, 40, 0.1);
}

.cta-section { text-align: center; }

.customers { background: var(--bg); }
.customer-focus { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); margin-top: 3rem; }
.focus-item {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-soft) 100%);
  border-radius: 16px;
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.focus-item h3 { margin: 0 0 0.95rem; color: var(--accent); font-size: 1.14rem; font-weight: 500; }
.focus-item p { margin: 0; color: var(--medium); font-size: 0.98rem; line-height: 1.75; }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 6rem;
  flex-wrap: wrap;
  margin: 2.75rem 0 3.75rem;
}

.hero-stat {
  text-align: center;
}

.hero-stat strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.05;
  color: var(--light);
  font-weight: 700;
}

.hero-stat span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.transformation-section {
  position: relative;
  background: #ffffff;
}

.strategy-mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
  margin-bottom: 3rem;
}

.strategy-intro-tile {
  grid-column: span 12;
  background: linear-gradient(140deg, #1b3e6d 0%, #14365f 58%, #102d51 100%);
  border: 1px solid rgba(196, 214, 238, 0.24);
  box-shadow: 0 12px 28px rgba(9, 28, 54, 0.24);
  padding: 1.45rem 1.7rem 1.35rem;
  text-align: left;
}

.strategy-intro-tile h2 {
  margin: 0 0 1.15rem;
  color: #ffffff;
  font-size: clamp(1.6rem, 2.25vw, 2rem);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: 0.01em;
  text-align: left;
}

.strategy-intro-tile p {
  margin: 0;
  max-width: 1120px;
  color: rgba(216, 229, 248, 0.95);
  font-size: 1rem;
  line-height: 1.72;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.strategy-tile {
  position: relative;
  min-height: 230px;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(10, 35, 66, 0.16);
  box-shadow: 0 10px 26px rgba(10, 31, 58, 0.14);
  display: flex;
  align-items: flex-end;
}

.strategy-tile--wide {
  grid-column: span 7;
}

.strategy-tile--narrow {
  grid-column: span 5;
}

.strategy-tile--image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.strategy-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 18, 38, 0.18) 0%, rgba(6, 18, 36, 0.8) 100%);
}

.strategy-tile--solid {
  background: linear-gradient(140deg, #133a70 0%, #0f2f60 100%);
}

.strategy-tile--solid-alt {
  background: linear-gradient(140deg, #1f446f 0%, #17365a 100%);
}

.strategy-tile__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 1.4rem 1.2rem 1.35rem;
  background: linear-gradient(180deg, rgba(13, 24, 43, 0.12) 0%, rgba(13, 24, 43, 0.88) 100%);
}

.strategy-tile--solid .strategy-tile__content,
.strategy-tile--solid-alt .strategy-tile__content {
  background: transparent;
}

.strategy-tile h3 {
  margin: 0 0 0.62rem;
  color: #ffffff;
  font-size: 1.42rem;
  font-weight: 500;
  line-height: 1.2;
}

.strategy-tile p {
  margin: 0;
  color: rgba(242, 247, 255, 0.94);
  font-size: 0.96rem;
  line-height: 1.62;
}

.strategy-editorial {
  max-width: 1100px;
  margin: 0 auto 2.2rem;
}

.strategy-editorial-intro {
  background: #ffffff;
  padding: 1.55rem 1.4rem 1.5rem;
  margin-bottom: 0.65rem;
}

.strategy-editorial-intro h2 {
  margin: 0 0 1rem;
  color: #121d2c;
  font-size: clamp(2rem, 3.3vw, 2.55rem);
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
}

.strategy-editorial-intro p {
  margin: 0;
  color: #27384f;
  font-size: 1rem;
  line-height: 1.74;
  text-align: left;
}

.strategy-editorial-list {
  border-top: 1px solid rgba(18, 42, 76, 0.2);
  border-bottom: 1px solid rgba(18, 42, 76, 0.2);
}

.strategy-editorial-item {
  position: relative;
  display: grid;
  grid-template-columns: 3.6rem minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
  padding: 1.32rem 0.3rem;
  border-bottom: 1px solid rgba(18, 42, 76, 0.2);
}

.strategy-editorial-item:last-child {
  border-bottom: 0;
}

.strategy-editorial-item__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid rgba(18, 42, 76, 0.56);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.strategy-editorial-item__icon svg {
  width: 1.45rem;
  height: 1.45rem;
  stroke: #102d56;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.strategy-editorial-item__body h3 {
  margin: 0 0 0.36rem;
  color: #111f31;
  font-size: 1.52rem;
  font-weight: 500;
  line-height: 1.24;
  letter-spacing: 0.01em;
}

.strategy-editorial-item__body p {
  margin: 0;
  color: #2f4563;
  font-size: 0.99rem;
  line-height: 1.68;
}

.execution-section {
  background: linear-gradient(145deg, #f3f6fb 0%, #e8eef8 48%, #f7f9fc 100%);
  border-top: 1px solid rgba(14, 46, 88, 0.12);
  border-bottom: 1px solid rgba(14, 46, 88, 0.1);
}

.execution-section h2 {
  max-width: 900px;
  margin-top: 0;
  margin-bottom: 1.5rem;
  margin-left: auto;
  margin-right: auto;
}

.execution-section__intro {
  max-width: 900px;
  margin-top: 0;
  margin-bottom: 1.45rem;
  line-height: 1.84;
}

.execution-section .focus-item {
  text-align: left;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding: 0.25rem 0.25rem 0.25rem 0;
}

.execution-section .focus-item:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}

.execution-section .customer-focus {
  gap: 2.2rem;
  margin-top: 0;
  margin-bottom: 2.9rem;
  align-items: start;
}

.execution-section .focus-item h3 {
  margin: 0 0 1rem;
  color: #113d77;
}

.execution-section .focus-item p {
  margin: 0;
  color: #2e4970;
  text-align: left;
  hyphens: none;
  line-height: 1.8;
}

.execution-section .focus-item:nth-child(n+2) {
  border-left: 1px solid rgba(17, 61, 119, 0.24);
  padding-left: 1.35rem;
}

.execution-section .cta-section {
  margin-top: 0;
  margin-bottom: 2.4rem;
}

.execution-section__closing {
  margin-top: 0;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 1.7;
  color: #1f3f6a;
}

.services-values {
  margin-top: 1rem;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.82rem;
  color: #38557d;
  font-weight: 600;
  text-align: center;
}

.services-offer-hero {
  position: relative;
  background: url('../images/Tech_2.png?v=20260404-services-overlay') center center/cover no-repeat;
  padding: 6.5rem var(--layout-gutter);
  overflow: hidden;
}

.services-offer-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(6, 20, 39, 0.9), rgba(11, 49, 98, 0.68));
}

.services-offer-hero .container {
  position: relative;
  z-index: 1;
}

.services-offer-hero h2 {
  color: #f8fbff;
  text-shadow: 0 4px 18px rgba(7, 24, 48, 0.35);
}

.services-offer-hero .container > p {
  color: rgba(235, 244, 255, 0.95);
  text-shadow: 0 3px 14px rgba(7, 24, 48, 0.3);
}

.services-offer-hero .services-values {
  color: rgba(226, 238, 255, 0.96);
}

.services-offer-hero.execution-section .focus-item h3 {
  color: #f5f9ff;
}

.services-offer-hero.execution-section .focus-item p {
  color: rgba(226, 238, 255, 0.95);
}

.services-offer-hero.execution-section .focus-item:nth-child(n+2) {
  border-left-color: rgba(223, 235, 252, 0.38);
}

.services-offer-hero.execution-section .execution-section__closing {
  color: rgba(232, 242, 255, 0.95);
}

.services-offer-hero .services-process-inline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.2rem;
  margin-top: 0.7rem;
  margin-bottom: 2rem;
  padding-top: 0.1rem;
}

.services-offer-hero .services-process-inline::before {
  content: '';
  position: absolute;
  top: 1.08rem;
  left: calc(16.66% + 1.1rem);
  right: calc(16.66% + 1.1rem);
  height: 2px;
  background: linear-gradient(90deg, rgba(205, 225, 250, 0.9) 0%, rgba(205, 225, 250, 0.62) 100%);
}

.services-offer-hero .services-process-inline__item {
  position: relative;
  display: flex;
  justify-content: center;
}

.services-offer-hero .services-process-inline__node {
  width: 2.26rem;
  height: 2.26rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  line-height: 1;
  color: #f7fbff;
  background: linear-gradient(160deg, #1a4c8f 0%, #113a71 100%);
  border: 2px solid rgba(228, 239, 255, 0.95);
  box-shadow:
    0 0 0 1px rgba(176, 205, 240, 0.56),
    0 8px 20px rgba(7, 24, 46, 0.32);
}

.services-process-section {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
  border-top: 1px solid rgba(13, 46, 90, 0.08);
  border-bottom: 1px solid rgba(13, 46, 90, 0.08);
  overflow: hidden;
}

.services-process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(18, 63, 121, 0.045) 0%, rgba(18, 63, 121, 0) 48%),
    radial-gradient(circle at 88% 84%, rgba(18, 63, 121, 0.04) 0%, rgba(18, 63, 121, 0) 50%);
  pointer-events: none;
}

.services-process-section .container {
  position: relative;
  z-index: 1;
}

.services-process-head {
  max-width: 920px;
  margin: 0 auto 2.15rem;
}

.services-process-head h2 {
  margin-bottom: 0.85rem;
}

.services-process-head p {
  margin: 0;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.services-process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.3rem;
  margin-bottom: 2.65rem;
  padding-top: 2.75rem;
}

.services-process-track::before {
  content: '';
  position: absolute;
  top: 1.08rem;
  left: calc(16.66% + 0.75rem);
  right: calc(16.66% + 0.75rem);
  height: 2px;
  background: linear-gradient(90deg, rgba(17, 61, 119, 0.32) 0%, rgba(17, 61, 119, 0.12) 100%);
}

.services-process-step {
  position: relative;
  --process-node-size: 2.16rem;
  --process-node-offset: 1.64rem;
  z-index: 1;
  background: #ffffff;
  border: 1px solid rgba(17, 61, 119, 0.12);
  border-radius: 14px;
  box-shadow:
    0 12px 28px rgba(7, 24, 46, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  padding: 1.7rem 1.3rem 1.32rem;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.services-process-step::after {
  content: '';
  position: absolute;
  top: 0.8rem;
  right: 0.9rem;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(17, 61, 119, 0.09) 0%, rgba(17, 61, 119, 0) 72%);
  pointer-events: none;
}

.services-process-step::before {
  content: none;
}

.services-process-step:hover {
  transform: translateY(-1px);
  border-color: rgba(17, 61, 119, 0.2);
  box-shadow:
    0 16px 30px rgba(7, 24, 46, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.services-process-step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: calc((var(--process-node-offset) * -1) - (var(--process-node-size) / 2));
  left: 50%;
  transform: translateX(-50%);
  width: var(--process-node-size);
  height: var(--process-node-size);
  margin: 0;
  border-radius: 999px;
  background: #113d77;
  color: #f7fbff;
  font-size: 0.69rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  border: 2px solid #f4f8ff;
  box-shadow: 0 0 0 1px rgba(17, 61, 119, 0.24);
  padding: 0;
  font-family: var(--font-ui);
  line-height: 1;
}

.services-process-step h3 {
  margin: 0 0 0.66rem;
  color: #113d77;
  font-size: 1.19rem;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.services-process-step p {
  margin: 0;
  color: #324d73;
  line-height: 1.78;
}

.services-focus-section {
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

.services-focus-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #ffffff;
  pointer-events: none;
}

.services-focus-section .container {
  position: relative;
  z-index: 1;
}

.services-focus-head {
  max-width: 980px;
  margin: 0 auto 1.35rem;
}

.services-focus-head h2 {
  margin-bottom: 1rem;
}

.services-focus-head p {
  margin-bottom: 0;
  text-align: center;
}

.services-theme-list {
  border-top: 1px solid rgba(17, 61, 119, 0.18);
  border-bottom: 1px solid rgba(17, 61, 119, 0.18);
  background: #ffffff;
}

.services-theme-item {
  position: relative;
  display: block;
  border-bottom: 1px solid rgba(17, 61, 119, 0.2);
  transition: background-color 0.2s ease;
}

.services-theme-item:last-child {
  border-bottom: 0;
}

.services-theme-summary {
  list-style: none;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  align-items: start;
  padding: 1.55rem 1.2rem 1.52rem 1.2rem;
  cursor: pointer;
}

.services-theme-summary::-webkit-details-marker {
  display: none;
}

.services-theme-plus {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1.5px solid rgba(17, 61, 119, 0.68);
  color: #113d77;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 1;
  margin-top: 0.15rem;
}

.services-theme-copy {
  min-width: 0;
}

.services-theme-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.52rem;
  line-height: 1.24;
  color: #0f2f5d;
  letter-spacing: 0.01em;
  font-weight: 500;
}

.services-theme-teaser {
  margin: 0;
  font-size: 1rem;
  line-height: 1.72;
  color: #2f4a72;
  max-width: 96ch;
}

.services-theme-details {
  padding: 0 1.2rem 1.4rem 4.9rem;
}

.services-theme-details p {
  margin: 0;
  color: #1f3f6c;
  line-height: 1.72;
  font-size: 0.98rem;
  max-width: 94ch;
}

.services-theme-item[open] {
  background: rgba(17, 61, 119, 0.06);
}

.services-theme-item[open] .services-theme-summary {
  background: transparent;
}

.services-theme-item[open] .services-theme-plus {
  color: #0c2e5d;
  border-color: rgba(12, 46, 93, 0.78);
}

.services-focus-section .cta-section {
  margin-top: 2rem;
}

.team { background: white; }
.team-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); margin-top: 3rem; }
.team-member {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-soft) 100%);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.member-info h4 { margin: 0 0 0.5rem; color: var(--dark); font-size: 1.05rem; font-weight: 500; }
.member-info p { margin: 0.25rem 0; color: var(--medium); font-size: 0.95rem; line-height: 1.7; }

.analytics-page {
  background: #ffffff;
}

.analytics-hero {
  background: #ffffff;
}

.analytics-hero__lead {
  max-width: 92ch;
  margin: 0 auto;
  text-align: center;
}

.analytics-hero__lead p {
  margin: 1rem auto 0;
  color: var(--medium);
  line-height: 1.76;
}

.analytics-progress-overview {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.6rem;
  justify-items: center;
}

.analytics-progress-overview__label {
  font-family: var(--font-ui);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2f4a72;
  font-size: 0.77rem;
}

.analytics-progress-overview__bar {
  width: min(620px, 100%);
  height: 10px;
  border-radius: 999px;
  background: rgba(16, 44, 80, 0.14);
  overflow: hidden;
}

.analytics-progress-overview__fill {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #1f5fa7 0%, #113d77 100%);
  transition: width 0.25s ease;
}

.analytics-progress-overview__value {
  color: #163f73;
  font-weight: 600;
  font-family: var(--font-ui);
  font-size: 0.92rem;
}

.analytics-process {
  background: #ffffff;
}

.analytics-process-list {
  margin-top: 1.4rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.analytics-step-card {
  position: relative;
  border: 1px solid rgba(17, 61, 119, 0.18);
  border-radius: 14px;
  padding: 1.2rem 1.15rem;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  box-shadow: 0 10px 20px rgba(10, 35, 66, 0.05);
}

.analytics-step-card h3 {
  margin: 0;
  color: #113d77;
  font-size: 1.2rem;
}

.analytics-step-card__meta {
  margin-top: 0.42rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
}

.analytics-step-card__tag {
  font-size: 0.8rem;
  color: #284d79;
  letter-spacing: 0.02em;
}

.analytics-step-card__status {
  border: 1px solid rgba(17, 61, 119, 0.28);
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  font-size: 0.72rem;
  font-family: var(--font-ui);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #173e71;
  background: rgba(17, 61, 119, 0.06);
}

.analytics-step-card__description {
  margin: 0.8rem 0 0;
  color: var(--medium);
  line-height: 1.72;
}

.analytics-step-progress {
  margin-top: 0.95rem;
  display: grid;
  gap: 0.4rem;
}

.analytics-step-progress__bar {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(16, 44, 80, 0.14);
  overflow: hidden;
}

.analytics-step-progress__fill {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #2b6ab0 0%, #154682 100%);
  transition: width 0.25s ease;
}

.analytics-step-progress__value {
  margin: 0;
  color: #2f4a72;
  font-size: 0.84rem;
}

.analytics-task-list {
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.analytics-task-list li {
  margin: 0;
}

.analytics-task-list label {
  display: flex;
  align-items: start;
  gap: 0.55rem;
  color: #20446f;
  line-height: 1.56;
  font-size: 0.92rem;
}

.analytics-task-list input[type="checkbox"] {
  margin-top: 0.19rem;
  accent-color: #174a86;
}

.experts-overview-page {
  background: #ffffff;
  --experts-title-size: clamp(1.9rem, 2.9vw, 2.3rem);
}

.experts-overview-page .section {
  padding-top: 4.2rem;
  padding-bottom: 4.2rem;
}

.experts-overview-page main {
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.experts-hero {
  background: #ffffff;
}

.experts-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 2.2rem;
  align-items: stretch;
}

.experts-kicker {
  margin: 0 0 0.7rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3f5778;
  font-weight: 600;
}

.experts-hero__copy h1 {
  margin: 0;
  color: var(--dark);
  font-size: var(--experts-title-size);
  line-height: 1.2;
  font-weight: 500;
}

.experts-hero__copy p {
  margin: 0.95rem 0 0;
  color: var(--medium);
  font-size: 1rem;
  line-height: 1.72;
  max-width: 70ch;
}

.experts-hero__actions {
  margin-top: 3.1rem;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.experts-keyfacts {
  --experts-headline-offset: 2.05rem;
  align-self: stretch;
  margin-top: var(--experts-headline-offset);
  height: calc(100% - var(--experts-headline-offset));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
  border: 1px solid rgba(16, 44, 80, 0.14);
  border-radius: 12px;
  padding: 0.35rem 1rem;
  box-shadow: 0 10px 22px rgba(12, 34, 68, 0.06);
  border-top: 1px solid rgba(16, 44, 80, 0.16);
  border-bottom: 1px solid rgba(16, 44, 80, 0.16);
}

.experts-keyfacts__item {
  padding: 1rem 0;
  display: grid;
  gap: 0.3rem;
}

.experts-keyfacts__item:last-child {
  border-bottom: 0;
}

.experts-keyfacts__item strong {
  color: #123662;
  font-size: 1.02rem;
  font-weight: 600;
}

.experts-keyfacts__item span {
  color: var(--medium);
  line-height: 1.62;
  font-size: 0.93rem;
}

.experts-team-section,
.experts-capabilities {
  background: #ffffff;
}

.experts-theme-list .services-theme-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 1.2rem 0;
}

.experts-theme-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(18, 62, 118, 0.22);
  background: rgba(18, 62, 118, 0.04);
  display: grid;
  place-items: center;
  margin-top: 0;
}

.experts-theme-icon svg {
  width: 30px;
  height: 30px;
  stroke: #204b82;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.experts-theme-copy h3 {
  margin-top: 0;
}

.experts-theme-copy p {
  margin-bottom: 0;
}

.experts-about {
  background: #ffffff;
}

.experts-copy-block {
  max-width: none;
  width: 100%;
  text-align: left;
  display: block !important;
}

.experts-copy-flow {
  width: 100%;
  max-width: none;
  margin: 0;
  text-align: left;
  display: block !important;
}

.experts-copy-block h2 {
  margin: 0;
  color: #123662;
  text-align: left;
  font-size: var(--experts-title-size);
  line-height: 1.2;
}

.experts-about .experts-copy-flow > p {
  margin: 0.85rem 0 0;
  color: var(--medium);
  line-height: 1.78;
  max-width: none !important;
  width: 100%;
  text-align: justify;
  text-justify: inter-word;
}

.experts-about .experts-copy-flow > p.experts-inline-jump {
  text-align: left;
}

.experts-about.section > .container.experts-copy-block > .experts-copy-flow > p {
  margin-left: 0;
  margin-right: 0;
}

.experts-about.section > .container.experts-copy-block > h2,
.experts-about.section > .container.experts-copy-block > .experts-copy-flow > p {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.experts-about.section > .container.experts-copy-block,
.experts-about.section > .container.experts-copy-block > .experts-copy-flow {
  justify-self: start !important;
  align-self: start !important;
}

.experts-inline-jump {
  margin-top: 0.55rem;
  font-size: 0.9rem;
  color: #4a5f7f;
}

.experts-inline-jump a {
  color: #254d84;
  text-decoration: none;
  border-bottom: 1px solid rgba(37, 77, 132, 0.34);
}

.experts-inline-jump a:hover {
  border-bottom-color: rgba(37, 77, 132, 0.62);
}

.experts-vision-mission {
  background: #ffffff;
}

.experts-capabilities .services-focus-head {
  max-width: none;
  width: 100%;
  margin: 0 0 1.25rem;
}

.experts-capabilities .services-focus-head h2,
.experts-capabilities .services-focus-head p {
  text-align: left !important;
}

.experts-capabilities .services-focus-head h2,
.experts-purpose-head h2 {
  font-size: var(--experts-title-size);
  line-height: 1.2;
}

.experts-capabilities .services-focus-head p {
  max-width: none;
  width: 100%;
}

.experts-purpose-head {
  max-width: none;
  width: 100%;
  margin: 0 0 1.25rem;
}

.experts-purpose-head h2 {
  margin-bottom: 0.8rem;
}

.experts-purpose-head p {
  margin: 0;
  text-align: left !important;
  max-width: none;
  width: 100%;
}

.experts-purpose-head h2 {
  text-align: left !important;
}

.experts-purpose-list {
  border-top: 1px solid rgba(17, 61, 119, 0.18);
  border-bottom: 1px solid rgba(17, 61, 119, 0.18);
}

.experts-purpose-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(17, 61, 119, 0.15);
}

.experts-purpose-item:last-child {
  border-bottom: 0;
}

.experts-purpose-item h3 {
  margin: 0;
  color: #123662;
  font-size: 1.14rem;
}

.experts-purpose-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(18, 62, 118, 0.22);
  background: rgba(18, 62, 118, 0.04);
  display: grid;
  place-items: center;
  margin-top: 0;
}

.experts-purpose-icon svg {
  width: 30px;
  height: 30px;
  stroke: #204b82;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.experts-purpose-item p {
  margin: 0.5rem 0 0;
  color: var(--medium);
  max-width: 80ch;
  line-height: 1.72;
}

.experts-grid {
  margin-top: 2.2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.expert-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  border: 1px solid rgba(10, 35, 66, 0.1);
  border-radius: 14px;
  box-shadow: var(--card-shadow);
  padding: 1.15rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.95rem;
  align-items: start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.expert-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--card-shadow-hover);
}

.expert-avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0d3f82 0%, #255da5 100%);
  color: #ffffff;
  font-family: var(--font-ui);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.expert-card__body h3 {
  margin: 0;
  color: #112c50;
  font-size: 1.16rem;
  line-height: 1.25;
}

.expert-role {
  margin: 0.35rem 0 0;
  color: #31557f;
  font-size: 0.84rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-family: var(--font-ui);
  font-weight: 500;
}

.expert-card__body > p {
  margin: 0.62rem 0 0;
  color: var(--medium);
  font-size: 0.95rem;
  line-height: 1.68;
}

.expert-tags {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.expert-tags li {
  padding: 0.32rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(18, 62, 118, 0.2);
  color: #234b7f;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  background: rgba(20, 76, 148, 0.05);
}

.experts-cta {
  background: #ffffff;
}

.experts-cta__inner {
  max-width: 920px;
  text-align: left;
}

.experts-cta h2 {
  margin: 0;
  color: var(--dark);
}

.experts-cta p {
  margin: 0.9rem 0 0;
  color: var(--medium);
  max-width: 74ch;
}

.experts-cta .btn {
  margin-top: 1.3rem;
  background: #113d77;
  color: #ffffff;
  border-color: #113d77;
}

.experts-cta .btn:hover {
  background: #0d315f;
}

.references { background: var(--bg); }
.references-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); margin-top: 3rem; }
.reference-card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-soft) 100%);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.reference-card h3 { margin: 0 0 0.95rem; color: var(--dark); font-size: 1.16rem; font-weight: 500; }
.reference-card p { margin: 0; color: var(--medium); font-size: 0.98rem; line-height: 1.75; }

.insights { background: white; }
.insights-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  row-gap: 0.8rem;
  margin-bottom: 0.6rem;
}

.insights-head > div {
  max-width: 760px;
}

.insights-head h2 {
  margin: 0;
  text-align: left;
}

.insights-head p {
  margin: 0.45rem 0 0;
  text-align: left;
  max-width: none;
}

.insights-all-link {
  white-space: nowrap;
}

.insights-footer-action {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
}

.insights-rotation-hint {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.93rem;
}

.insights-grid { display: grid; gap: 2rem; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 3rem; }
.insight-card {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 380px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.insight-card.is-hidden {
  display: none !important;
}

.insight-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 24, 48, 0.83) 0%, rgba(8, 49, 98, 0.56) 100%);
  z-index: 1;
}

.insight-card__content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.insight-card__meta {
  margin: 0 0 0.55rem;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insight-card h3 { 
  margin: 0 0 0.95rem; 
  color: #ffffff; 
  font-size: 1.24rem; 
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.insight-card p { 
  margin: 0 0 1rem; 
  color: rgba(255, 255, 255, 0.92); 
  font-size: 0.99rem; 
  line-height: 1.75;
}

.read-more { 
  color: rgba(255, 255, 255, 0.95); 
  text-decoration: none; 
  font-weight: 500; 
  font-family: var(--font-ui); 
  letter-spacing: 0.03em;
  display: inline-block;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  transition: all 0.2s;
}

.read-more:hover { 
  color: #ffffff;
  border-bottom-color: #ffffff;
}

.insight-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--card-shadow-hover);
}

.insights-rotation-dots {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.insights-rotation-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 26, 40, 0.26);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.insights-rotation-dot.is-active {
  background: #113d77;
  transform: scale(1.18);
}

.insights-rotation-dot:focus-visible {
  outline: 2px solid rgba(17, 61, 119, 0.55);
  outline-offset: 2px;
}

@media (max-width: 1024px) {
  .insights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experts-hero__layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 900px) {
  .insights-footer-action {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .insights-grid {
    grid-template-columns: 1fr;
  }

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

  .experts-keyfacts__item {
    padding: 0.85rem 0;
  }

  .expert-card {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .expert-avatar {
    width: 40px;
    height: 40px;
  }
}

.insight-article-page {
  background: #FFFFFF;
}

.insight-hero {
  position: relative;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
}

.insight-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(8, 16, 28, 0.86) 12%, rgba(15, 26, 40, 0.62) 72%, rgba(15, 26, 40, 0.42) 100%);
}

.insight-hero__content {
  position: relative;
  z-index: 1;
  color: #FFFFFF;
  padding-bottom: 3.2rem;
}

.insight-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.insight-hero__content h1 {
  margin: 0.65rem 0 0;
  color: #FFFFFF;
  font-size: clamp(2.2rem, 5vw, 3.3rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.12;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.insight-subtitle {
  margin: 0.95rem 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.07rem;
  max-width: 740px;
  line-height: 1.75;
}

.insight-meta {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.insight-meta span {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 0.36rem 0.72rem;
  backdrop-filter: blur(2px);
}

.insight-article-section {
  padding-top: 3.6rem;
}

.insight-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(260px, 1fr);
  gap: 2rem;
  align-items: start;
}

.insight-article {
  display: grid;
  gap: 1.35rem;
}

.insight-intro-card,
.insight-block,
.insight-aside-card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-soft) 100%);
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  border-radius: 12px;
}

.insight-intro-card,
.insight-block {
  padding: 1.7rem 1.8rem;
}

.insight-intro-card h2,
.insight-block h2 {
  margin: 0 0 0.95rem;
  color: var(--dark);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.insight-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.insight-highlight {
  padding: 1rem;
  border-radius: 10px;
  background: rgba(15, 26, 40, 0.02);
  border: 1px solid rgba(15, 26, 40, 0.08);
}

.insight-highlight h3 {
  margin: 0 0 0.55rem;
  color: var(--dark);
  font-size: 1.02rem;
  font-weight: 500;
}

.insight-highlight p,
.insight-intro-card p,
.insight-block p,
.insight-list li,
.insight-steps li,
.insight-aside-card p {
  margin: 0;
  color: var(--medium);
  font-size: 0.98rem;
  line-height: 1.76;
}

.insight-list,
.insight-steps {
  margin: 0.8rem 0 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.45rem;
}

.insight-table-wrap {
  overflow-x: auto;
}

.insight-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.insight-table th,
.insight-table td {
  text-align: left;
  padding: 0.85rem 0.9rem;
  border-bottom: 1px solid rgba(15, 26, 40, 0.1);
}

.insight-table th {
  color: var(--dark);
  font-weight: 500;
  background: rgba(15, 26, 40, 0.03);
}

.insight-table td {
  color: var(--medium);
}

.insight-cta-block .btn {
  margin-top: 1rem;
}

.insight-aside {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 1rem;
}

.insight-aside-card {
  padding: 1.2rem 1.2rem 1.1rem;
}

.insight-aside-card h3 {
  margin: 0 0 0.8rem;
  color: var(--dark);
  font-size: 1rem;
  font-weight: 500;
}

.insight-aside-card nav {
  display: grid;
  gap: 0.55rem;
}

.insight-aside-card nav a {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.94rem;
  border-left: 2px solid rgba(15, 26, 40, 0.12);
  padding-left: 0.6rem;
  transition: border-color 0.2s, opacity 0.2s;
}

.insight-aside-card nav a:hover {
  opacity: 0.82;
  border-left-color: rgba(15, 26, 40, 0.4);
}

.insight-v2-page {
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 22%);
}

.insight-v2-container {
  max-width: 920px;
}

.insight-v2-head {
  position: relative;
  margin: 0;
  padding-top: 5.4rem;
  padding-bottom: 4.8rem;
  overflow: hidden;
}

.insight-v2-head__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.insight-v2-head::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(3, 8, 15, 0.95) 8%, rgba(6, 12, 22, 0.9) 52%, rgba(10, 18, 30, 0.84) 100%);
}

.insight-v2-head::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 34% 48%, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0) 62%);
}

.insight-v2-head .insight-v2-container {
  position: relative;
  z-index: 1;
  max-width: 860px;
  background: rgba(12, 24, 40, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1.6rem 1.7rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(5px);
  text-align: center;
}

.insight-v2-head,
.insight-v2-head p,
.insight-v2-head h1,
.insight-v2-head h2,
.insight-v2-head h3,
.insight-v2-head span,
.insight-v2-head a {
  color: #FFFFFF;
}

.insight-v2-backlink {
  margin: 0 0 0.8rem;
  font-family: var(--font-ui);
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
  width: 100%;
  text-align: center;
}

.insight-v2-backlink a {
  color: #FFFFFF !important;
  text-decoration: none;
}

.insight-v2-head .insight-v2-backlink,
.insight-v2-head .insight-v2-backlink a,
.insight-v2-head .insight-v2-subline {
  color: #FFFFFF !important;
}

.insight-v2-backlink a:hover {
  color: #FFFFFF;
  opacity: 0.92;
}

.insight-v2-head h1 {
  margin: 0;
  color: #FFFFFF;
  font-size: clamp(2.2rem, 4.8vw, 3.15rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.36);
  width: 100%;
  text-align: center;
}

.insight-v2-subline {
  margin: 0.9rem auto 0;
  color: #FFFFFF !important;
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.8;
  max-width: 72ch;
  text-shadow: 0 5px 16px rgba(0, 0, 0, 0.34);
  width: 100%;
  text-align: center;
}

.insight-v2-meta {
  margin-top: 1.3rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.insight-v2-actions {
  margin-top: 1.15rem;
  display: flex;
  justify-content: center;
}

.insight-v2-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.36);
}

.insight-v2-meta-item svg {
  width: 18px;
  height: 18px;
  fill: rgba(255, 255, 255, 0.98);
  flex: 0 0 auto;
}

.insight-v2-head .btn-primary {
  background: rgba(3, 8, 15, 0.72);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.insight-v2-head .btn-primary:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
}

.insight-v2-head .btn-secondary {
  background: rgba(3, 8, 15, 0.58);
  border-color: rgba(255, 255, 255, 0.78);
  color: #FFFFFF;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.insight-v2-head .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

.insight-v2-hero-media {
  display: none;
}

.insight-v2-hero-media img {
  width: 100%;
  display: block;
  max-height: 460px;
  object-fit: cover;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

.insight-v2-content {
  padding-top: 2.6rem;
}

.insight-v2-content .insight-v2-container,
.insight-v2-bottom .insight-v2-container {
  background: #ffffff;
  border: 1px solid rgba(10, 35, 66, 0.08);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(8, 31, 60, 0.08);
  padding: 2rem;
}

.insight-v2-article {
  display: grid;
  gap: 1.35rem;
}

.insight-v2-article h2 {
  margin: 0;
  color: var(--dark);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.25;
  text-align: left;
}

.insight-v2-article h3 {
  margin: 0.3rem 0 0;
  color: var(--dark);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
}

.insight-v2-article p,
.insight-v2-article li {
  margin: 0;
  color: var(--medium);
  font-size: 1rem;
  line-height: 1.85;
}

.insight-v2-article ol {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.5rem;
}

.insight-v2-quickscan {
  background: #f7f9fc;
  border: 1px solid rgba(17, 61, 119, 0.14);
  border-radius: 12px;
  padding: 1.05rem 1.1rem 1.1rem;
  display: grid;
  gap: 0.7rem;
}

.insight-v2-quickscan h3 {
  margin: 0;
  color: #113d77;
  font-size: 1.04rem;
  font-weight: 600;
  text-align: left;
}

.insight-v2-quickscan p {
  margin: 0;
}

.insight-v2-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(15, 26, 40, 0.1);
  border-radius: 10px;
}

.insight-v2-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.insight-v2-table th,
.insight-v2-table td {
  text-align: left;
  padding: 0.85rem 0.9rem;
  border-bottom: 1px solid rgba(15, 26, 40, 0.08);
}

.insight-v2-table th {
  color: var(--dark);
  font-weight: 500;
  background: rgba(15, 26, 40, 0.03);
}

.insight-v2-table td {
  color: var(--medium);
}

.insight-v2-download-list {
  display: grid;
  gap: 0.75rem;
}

.insight-v2-download-item {
  display: block;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(15, 26, 40, 0.12);
  border-radius: 10px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-soft) 100%);
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.insight-v2-download-item:hover {
  border-color: rgba(15, 26, 40, 0.24);
  box-shadow: var(--card-shadow);
  transform: translateY(-1px);
}

.insight-v2-download-title {
  display: block;
  color: var(--dark);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
}

.insight-v2-download-meta {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.insight-v2-download-empty {
  padding: 1rem;
  border: 1px dashed rgba(15, 26, 40, 0.22);
  border-radius: 10px;
  background: rgba(15, 26, 40, 0.02);
}

.insight-v2-download-empty p + p {
  margin-top: 0.45rem;
}

.insight-v2-bottom {
  padding-top: 1rem;
}

.insight-v2-cavendris-card {
  background: linear-gradient(135deg, rgba(8, 46, 96, 0.05) 0%, rgba(8, 46, 96, 0.015) 100%);
  border: 1px solid rgba(8, 46, 96, 0.18);
  border-radius: 14px;
  padding: 1.6rem 1.7rem;
}

.insight-v2-cavendris-card h2 {
  margin: 0 0 0.75rem;
  color: var(--dark);
  font-size: 1.42rem;
  font-weight: 500;
}

.insight-v2-cavendris-card p {
  margin: 0;
  color: var(--medium);
  font-size: 1rem;
  line-height: 1.8;
}

.insight-v2-cavendris-card .btn {
  margin-top: 1rem;
}

.insight-v2-page .insight-v2-content,
.insight-v2-page .insight-v2-content .insight-v2-container {
  background: #ffffff;
}

.insight-v2-page .insight-v2-content .insight-v2-container {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.insight-v2-page .insight-v2-bottom {
  position: relative;
  padding-top: 2.2rem;
  margin-top: 1.1rem;
}

.insight-v2-page .insight-v2-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(920px, calc(100% - 2rem));
  height: 1px;
  background: linear-gradient(90deg, rgba(17, 61, 119, 0.1) 0%, rgba(17, 61, 119, 0.28) 50%, rgba(17, 61, 119, 0.1) 100%);
}

.insight-v2-page .insight-v2-bottom .insight-v2-container {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.insight-v2-page .insight-v2-cavendris-card {
  background: #f7f9fc;
  border: 1px solid rgba(17, 61, 119, 0.16);
  border-radius: 12px;
  padding: 1.45rem 1.55rem 1.5rem;
}

.insight-v2-page .insight-v2-cavendris-card h2 {
  color: #113d77;
  margin-bottom: 0.65rem;
}

.insight-v2-page .insight-v2-cavendris-card p {
  color: #2f4a72;
}

.insights-overview-page {
  background: #FFFFFF;
}

.insights-overview-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.insights-overview-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-soft) 100%);
  min-height: 250px;
  position: relative;
}

.insights-overview-card--feature {
  grid-column: span 2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 330px;
}

.insights-overview-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 26, 40, 0.78) 0%, rgba(15, 26, 40, 0.56) 100%);
}

.insights-overview-card__content {
  position: relative;
  z-index: 1;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  height: 100%;
}

.insights-overview-card__content h3 {
  margin: 0;
  font-size: 1.24rem;
  font-weight: 500;
  line-height: 1.3;
}

.insights-overview-card__content p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.75;
}

.insights-overview-card--feature .insights-overview-card__content h3,
.insights-overview-card--feature .insights-overview-card__content p,
.insights-overview-card--feature .insights-overview-card__kicker {
  color: #FFFFFF;
}

.insights-overview-card__content--plain h3 {
  color: var(--dark);
}

.insights-overview-card__content--plain p,
.insights-overview-card__content--plain .insights-overview-card__kicker {
  color: var(--medium);
}

.insights-overview-card__kicker {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  opacity: 0.92;
}

.insights-overview-card__actions {
  margin-top: auto;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.insights-overview-card--ai {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.insights-overview-card--ai .insights-overview-card__overlay {
  background: linear-gradient(145deg, rgba(7, 22, 44, 0.86) 0%, rgba(7, 22, 44, 0.64) 58%, rgba(6, 18, 35, 0.72) 100%);
}

.insights-overview-card--ai .insights-overview-card__content h3,
.insights-overview-card--ai .insights-overview-card__content p,
.insights-overview-card--ai .insights-overview-card__kicker {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(3, 10, 22, 0.35);
}

.insights-overview-card--ai .insights-overview-card__kicker {
  opacity: 0.98;
}

.insights-overview-card--ai .btn-primary {
  background: #ffffff;
  border-color: rgba(224, 233, 247, 0.96);
  color: #0f315f;
  box-shadow: 0 8px 20px rgba(5, 14, 28, 0.24);
}

.insights-overview-card--ai .btn-primary:hover {
  background: #f1f6ff;
  color: #0b2a54;
}

.insights-legacy-page .global-breadcrumb-bar {
  border-top: 1px solid rgba(10, 35, 66, 0.08);
  border-bottom: 1px solid rgba(15, 26, 40, 0.12);
}

.insights-legacy-page .insights-overview-page {
  background: #FFFFFF;
}

.insights-legacy-page .insights-overview-grid {
  gap: 1.1rem;
}

.insights-legacy-page .btn {
  border-radius: 8px;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0.03em;
  padding: 0.875rem 1.5rem;
}

.insights-legacy-page .btn-primary {
  background: var(--accent-strong);
  border-color: transparent;
}

.insights-legacy-page .btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.85);
}

.insights-legacy-page .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.research-library-page {
  background:
    radial-gradient(circle at 10% 0%, rgba(0, 138, 255, 0.08) 0%, rgba(0, 138, 255, 0) 42%),
    radial-gradient(circle at 92% 8%, rgba(12, 26, 58, 0.12) 0%, rgba(12, 26, 58, 0) 38%),
    #f7f9fc;
}

.research-library-hero {
  padding-top: 2.4rem;
  padding-bottom: 2.1rem;
}

.research-library-eyebrow {
  margin: 0;
  font-family: var(--font-ui);
  color: #0054a5;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.76rem;
  font-weight: 600;
}

.research-library-hero h1 {
  margin: 0.55rem 0 0;
  max-width: 900px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(2.1rem, 4.8vw, 3.2rem);
  line-height: 1.16;
  color: #111a2f;
}

.research-library-intro {
  margin: 0.9rem 0 0;
  max-width: 900px;
  color: #2f3f5b;
  font-size: 1.04rem;
  line-height: 1.72;
}

.research-feature {
  position: relative;
  margin-top: 1.5rem;
  min-height: 430px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(10, 28, 68, 0.16);
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 36px rgba(8, 17, 36, 0.18);
}

.research-feature__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(108deg, rgba(5, 16, 34, 0.9) 0%, rgba(6, 26, 52, 0.62) 58%, rgba(6, 26, 52, 0.32) 100%);
}

.research-feature__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.research-feature__kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-ui);
  font-size: 0.78rem;
}

.research-feature__content h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.7rem, 3.1vw, 2.4rem);
  line-height: 1.2;
  font-weight: 600;
}

.research-feature__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  line-height: 1.7;
  font-size: 1rem;
}

.research-feature__stamp {
  margin-top: 0.2rem;
  display: inline-flex;
  width: fit-content;
  padding: 0.34rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.research-feature__actions {
  margin-top: 0.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.research-feature__pager {
  margin-top: 0.9rem;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}

.research-feature__pager span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(12, 23, 47, 0.23);
}

.research-feature__pager span.active {
  width: 24px;
  background: #0f2f6e;
}

.research-library-listing {
  padding-top: 0.3rem;
}

.research-listing-head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: #0f1d37;
}

.research-controls {
  margin-top: 1rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  padding: 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(11, 28, 64, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 252, 255, 0.94) 100%);
}

.research-search,
.research-filter-chip {
  min-height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(11, 28, 64, 0.18);
  background: #ffffff;
  font-family: var(--font-ui);
  color: #1b2b49;
  font-size: 0.86rem;
}

.research-search {
  min-width: 240px;
  display: inline-flex;
  align-items: center;
  padding: 0 1rem;
}

.research-filter-chip {
  padding: 0 1rem;
  cursor: pointer;
}

.research-grid {
  margin-top: 1.1rem;
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.research-card {
  border-radius: 12px;
  border: 1px solid rgba(10, 27, 58, 0.12);
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(10, 26, 54, 0.08);
  display: flex;
  flex-direction: column;
}

.research-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.research-card__body {
  padding: 1rem 1.05rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  height: 100%;
}

.research-card__meta {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #2e4e7a;
}

.research-card__body h3 {
  margin: 0;
  color: #101c33;
  font-size: 1.17rem;
  line-height: 1.33;
  font-weight: 500;
}

.research-card__body > p {
  margin: 0;
  color: #364766;
  font-size: 0.97rem;
  line-height: 1.66;
}

.research-card__actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(11, 28, 64, 0.1);
}

.research-card__actions a {
  color: #0f2f6e;
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 0.83rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.research-card__actions a:hover {
  text-decoration: underline;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1000px) {
  .research-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .research-library-hero {
    padding-top: 1.6rem;
  }

  .research-feature {
    min-height: 350px;
  }

  .research-feature__content {
    padding: 1.2rem;
  }

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

footer {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  color: #ffffff;
  padding: 2.6rem 1rem 1rem;
  font-family: var(--font-ui);
  margin-top: clamp(3rem, 4vw, 5rem);
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 1.7rem;
  align-items: start;
}
.footer-section h4 {
  margin: 0 0 0.9rem;
  font-size: 0.98rem;
  font-weight: 400;
  color: rgba(255,255,255,0.98);
  letter-spacing: 0.06em;
  line-height: 1.35;
  display: inline-block;
  padding-bottom: 0.28rem;
  border-bottom: 1px solid rgba(255,255,255,.45);
}
.footer-section p {
  margin: 0;
  color: rgba(255,255,255,0.94);
  line-height: 1.75;
  font-size: 0.98rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.footer-section a {
  color: rgba(255,255,255,0.98);
  text-decoration: none;
  transition: opacity 0.2s;
  font-size: 0.98rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.footer-section a:hover { opacity: 0.88; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 0.95rem;
  text-align: center;
  color: rgba(255,255,255,0.9);
  opacity: 1;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.footer-bottom p {
  margin: 0;
  color: inherit;
}

.contact-page .container > p { max-width: 820px; }

.contact-page,
.contact-page .container {
  background: #ffffff;
}

.contact-panel {
  background: #FFFFFF;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding: 2rem;
  max-width: 920px;
  margin: 0 auto;
}

.contact-panel h3 {
  margin: 0 0 1.5rem;
  color: var(--dark);
  font-size: 1.54rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.form-intro { 
  margin: 0 0 2rem; 
  color: var(--medium); 
  font-size: 1.02rem; 
  line-height: 1.8;
  font-weight: 300;
}

.form-status {
  display: none;
  border-radius: 10px;
  padding: 1rem 1.1rem;
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.6;
}

.form-status.is-success {
  display: block;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #065f46;
}

.form-status.is-error {
  display: block;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.3);
  color: #7f1d1d;
}

.contact-form { display: grid; gap: 1.5rem; }

.form-row {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
}

.form-group { display: grid; gap: 0.55rem; }

.form-group label {
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 500;
  letter-spacing: 0.01em;
  display: block;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(15, 26, 40, 0.15);
  border-radius: 10px;
  font: inherit;
  color: var(--primary);
  background: #FFFFFF;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(15, 26, 40, 0.28);
  box-shadow: 0 0 0 4px rgba(15, 26, 40, 0.06);
}

.form-group input.is-invalid,
.form-group select.is-invalid,
.form-group textarea.is-invalid {
  border-color: rgba(220, 38, 38, 0.5);
  background: rgba(220, 38, 38, 0.04);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}

.field-error {
  color: #b91c1c;
  font-size: 0.82rem;
  line-height: 1.5;
}

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

.form-note {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  font-weight: 300;
}

/* Simple Math CAPTCHA */
.captcha-group {
  display: grid;
  gap: 0.55rem;
}

.captcha-group label {
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 500;
  letter-spacing: 0.01em;
  display: block;
}

.captcha-challenge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: linear-gradient(135deg, rgba(15, 26, 40, 0.02) 0%, rgba(15, 26, 40, 0.01) 100%);
  border: 1px solid rgba(15, 26, 40, 0.1);
  border-radius: 10px;
  margin-bottom: 0.3rem;
}

.captcha-prompt {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  font-family: monospace;
  letter-spacing: 0.05em;
}

.captcha-group #captcha-answer {
  padding: 0.85rem 1rem;
  max-width: 200px;
}

.captcha-group #captcha-answer.is-invalid {
  border-color: rgba(220, 38, 38, 0.5);
  background: rgba(220, 38, 38, 0.04);
}


.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--medium);
  line-height: 1.7;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  transition: background-color 0.2s;
  margin-bottom: 0.5rem;
}

.form-checkbox:not(.is-invalid):hover {
  background-color: rgba(15, 26, 40, 0.02);
}

.form-checkbox.is-invalid {
  color: #7f1d1d;
  background: rgba(220, 38, 38, 0.06);
  border-radius: 8px;
}

.form-checkbox input { 
  margin-top: 0.3rem;
  width: 20px;
  height: 20px;
  min-width: 20px;
  cursor: pointer;
}

.form-checkbox a { 
  color: var(--primary);
  text-decoration: underline;
  transition: opacity 0.2s;
}

.form-checkbox a:hover {
  opacity: 0.75;
}

.field-error-inline {
  margin-top: -0.25rem;
}

.form-actions { 
  margin-top: 1.5rem;
  padding-top: 1rem;
  display: flex;
  gap: 1rem;
}

.form-actions .btn {
  flex: 1;
  min-height: 48px;
}

.form-actions .btn:disabled {
  opacity: 0.68;
  cursor: not-allowed;
  transform: none;
}

.form-footnote {
  margin: 1.8rem 0 0;
  color: var(--medium);
  font-size: 0.93rem;
  line-height: 1.7;
  font-weight: 300;
}

.form-footnote a { 
  color: var(--primary);
  text-decoration: underline;
}

.form-footnote {
  margin: 1.2rem 0 0;
  color: var(--medium);
  font-size: 0.92rem;
  line-height: 1.75;
}

.form-footnote a { color: var(--primary); }

@media (max-width: 768px) {
  .nav { flex-wrap: wrap; gap: 1rem; }
  .nav-logo { margin-left: 0; }
  .lang-switcher {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
  }
  .logo-img { height: 84px; }
  .experts-purpose-item {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  .experts-theme-list .services-theme-item {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  .experts-purpose-icon {
    width: 42px;
    height: 42px;
  }
  .experts-theme-icon {
    width: 42px;
    height: 42px;
  }
  .experts-purpose-icon svg {
    width: 26px;
    height: 26px;
  }
  .experts-theme-icon svg {
    width: 26px;
    height: 26px;
  }
  .hero { padding: 4rem var(--layout-gutter); }
  .services-offer-hero { padding: 4rem var(--layout-gutter); }
  .hero-ctas { flex-direction: column; align-items: center; }
  .section { padding: 3rem var(--layout-gutter); }
  .home-page main > .section {
    padding-top: 3.8rem;
    padding-bottom: 3.8rem;
  }
  .section h2 { font-size: 2rem; }
  .expertise-grid, .customer-focus, .team-grid, .references-grid, .insights-grid { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .insight-hero { min-height: 360px; }
  .insight-hero__content { padding-bottom: 2.2rem; }
  .insight-layout { grid-template-columns: 1fr; gap: 1.2rem; }
  .insight-highlight-grid { grid-template-columns: 1fr; }
  .insight-intro-card,
  .insight-block { padding: 1.3rem 1.2rem; }
  .insight-aside { position: static; }
  .insight-v2-meta { gap: 0.7rem; }
  .insight-v2-actions .btn { width: 100%; text-align: center; }
  .insight-v2-head { padding-top: 4.4rem; padding-bottom: 3.8rem; }
  .insight-v2-head .insight-v2-container { padding: 1rem 0.95rem; }
  .insight-v2-head h1 { font-size: clamp(1.9rem, 8vw, 2.45rem); }
  .insight-v2-subline { font-size: 1rem; }
  .insights-overview-grid { grid-template-columns: 1fr; }
  .insights-overview-card--feature { grid-column: span 1; min-height: 280px; }
  .strategy-mosaic {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }
  .strategy-intro-tile {
    grid-column: span 1;
    padding: 1.5rem 1.05rem 1.35rem;
    text-align: left;
  }
  .strategy-intro-tile h2 {
    font-size: 1.42rem;
    margin-bottom: 0.9rem;
  }
  .strategy-intro-tile p {
    margin: 0;
    max-width: none;
    font-size: 0.98rem;
    text-align: justify;
  }
  .strategy-tile,
  .strategy-tile--wide,
  .strategy-tile--narrow {
    grid-column: span 1;
    min-height: 220px;
  }
  .strategy-editorial {
    margin-bottom: 1.7rem;
  }
  .strategy-editorial-intro {
    padding: 1.25rem 1rem 1.18rem;
    margin-bottom: 0.55rem;
  }
  .strategy-editorial-intro h2 {
    font-size: 1.95rem;
    margin-bottom: 0.72rem;
  }
  .strategy-editorial-intro p {
    font-size: 0.95rem;
    line-height: 1.66;
  }
  .strategy-editorial-item {
    grid-template-columns: 2.65rem minmax(0, 1fr);
    gap: 0.88rem;
    align-items: start;
    padding: 1rem 0.15rem;
  }
  .strategy-editorial-item__icon {
    width: 2.35rem;
    height: 2.35rem;
    margin-top: 0.02rem;
  }
  .strategy-editorial-item__icon svg {
    width: 1.12rem;
    height: 1.12rem;
  }
  .strategy-editorial-item__body h3 {
    font-size: 1.08rem;
    margin-bottom: 0.32rem;
  }
  .strategy-editorial-item__body p {
    font-size: 0.93rem;
    line-height: 1.6;
  }
  .services-focus-section::before {
    background: #ffffff;
  }
  .services-focus-head {
    margin-bottom: 1rem;
  }
  .services-offer-hero .services-process-inline {
    gap: 1.25rem;
    margin-top: 0.45rem;
    margin-bottom: 1.6rem;
  }
  .services-offer-hero .services-process-inline::before {
    left: calc(16.66% + 0.62rem);
    right: calc(16.66% + 0.62rem);
  }
  .services-offer-hero .services-process-inline__node {
    width: 2.02rem;
    height: 2.02rem;
    font-size: 0.62rem;
  }
  .services-process-head {
    margin-bottom: 1.1rem;
  }
  .services-process-track {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    margin-top: 1.35rem;
    padding-top: 0;
  }
  .services-process-track::before {
    display: block;
    top: 0.4rem;
    bottom: 0.4rem;
    left: 1.1rem;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(17, 61, 119, 0.32) 0%, rgba(17, 61, 119, 0.08) 100%);
  }
  .services-process-step {
    border-radius: 12px;
    border-left: 2px solid rgba(17, 61, 119, 0.34);
    padding: 1.24rem 0.98rem 1.05rem 2.2rem;
    --process-node-size: 1.92rem;
    --process-node-offset: 1.02rem;
  }
  .services-process-step::before {
    content: none;
  }
  .services-process-step__number {
    top: 1.08rem;
    left: 1.1rem;
    transform: translateX(-50%);
    font-size: 0.6rem;
    letter-spacing: 0.06em;
  }
  .services-process-step h3 {
    font-size: 1.04rem;
    margin-bottom: 0.5rem;
  }
  .services-theme-item {
    padding: 0;
  }
  .services-theme-summary {
    gap: 0.85rem;
    padding: 1.1rem 0.8rem 1.08rem 0.7rem;
  }
  .services-theme-plus {
    width: 2rem;
    height: 2rem;
    font-size: 1.3rem;
    margin-top: 0.05rem;
  }
  .services-theme-item h3 {
    font-size: 1.16rem;
    margin-bottom: 0.45rem;
  }
  .services-theme-teaser {
    font-size: 0.95rem;
    line-height: 1.66;
  }
  .services-theme-details {
    padding: 0 0.8rem 1rem 3.55rem;
  }
  .services-theme-details p {
    font-size: 0.92rem;
    line-height: 1.62;
  }
  .execution-section .focus-item:nth-child(n+2) {
    border-left: 0;
    padding-left: 0;
  }
  .execution-section .focus-item p {
    text-align: left;
    hyphens: none;
  }
}

.impress-info {background: #ffffff; display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); margin-top: 2.4rem; margin-bottom: 2.6rem; }
.impress-item {
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(10, 35, 66, 0.12);
  box-shadow: 0 10px 24px rgba(12, 33, 66, 0.08);
  text-align: left;
  max-width: 920px;
  margin: 0 auto;
}

.legal-page .impress-item {
  border: 0;
}
.impress-item h3,
.impress-item h4 {
  margin: 0 0 0.9rem;
  color: var(--dark);
  font-size: 1.18rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.35;
}
.impress-item p { margin: 0 0 0.95rem; color: var(--medium); font-size: 0.99rem; line-height: 1.8; }
.impress-item a { color: var(--primary); text-decoration: none; }
.impress-item a:hover { text-decoration: underline; }

.impress-item ul { margin: 0 0 1rem; padding-left: 1.15rem; }
.impress-item li { font-size: 0.99rem; line-height: 1.8; }

.legal-page,
.legal-page body,
.legal-page main,
.legal-page main .section,
.legal-page main .container {
  background: #ffffff;
}

.privacy-page .container > p {
  max-width: 920px;
  margin-bottom: 2.2rem;
}

.privacy-impress {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.privacy-impress .impress-item {
  max-width: 920px;
  margin: 0 auto;
  padding: 2rem;
  background: #FFFFFF;
  box-shadow: none;
}

.privacy-impress .impress-item h4 {
  margin: 1.5rem 0 0.7rem;
  color: var(--dark);
  text-align: left;
}

.privacy-impress .impress-item h4:first-child { margin-top: 0; }

.privacy-impress .impress-item p {
  margin: 0 0 0.95rem;
  color: var(--medium);
}

.privacy-impress .impress-item ul {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
  color: var(--medium);
}

.privacy-impress .impress-item li + li {
  margin-top: 0.45rem;
}

.privacy-note {
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: left;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .privacy-impress { margin-top: 1.8rem; margin-bottom: 1.8rem; }
}

.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  width: min(980px, calc(100% - 2rem));
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border: 1px solid rgba(15, 26, 40, 0.13);
  box-shadow: 0 18px 44px rgba(11, 24, 40, 0.26);
  border-radius: 14px;
  padding: 1.4rem 1.45rem 1.25rem;
  z-index: 1200;
}

.cookie-consent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(90deg, #0f1a28 0%, #2a4260 100%);
}

.cookie-consent__title {
  margin: 0;
  color: var(--dark);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
}

.cookie-consent__text p {
  margin: 0.55rem 0 0;
  color: var(--medium);
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 72ch;
}

.cookie-consent__text a {
  color: #1f4bd8;
  text-underline-offset: 0.12em;
  text-decoration-thickness: 1.5px;
}

.cookie-consent__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1rem;
}

.cookie-consent__btn {
  border-radius: 10px;
  min-height: 52px;
  padding: 0.75rem 1.1rem;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.cookie-consent__btn--primary {
  border: 1px solid #0f1a28;
  background: linear-gradient(135deg, #0f1a28 0%, #1f334a 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(11, 24, 40, 0.25);
}

.cookie-consent__btn--primary:hover {
  box-shadow: 0 10px 24px rgba(11, 24, 40, 0.32);
}

.cookie-consent__btn--secondary {
  border: 1px solid rgba(15, 26, 40, 0.25);
  background: #FFFFFF;
  color: var(--primary);
}

.cookie-consent__btn--secondary:hover {
  border-color: rgba(15, 26, 40, 0.38);
  background: #f7f9fc;
}

.cookie-consent__manage {
  margin-top: 0.9rem;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border: none;
  background: transparent;
  color: #1f4bd8;
  font-size: 0.92rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.cookie-consent__manage:hover {
  text-decoration: underline;
}

.cookie-consent__preferences {
  margin-top: 0.95rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(15, 26, 40, 0.12);
}

.cookie-pref-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
}

.cookie-pref-row + .cookie-pref-row {
  border-top: 1px solid rgba(15, 26, 40, 0.08);
}

.cookie-pref-row h4 {
  margin: 0;
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 600;
}

.cookie-pref-row p {
  margin: 0.25rem 0 0;
  font-size: 0.88rem;
  color: var(--medium);
}

.cookie-switch {
  position: relative;
  display: inline-flex;
  width: 52px;
  height: 30px;
  flex: 0 0 auto;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-switch span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #d1d5db;
  border: 1px solid rgba(15, 26, 40, 0.12);
  transition: background-color 0.2s ease;
}

.cookie-switch span::before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  left: 3px;
  top: 3px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.16);
  transition: transform 0.2s ease;
}

.cookie-switch input:checked + span {
  background: #1f334a;
}

.cookie-switch input:checked + span::before {
  transform: translateX(22px);
}

.cookie-switch input:disabled + span {
  background: #0f1a28;
  opacity: 0.95;
}

.cookie-consent__pref-actions {
  margin-top: 0.6rem;
  display: flex;
  justify-content: flex-end;
}

.cookie-consent__btn--ghost {
  border: 1px solid rgba(15, 26, 40, 0.22);
  background: #FFFFFF;
  color: var(--primary);
  min-height: 46px;
  padding: 0.62rem 1rem;
  font-size: 0.92rem;
}

.cookie-consent__btn--ghost:hover {
  border-color: rgba(15, 26, 40, 0.38);
  background: #f7f9fc;
}

@media (max-width: 768px) {
  .cookie-consent {
    bottom: 0.8rem;
    padding: 1rem 1rem 0.95rem;
    width: calc(100% - 1rem);
    border-radius: 12px;
  }

  .cookie-consent__title {
    font-size: 1.06rem;
  }

  .cookie-consent__text p {
    font-size: 0.95rem;
  }

  .cookie-consent__actions {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .cookie-pref-row {
    gap: 0.8rem;
  }

  .cookie-pref-row h4 {
    font-size: 0.9rem;
  }

  .cookie-pref-row p {
    font-size: 0.83rem;
  }

  .cookie-switch {
    width: 48px;
    height: 28px;
  }

  .cookie-switch span::before {
    width: 20px;
    height: 20px;
  }

  .cookie-switch input:checked + span::before {
    transform: translateX(20px);
  }

  .cookie-consent__pref-actions {
    justify-content: stretch;
  }

  .cookie-consent__btn--ghost {
    width: 100%;
  }

  .cookie-consent__btn {
    min-height: 50px;
    font-size: 0.94rem;
  }
}

