﻿:root {
  --sc-color-bg: #f4f8fb;
  --sc-color-surface: #ffffff;
  --sc-color-surface-alt: #edf4fa;
  --sc-color-surface-soft: #f8fbfe;
  --sc-color-text: #152433;
  --sc-color-muted: #4d6173;
  --sc-color-border: #d5e0ea;
  --sc-color-blue: #0f6fb6;
  --sc-color-blue-deep: #0d5d98;
  --sc-color-green: #147a5c;
  --sc-color-green-strong: #0f6249;
  --sc-color-focus: #0b7fd3;

  --sc-radius-sm: 10px;
  --sc-radius-md: 16px;
  --sc-radius-lg: 24px;

  --sc-shadow-sm: 0 8px 22px rgba(12, 37, 58, 0.08);
  --sc-shadow-md: 0 16px 34px rgba(12, 37, 58, 0.14);
  --sc-shadow-lg: 0 24px 52px rgba(12, 37, 58, 0.16);

  --sc-space-1: 0.5rem;
  --sc-space-2: 0.75rem;
  --sc-space-3: 1rem;
  --sc-space-4: 1.5rem;
  --sc-space-5: 2rem;
  --sc-space-6: 3rem;
  --sc-space-7: 4rem;

  --sc-max: 1180px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--sc-color-text);
  line-height: 1.6;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.72)),
    radial-gradient(circle at 8% 10%, #e6f3ea 0%, transparent 32%),
    radial-gradient(circle at 88% 8%, #ddecfb 0%, transparent 36%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.75) 0%, transparent 48%),
    var(--sc-color-bg);
}

a {
  color: inherit;
}

.sc-main a:not(.sc-btn):not(.sc-phone):not(.sc-phoneInline):not(.sc-photoLink):not(.sc-logoTag),
.sc-main a:not(.sc-btn):not(.sc-phone):not(.sc-phoneInline):not(.sc-photoLink):not(.sc-logoTag):visited {
  color: var(--sc-color-blue);
  text-decoration-color: rgba(15, 111, 182, 0.32);
  text-underline-offset: 0.16em;
}

.sc-main a:not(.sc-btn):not(.sc-phone):not(.sc-phoneInline):not(.sc-photoLink):not(.sc-logoTag):hover,
.sc-main a:not(.sc-btn):not(.sc-phone):not(.sc-phoneInline):not(.sc-photoLink):not(.sc-logoTag):focus-visible {
  color: var(--sc-color-blue-deep);
  text-decoration-color: rgba(13, 93, 152, 0.48);
}

h1,
h2,
h3 {
  margin: 0 0 var(--sc-space-3);
  line-height: 1.2;
  color: #112231;
}

h1 {
  font-size: clamp(1.9rem, 3vw, 2.95rem);
}

h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 var(--sc-space-3);
  color: var(--sc-color-muted);
}

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

.sc-wrap {
  width: min(100% - 2rem, var(--sc-max));
  margin-inline: auto;
}

.sc-main {
  padding-top: var(--sc-space-6);
}

.sc-section {
  padding: var(--sc-space-6) 0;
}

.sc-sectionAlt {
  background: linear-gradient(180deg, #f8fbff 0%, #edf4fa 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), inset 0 -1px 0 rgba(208, 221, 233, 0.55);
}

.sc-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sc-space-5);
  align-items: start;
}

.sc-kicker {
  margin-bottom: var(--sc-space-2);
  color: var(--sc-color-green);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.sc-lead {
  font-size: 1.08rem;
}

.sc-skipLink {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #fff;
  border: 2px solid var(--sc-color-focus);
  border-radius: var(--sc-radius-sm);
  padding: 0.65rem 0.9rem;
  z-index: 300;
}

.sc-skipLink:focus-visible {
  left: 1rem;
  top: 1rem;
}

.sc-header {
  position: sticky;
  top: 0;
  z-index: 220;
  background: linear-gradient(180deg, rgba(251, 253, 254, 0.98), rgba(242, 247, 250, 0.96));
  backdrop-filter: blur(9px);
  border-bottom: 1px solid rgba(190, 207, 219, 0.9);
  box-shadow: 0 10px 28px rgba(16, 38, 56, 0.08);
}

.sc-headerInner {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.9rem;
  position: relative;
}

.sc-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: 0.5rem;
  min-width: auto;
  flex-shrink: 0;
}

