.section-expose {
  padding-top: 0;
}

.expose-state {
  margin-top: 24px;
}

.expose-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 19 / 6;
  min-height: clamp(420px, 31.5vw, 760px);
  background: #08263f;
  overflow: hidden;
}

.expose-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #b9c8d3, #dbe7ef);
  z-index: 1;
}

.expose-hero__media--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f3657;
  font-weight: 700;
}

.expose-slider {
  height: 100%;
  position: relative;
  background: #071d31;
}

.expose-slider__track {
  height: 100%;
  display: flex;
  transition: transform 0.35s ease;
}

.expose-slide {
  min-width: 100%;
  height: 100%;
}

.expose-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expose-slide__link {
  height: 100%;
  display: grid;
  place-content: center;
  gap: 12px;
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  padding: 20px;
}

.expose-slider__fullscreen {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  background: rgba(6, 46, 82, 0.68);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  padding: 8px 12px;
  cursor: pointer;
}

.expose-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(6, 46, 82, 0.52);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.expose-slider__nav--prev {
  left: 14px;
}

.expose-slider__nav--next {
  right: 14px;
}

.expose-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 8px;
}

.expose-slider__dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.expose-slider__dots button[aria-current="true"] {
  background: #fff;
}

.expose-slider__dot.is-active {
  background: #fff;
}

.expose-slider:fullscreen,
.expose-slider:-webkit-full-screen {
  width: 100vw;
  height: 100vh;
  background: #000;
}

.expose-slider:fullscreen .expose-slide img,
.expose-slider:-webkit-full-screen .expose-slide img {
  object-fit: contain;
  background: #000;
}

.expose-slider:fullscreen .expose-slide__link,
.expose-slider:-webkit-full-screen .expose-slide__link {
  min-height: 100vh;
  background: #061425;
}

.expose-slider:fullscreen .expose-slider__dots,
.expose-slider:-webkit-full-screen .expose-slider__dots {
  bottom: 24px;
}

.expose-slider:fullscreen .expose-slider__fullscreen,
.expose-slider:-webkit-full-screen .expose-slider__fullscreen {
  background: rgba(255, 255, 255, 0.15);
}

.expose-hero__info {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
  padding-bottom: 16px;
}

.expose-hero__info .container {
  width: 100%;
}

.expose-hero__inner {
  width: 100%;
  max-width: 680px;
  display: grid;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  padding: 18px;
  pointer-events: auto;
  backdrop-filter: blur(3px);
}

.expose-hero__content h1 {
  margin: 0;
  color: var(--ink);
  font-size: 2.125rem;
  line-height: 1.15;
}

.expose-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.expose-badges .pill {
  border: 1px solid #cfe2ef;
  background: #e9f2f7;
  color: #245173;
}

.expose-subtitle {
  margin: 8px 0 0;
  max-width: 72ch;
  color: #2f4f70;
}

.expose-meta {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  font-size: 0.8125rem;
}

.expose-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #f6fafc;
  color: #234662;
}

.expose-meta--facts span {
  background: #edf5fa;
  border-color: #d6e6f1;
  font-weight: 700;
}

.expose-hero__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.expose-hero__tabs button {
  border: 1px solid #c9dcea;
  border-radius: 999px;
  background: #eff6fb;
  color: #1f4c6d;
  padding: 8px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
}

.expose-hero__tabs button.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.expose-hero__tabs button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.expose-keyfacts {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}

.expose-keyfact {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 12px 14px;
  display: grid;
  gap: 4px;
}

.expose-keyfact span {
  font-size: 0.6875rem;
  color: #5f7894;
}

.expose-keyfact strong {
  font-size: 0.9375rem;
  color: var(--ink);
}

.expose-intro {
  margin-top: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(260px, 1fr);
  gap: 18px;
}

.expose-intro__text,
.expose-pricing {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 18px;
}

.expose-pricing h2,
.expose-intro__text h2 {
  margin-top: 0;
  margin-bottom: 12px;
}

.expose-teaser {
  margin: 0 0 14px;
  color: #2f4f70;
}

.expose-usps {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.expose-target {
  margin: 14px 0 0;
}

.expose-layout {
  margin-top: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.85fr) minmax(260px, 0.8fr);
  gap: 20px;
  align-items: start;
}

.expose-main {
  min-width: 0;
}

.expose-nav {
  position: sticky;
  top: 14px;
  z-index: 15;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 10px;
}

.expose-nav a {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #2f607f;
  background: #eff5f9;
  border: 1px solid #d8e5ef;
}

.expose-section {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 18px;
  margin-bottom: 14px;
}

.expose-section h2 {
  margin-top: 0;
  margin-bottom: 12px;
}

.expose-section h3 {
  margin: 14px 0 6px;
}

.expose-section p {
  margin-top: 0;
  color: #21435f;
}

.expose-data {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(140px, 0.9fr) minmax(0, 1.1fr);
  gap: 8px 12px;
}

.expose-data dt {
  margin: 0;
  font-size: 0.8125rem;
  color: #5f7792;
}

.expose-data dd {
  margin: 0;
  font-weight: 700;
  color: var(--ink);
}

.expose-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.expose-media-card {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #f4f8fb;
  overflow: hidden;
  min-height: 180px;
}

.expose-media-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.expose-media-card--hero {
  grid-column: span 2;
  min-height: 250px;
}

.expose-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.expose-map {
  margin: 12px 0;
  min-height: 180px;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: #e6eef4;
}

.expose-map__placeholder {
  display: grid;
  place-content: center;
  min-height: 180px;
  color: #2f597a;
  font-size: 0.8125rem;
}

.expose-documents {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.expose-documents li {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.expose-contacts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.expose-contact-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #f7fafc;
  padding: 10px 12px;
  display: grid;
  gap: 4px;
}

.expose-contact-card strong {
  color: var(--ink);
}

.expose-contact-card span {
  font-size: 0.75rem;
  color: #5f7894;
}

.expose-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.expose-sidebar__card {
  position: sticky;
  top: 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 16px;
  display: grid;
  gap: 10px;
}

.expose-sidebar__card h3 {
  margin: 0;
}

.expose-mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 40;
  display: none;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 20px rgba(8, 38, 63, 0.16);
}

.expose-mobile-cta .btn {
  flex: 1;
}

@media (max-width: 980px) {
  .expose-intro,
.expose-layout {
    grid-template-columns: 1fr;
  }
  .expose-sidebar {
    display: none;
  }
  .expose-mobile-cta {
    display: flex;
  }
}

@media (max-width: 800px) {
  .expose-hero {
    aspect-ratio: 16 / 9;
    min-height: 300px;
  }
  .expose-hero__info {
    padding-bottom: 10px;
  }
  .expose-hero__inner {
    width: 92vw;
    max-width: 600px;
    padding: 14px;
  }
  .expose-hero__content h1 {
    font-size: 1.75rem;
  }
  .expose-hero__tabs {
    width: 100%;
  }
  .expose-hero__tabs button {
    flex: 1 1 48%;
  }
  .expose-data {
    grid-template-columns: 1fr;
  }
  .expose-media-card--hero {
    grid-column: span 1;
  }
}

@media (max-width: 540px) {
  .expose-slider__nav {
    width: 32px;
    height: 32px;
    font-size: 20px;
  }
  .expose-section {
    padding: 14px;
  }
}

/*# sourceMappingURL=../../../../../../expose.css.map */