.sc-brandMark {
  display: block;
  width: 112px;
  height: 32px;
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
  box-shadow: none;
  flex: 0 0 auto;
}

.sc-brandMeta {
  display: grid;
  line-height: 1.02;
  gap: 0.08rem;
  max-width: 138px;
}

.sc-brandTitle {
  font-weight: 900;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  color: #122435;
}

.sc-brandSub {
  display: none;
}

.sc-menuBtn {
  display: none;
  justify-self: end;
  width: 46px;
  height: 46px;
  border: 1px solid var(--sc-color-border);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  position: relative;
}

.sc-menuBar {
  width: 22px;
  height: 2px;
  margin: 4px auto;
  display: block;
  background: #1d3144;
  transition: transform 0.22s ease, opacity 0.18s ease;
}

.sc-menuBtn[aria-expanded="true"] .sc-menuBar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.sc-menuBtn[aria-expanded="true"] .sc-menuBar:nth-child(2) {
  opacity: 0;
}

.sc-menuBtn[aria-expanded="true"] .sc-menuBar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.sc-menuPanel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  flex-wrap: nowrap;
}

.sc-menuPanel nav {
  min-width: 0;
}

.sc-navList {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.9rem;
}

.sc-navList li {
  display: flex;
  align-items: center;
}

.sc-navList a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.93rem;
  line-height: 1.1;
  color: #203445;
  border-radius: 999px;
  padding: 0.24rem 0.42rem;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.sc-navList a:hover {
  color: #0f2d46;
  background: #e6f0f8;
}

.sc-navList a[aria-current="page"] {
  color: #0f2d46;
  background: #dcecf8;
  text-decoration: none;
}

.sc-navList a.sc-navHighlight {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  background: #0f6fb6;
  color: #ffffff;
  border: 1px solid #0f6fb6;
  border-radius: 999px;
  padding: 0.24rem 0.62rem;
}

.sc-navList a.sc-navHighlight::before {
  content: "";
  width: 0.5rem;
  height: 0.7rem;
  border-radius: 60% 60% 60% 60% / 78% 78% 42% 42%;
  background: rgba(255, 255, 255, 0.95);
  transform: rotate(45deg) translateY(-0.02rem);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
  flex: 0 0 auto;
}

.sc-navList a.sc-navHighlight:hover {
  background: #0c5f99;
  border-color: #0c5f99;
  color: #ffffff;
}

.sc-navList a.sc-navHighlight[aria-current="page"] {
  background: #0c5f99;
  border-color: #0c5f99;
  color: #ffffff;
}

.sc-navItemDropdown {
  position: relative;
}

.sc-navDropdown {
  position: relative;
}

.sc-navDropdown summary {
  display: inline-flex;
  align-items: center;
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.93rem;
  line-height: 1.1;
  color: #203445;
  border-radius: 999px;
  padding: 0.24rem 0.42rem;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.sc-navDropdown summary::-webkit-details-marker {
  display: none;
}

.sc-navDropdown summary::after {
  content: "▾";
  margin-left: 0.3rem;
  font-size: 0.68rem;
  color: #2c5778;
}

.sc-navDropdown summary:hover {
  color: #0f2d46;
  background: #e6f0f8;
}

.sc-navDropdown.sc-isActive summary {
  color: #0f2d46;
  background: #dcecf8;
  text-decoration: none;
}

.sc-navSubList {
  position: absolute;
  left: 0;
  top: calc(100% + 0.55rem);
  min-width: 272px;
  margin: 0;
  padding: 1rem;
  list-style: none;
  background: #ffffff;
  border: 1px solid #d6e0e8;
  border-radius: 14px;
  box-shadow: 0 22px 42px rgba(15, 37, 54, 0.16);
  display: grid;
  gap: 0.25rem;
  z-index: 230;
}

.sc-navDropdown:not([open]) .sc-navSubList {
  display: none;
}

.sc-navSubList a {
  display: block;
  padding: 0.5rem 0.6rem;
  border-radius: 8px;
  font-weight: 700;
  color: #213344;
  font-size: 0.98rem;
}

.sc-navSubList a:hover {
  background: #ecf3fa;
}

.sc-headerCtas {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: nowrap;
}

.sc-phone,
.sc-phoneInline {
  text-decoration: none;
  font-weight: 800;
  color: var(--sc-color-blue);
  white-space: nowrap;
}

.sc-phone:visited,
.sc-phoneInline:visited {
  color: var(--sc-color-blue);
}

.sc-headerCtas .sc-phone {
  color: #183245;
  background: #ffffff;
  border: 1px solid #c8d7e1;
  border-radius: 999px;
  padding: 0.54rem 0.9rem;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 5px 14px rgba(14, 37, 57, 0.08);
}

.sc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.68rem 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.sc-btn,
.sc-btn:link,
.sc-btn:visited,
.sc-btn:hover,
.sc-btn:focus-visible {
  text-decoration: none;
}

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

.sc-btnPrimary,
.sc-btnPrimary:link,
.sc-btnPrimary:visited {
  background: var(--sc-color-green);
  color: #fff;
}

.sc-btnPrimary:hover,
.sc-btnPrimary:focus-visible {
  background: var(--sc-color-green-strong);
  color: #fff;
  box-shadow: 0 10px 20px rgba(15, 98, 73, 0.18);
}

.sc-headerCtas .sc-btnPrimary,
.sc-headerCtas .sc-btnPrimary:link,
.sc-headerCtas .sc-btnPrimary:visited {
  background: linear-gradient(180deg, #94d335, #80c62a);
  border-color: #80c62a;
  color: #102315;
  padding: 0.54rem 1rem;
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(80, 143, 20, 0.25);
}

.sc-headerCtas .sc-btnPrimary:hover,
.sc-headerCtas .sc-btnPrimary:focus-visible {
  background: linear-gradient(180deg, #88ca30, #72b924);
  border-color: #72b924;
  color: #102315;
}

.sc-btnGhost,
.sc-btnGhost:link,
.sc-btnGhost:visited {
  background: #fff;
  color: #1e3d53;
  border-color: #c2d1de;
}

.sc-btnGhost:hover,
.sc-btnGhost:focus-visible {
  background: #f7fbff;
  color: #1e3d53;
  border-color: #aac2d5;
}

.sc-btnSoft,
.sc-btnSoft:link,
.sc-btnSoft:visited {
  background: #ebf1f7;
  color: #20384d;
  border-color: #dbe5ee;
}

.sc-btnSoft:hover,
.sc-btnSoft:focus-visible {
  background: #e2ebf4;
  color: #20384d;
  border-color: #cfdde9;
}

.sc-overlay {
  display: none;
}

.sc-panel,
.sc-card,
.sc-kpi,
.sc-faqItem,
.sc-videoCard,
.sc-contactCard {
  background: var(--sc-color-surface);
  border: 1px solid rgba(16, 40, 61, 0.1);
  border-radius: var(--sc-radius-md);
  box-shadow: var(--sc-shadow-sm);
  position: relative;
  overflow: hidden;
}

.sc-panel::before,
.sc-card::before,
.sc-kpi::before,
.sc-faqItem::before,
.sc-videoCard::before,
.sc-contactCard::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(207, 223, 236, 0.7), rgba(255, 255, 255, 0.9));
  pointer-events: none;
}

.sc-panel,
.sc-videoCard,
.sc-contactCard {
  padding: var(--sc-space-4);
}

.sc-heroBadges,
.sc-badgeRow,
.sc-ctaRow,
.sc-tagRow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.sc-badge,
.sc-tag {
  display: inline-block;
  border-radius: 999px;
  font-size: 0.8rem;
  padding: 0.35rem 0.65rem;
  font-weight: 700;
}

.sc-badge {
  color: #114f83;
  background: #e3eff9;
  border: 1px solid #c8dcf0;
}

.sc-tag {
  color: #0f7255;
  background: #e7f5ee;
  border: 1px solid #c2e5d6;
}

.sc-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sc-space-3);
}

.sc-card {
  padding: var(--sc-space-4);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.sc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sc-shadow-md);
  border-color: rgba(15, 111, 182, 0.22);
}

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

.sc-cardLink {
  font-weight: 700;
  color: var(--sc-color-blue);
  text-decoration: none;
}

.sc-cardLink:hover {
  text-decoration: underline;
}

.sc-list,
.sc-listTight {
  margin: 0;
  color: #2e4658;
}

.sc-list li {
  margin-bottom: 0.55rem;
}

.sc-listTight li {
  margin-bottom: 0.4rem;
}

.sc-photoLink {
  width: 100%;
  min-height: 210px;
  border-radius: 14px;
  border: 2px dashed #b5c8d8;
  background: linear-gradient(145deg, #fbfdff, #edf4fb);
  display: grid;
  place-content: center;
  text-align: center;
  text-decoration: none;
  padding: 1rem;
  gap: 0.35rem;
}

.sc-photoLink:hover {
  border-color: var(--sc-color-blue);
}

.sc-photoLink--image {
  display: block;
  padding: 0;
  border-style: solid;
  border-width: 1px;
  border-color: #d3dfeb;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f6fafe 100%);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.sc-photoLink--image:hover {
  transform: translateY(-2px);
  border-color: #b9cde0;
  box-shadow: var(--sc-shadow-md);
}

.sc-photoImg {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

.sc-heroPhoto .sc-photoLink--image {
  width: min(100%, 520px);
  margin-left: auto;
  border-radius: 20px;
  border-color: #c9d8e6;
  box-shadow:
    0 20px 38px rgba(12, 37, 58, 0.14),
    0 0 0 8px rgba(255, 255, 255, 0.72);
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
}

.sc-heroPhoto .sc-photoImg {
  min-height: 0;
  aspect-ratio: 4 / 3;
  height: auto;
}

.sc-photoTag {
  font-weight: 800;
  color: #194666;
  letter-spacing: 0.04em;
}

.sc-photoHint {
  color: #43627a;
  font-size: 0.94rem;
}

.sc-kpiGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sc-space-3);
}

.sc-kpi {
  padding: var(--sc-space-3);
  background: linear-gradient(180deg, #f8fcf9 0%, #eff8f3 100%);
  border-color: #cbe3d7;
}

.sc-kpiValue {
  margin: 0;
  color: var(--sc-color-green);
  font-weight: 800;
  font-size: 1.3rem;
}

.sc-kpiLabel {
  margin: 0;
  font-size: 0.92rem;
}

.sc-videoWrap {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
}

.sc-videoWrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.sc-faq {
  display: grid;
  gap: 0.7rem;
}

.sc-faqItem {
  padding: 0.85rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sc-faqItem:hover {
  border-color: rgba(15, 111, 182, 0.18);
  box-shadow: 0 12px 24px rgba(12, 37, 58, 0.08);
}

.sc-faqItem summary {
  cursor: pointer;
  font-weight: 700;
  color: #17364c;
}

.sc-faqItem p {
  margin-top: 0.65rem;
  margin-bottom: 0;
}

.sc-contactCard {
  text-align: center;
}

.sc-note {
  margin-top: var(--sc-space-3);
  font-weight: 600;
  color: #2a455a;
}

.sc-miniGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sc-space-2);
  margin-top: var(--sc-space-3);
}

.sc-miniCard {
  border: 1px solid #d6e2ec;
  background: linear-gradient(180deg, #fbfdff 0%, #f2f8fd 100%);
  border-radius: 12px;
  padding: 0.85rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.sc-miniCard:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 111, 182, 0.2);
  box-shadow: 0 12px 24px rgba(12, 37, 58, 0.08);
}

.sc-miniCard h3 {
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.sc-miniCard p {
  margin: 0;
  font-size: 0.92rem;
}

.sc-logoTag {
  margin-top: var(--sc-space-3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  min-width: 190px;
  border-radius: 10px;
  border: 1px solid #bfd2e2;
  background: #eaf2fa;
  color: #20445f;
  font-weight: 800;
}

.sc-footer {
  margin-top: var(--sc-space-6);
  background: #eef4fa;
  border-top: 1px solid #d2dee9;
  padding: var(--sc-space-5) 0;
}

.sc-footerGrid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--sc-space-4);
  align-items: start;
}

.sc-footer h3 {
  font-size: 1.02rem;
  margin-bottom: 0.6rem;
}

.sc-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sc-footer li {
  margin-bottom: 0.35rem;
}

.sc-footer a {
  text-decoration: none;
  color: #29465b;
}

.sc-footer a:visited {
  color: #29465b;
}

.sc-footer a:hover {
  text-decoration: underline;
}

.sc-footer p {
  margin: 0;
  color: #2e475c;
}

.sc-footerBottom {
  margin-top: var(--sc-space-4);
  font-size: 0.92rem;
  color: #3f5a71;
}

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

.sc-fabPhone {
  display: none;
}

.sc-cookieBanner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 260;
  width: min(96vw, 620px);
  background: #fff;
  border: 1px solid #d1dfeb;
  border-radius: var(--sc-radius-md);
  box-shadow: var(--sc-shadow-md);
  padding: 1rem;
}

.sc-cookieActions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.sc-cookiePanel {
  margin-top: 0.7rem;
  border-top: 1px solid #e1eaf2;
  padding-top: 0.75rem;
}

.sc-toggleRow {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.7rem;
}

.sc-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid #d7e3ef;
  border-radius: 10px;
  background: #f8fbfe;
  padding: 0.45rem 0.6rem;
}

.sc-toggle input {
  width: 18px;
  height: 18px;
}

.sc-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.sc-reveal.sc-isVisible {
  opacity: 1;
  transform: translateY(0);
}

body.elementor-editor-active .sc-reveal,
body.elementor-editor-preview .sc-reveal,
body[class*="elementor-preview"] .sc-reveal,
.sc-elementorPreview .sc-reveal {
  opacity: 1;
  transform: none;
}

.sc-elementorPreview .sc-header {
  position: relative;
  top: auto;
  backdrop-filter: none;
}

.sc-elementorPreview .sc-cookieBanner,
.sc-elementorPreview .sc-overlay,
.sc-elementorPreview .sc-skipLink {
  display: none !important;
}

.sc-noScroll {
  overflow: hidden;
}

:focus-visible {
  outline: 3px solid var(--sc-color-focus);
  outline-offset: 2px;
}

.sc-newsMain .sc-section:first-of-type {
  padding-bottom: var(--sc-space-4);
}

.sc-newsGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sc-space-4);
}

.sc-newsCard {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.sc-newsCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--sc-shadow-md);
  border-color: rgba(15, 111, 182, 0.22);
}

.sc-newsThumb {
  display: block;
  border-bottom: 1px solid var(--sc-color-border);
  background: linear-gradient(180deg, #f3f8fd 0%, #eaf2fa 100%);
  text-decoration: none;
}

.sc-newsImg {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.sc-newsThumbFallback {
  display: grid;
  place-items: center;
  min-height: 220px;
  font-weight: 700;
  color: #2b4a63;
  padding: var(--sc-space-3);
}

.sc-newsContent {
  padding: 1rem 1rem 1.1rem;
  display: grid;
  gap: 0.7rem;
}

.sc-newsMeta {
  margin: 0;
  font-size: 0.86rem;
  color: #4f687d;
  font-weight: 600;
}

.sc-newsTitle {
  margin: 0;
  font-size: 1.14rem;
  line-height: 1.25;
}

.sc-newsTitle a {
  text-decoration: none;
}

.sc-newsTitle a:hover {
  color: var(--sc-color-blue);
}

.sc-newsPagination {
  margin-top: var(--sc-space-5);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.sc-newsPagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  border: 1px solid var(--sc-color-border);
  background: #fff;
  color: #21384a;
  text-decoration: none;
  font-weight: 700;
  padding: 0 0.8rem;
}

.sc-newsPagination .page-numbers.current {
  background: #0f6fb6;
  color: #fff;
  border-color: #0f6fb6;
}

@media (min-width: 981px) and (max-width: 1180px) {
  .sc-headerInner {
    gap: 0.65rem;
  }

  .sc-navList {
    gap: 0.55rem;
  }

  .sc-navList a,
  .sc-navDropdown summary {
    font-size: 0.88rem;
    padding: 0.22rem 0.34rem;
  }

  .sc-navList a.sc-navHighlight {
    padding: 0.22rem 0.55rem;
  }

  .sc-headerCtas .sc-btnPrimary {
    padding: 0.52rem 0.82rem;
    font-size: 0.88rem;
  }

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

.sc-newsEmpty {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

.sc-newsArticleWrap {
  width: min(100% - 2rem, 860px);
  margin-inline: auto;
}

.sc-newsArticle h1 {
  margin-bottom: 0.45rem;
}

.sc-newsHero {
  margin: 0 0 var(--sc-space-4);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--sc-color-border);
  box-shadow: var(--sc-shadow-sm);
}

.sc-newsBody > :last-child {
  margin-bottom: 0;
}

.sc-newsBody h2,
.sc-newsBody h3 {
  margin-top: 1.4rem;
}

.sc-newsActions {
  margin-top: var(--sc-space-4);
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.sc-newsGallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 0 var(--sc-space-4);
}

.sc-newsFigure {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(26, 49, 73, 0.1);
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  box-shadow: var(--sc-shadow-sm);
}

.sc-newsFigure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.sc-newsFigure figcaption {
  padding: 0.85rem 1rem 0.95rem;
  font-size: 0.92rem;
  color: #4f687d;
  line-height: 1.5;
}

@media (min-width: 981px) {
  .sc-headerInner {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    min-height: 78px;
  }

  .sc-brand {
    grid-column: 1;
    justify-self: start;
    min-height: 34px;
    gap: 0.6rem;
  }

  .sc-brandMeta {
    display: flex;
    align-items: center;
    max-width: none;
    min-height: 32px;
  }

  .sc-brandTitle {
    line-height: 1;
  }

  .sc-menuPanel {
    grid-column: 2;
    display: grid !important;
  }

  .sc-headerCtas {
    justify-content: flex-end;
  }

  .sc-menuBtn {
    display: none !important;
  }

  .sc-overlay {
    display: none !important;
  }
}

@media (max-width: 980px) {
  .sc-grid2,
  .sc-cards,
  .sc-newsGrid,
  .sc-kpiGrid,
  .sc-footerGrid,
  .sc-miniGrid {
    grid-template-columns: 1fr;
  }

  .sc-newsGallery {
    grid-template-columns: 1fr;
  }

  .sc-headerInner {
    grid-template-columns: auto auto;
  }

  .sc-brandMark {
    width: 88px;
    height: 26px;
  }

  .sc-brandTitle {
    font-size: 0.92rem;
  }

  .sc-brandSub {
    display: block;
    font-size: 0.5rem;
  }

  .sc-menuBtn {
    display: block;
  }

  .sc-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(10, 24, 36, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 140;
  }

  .sc-overlay.sc-isOpen {
    opacity: 1;
    pointer-events: auto;
  }

  .sc-menuPanel {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.55rem);
    z-index: 210;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid var(--sc-color-border);
    border-radius: 16px;
    box-shadow: var(--sc-shadow-md);
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
  }

  .sc-menuPanel[hidden] {
    display: none;
  }

  .sc-navList {
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
  }

  .sc-navList li {
    width: 100%;
  }

  .sc-navItemDropdown,
  .sc-navDropdown {
    width: 100%;
  }

  .sc-navList a {
    width: 100%;
    min-height: 44px;
    padding: 0.62rem 0.78rem;
    border-radius: 12px;
    background: #f3f8fd;
    border: 1px solid #dbe7f2;
  }

  .sc-navDropdown summary {
    width: 100%;
    display: inline-flex;
    justify-content: space-between;
    min-height: 44px;
    padding: 0.62rem 0.78rem;
    border-radius: 12px;
    background: #f3f8fd;
    border: 1px solid #dbe7f2;
  }

  .sc-navSubList {
    position: static;
    min-width: 100%;
    border-radius: 12px;
    box-shadow: none;
    background: #edf3f8;
    border: 1px solid #d8e4ef;
    margin-top: 0.4rem;
    padding: 0.55rem;
    gap: 0.35rem;
  }

  .sc-navSubList a {
    background: #ffffff;
    border: 1px solid #dde8f2;
    border-radius: 10px;
    padding: 0.55rem 0.68rem;
  }

  .sc-headerCtas {
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
    padding-top: 0.2rem;
    border-top: 1px solid #dee9f3;
  }

  .sc-btn,
  .sc-phone {
    width: 100%;
    text-align: center;
  }

  .sc-cookieBanner {
    left: 0.75rem;
    right: 0.75rem;
    width: auto;
  }

  .sc-fabPhone {
    position: fixed;
    right: 1rem;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    z-index: 255;
    width: 3.5rem;
    height: 3.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(180deg, #1b8d68 0%, #11694e 100%);
    color: #fff;
    box-shadow:
      0 16px 28px rgba(11, 49, 37, 0.22),
      0 0 0 5px rgba(255, 255, 255, 0.82);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  }

  .sc-fabPhone:visited,
  .sc-fabPhone:hover,
  .sc-fabPhone:focus-visible {
    color: #fff;
  }

  .sc-fabPhone:hover,
  .sc-fabPhone:focus-visible {
    transform: translateY(-2px);
    box-shadow:
      0 18px 32px rgba(11, 49, 37, 0.26),
      0 0 0 5px rgba(255, 255, 255, 0.88);
    background: linear-gradient(180deg, #1f996f 0%, #127255 100%);
  }

  .sc-fabPhoneIcon {
    width: 1.18rem;
    height: 1.18rem;
    fill: currentColor;
    display: block;
  }

  .sc-cookieBanner:not([hidden]) ~ .sc-fabPhone {
    bottom: calc(7rem + env(safe-area-inset-bottom, 0px));
  }

  .sc-heroPhoto .sc-photoLink--image {
    width: 100%;
    margin-left: 0;
    border-radius: 16px;
    box-shadow:
      0 14px 30px rgba(12, 37, 58, 0.12),
      0 0 0 5px rgba(255, 255, 255, 0.75);
  }

  .sc-heroPhoto .sc-photoImg {
    aspect-ratio: 16 / 11;
  }

  .sc-newsThumbFallback {
    min-height: 170px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .sc-reveal {
    opacity: 1;
    transform: none;
  }
}

.page-id-15 .sc-gridHero,
.page-id-15 .sc-gridTop {
  align-items: start;
}

.page-id-15 .sc-miniKicker {
  margin: 0 0 10px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0c617f;
}

.page-id-15 .sc-heroMedia .sc-photoCard {
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(12, 97, 127, 0.1);
  box-shadow: 0 18px 42px rgba(8, 33, 46, 0.1);
}

.page-id-15 .sc-heroMedia .sc-photoImg {
  display: block;
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.page-id-15 .sc-photoMeta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 18px 18px;
  background: #ffffff;
}

.page-id-15 .sc-photoMeta .sc-photoTag,
.page-id-15 .sc-photoMeta .sc-photoHint {
  width: fit-content;
}

.page-id-15 .sc-photoMeta .sc-photoHint {
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #5b7380;
  font-size: 0.94rem;
  line-height: 1.45;
  backdrop-filter: none;
}

.page-id-15 .sc-ctaRowSecondary {
  margin-top: 0.7rem;
}

.page-id-15 .sc-ctaCenter {
  justify-content: center;
}

.page-id-15 .sc-kpiGridCompact {
  align-items: stretch;
}

.page-id-15 .sc-kpiWide {
  grid-column: 1 / -1;
}

.page-id-15 .sc-kpiLabelTop {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #0c617f;
}

.page-id-15 .sc-kpiText {
  margin: 10px 0 12px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #4e6672;
}

.page-id-15 .sc-kpiList {
  margin: 0;
  padding-left: 1.1rem;
}

.page-id-15 .sc-kpiList li {
  margin-bottom: 8px;
  color: #4e6672;
  line-height: 1.5;
}

.page-id-15 .sc-kpiList li:first-child {
  color: #123040;
}

.page-id-15 .sc-kpiFootnote {
  margin-top: 10px;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(18, 48, 64, 0.72);
}

.page-id-15 .sc-kpiFootnote a {
  color: inherit;
  text-decoration: underline;
}

.page-id-15 .sc-videoWrap {
  min-height: 280px;
  background: #0d1720;
}

.page-id-15 .sc-videoWrap iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.page-id-15 .sc-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.page-id-15 .sc-pillar {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f5fafc 100%);
  border: 1px solid rgba(12, 97, 127, 0.1);
}

.page-id-15 .sc-propertyGroup + .sc-propertyGroup {
  margin-top: 18px;
}

@media (max-width: 640px) {
  .page-id-15 .sc-kpiWide {
    grid-column: auto;
  }

  .page-id-15 .sc-pillars {
    grid-template-columns: 1fr;
  }

  .page-id-15 .sc-kpiText {
    font-size: 0.92rem;
  }

  .page-id-15 .sc-kpiList {
    padding-left: 1rem;
    margin-top: 8px;
  }

  .page-id-15 .sc-kpiList li {
    margin-bottom: 5px;
    font-size: 0.92rem;
    line-height: 1.4;
  }

  .page-id-15 .sc-kpiFootnote {
    font-size: 0.75rem;
    opacity: 0.8;
  }

  .page-id-15 .sc-heroMedia .sc-photoCard,
  .page-id-15 .sc-heroMedia .sc-photoImg {
    min-height: 320px;
  }

  .page-id-15 .sc-videoWrap {
    min-height: 220px;
  }
}
