/* --- Hero --- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--sticky-height));
  scroll-margin-top: var(--sticky-height);
  overflow: hidden;
}
.hero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 32px 56px;
  background-image: linear-gradient(rgba(4, 54, 59, 0.82), rgba(4, 54, 59, 0.82)), var(--slide-image);
  background-size: cover;
  background-position: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.hero__slide--active {
  opacity: 1;
  pointer-events: auto;
}
.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 760px;
}
.hero__headline {
  margin: 0;
  color: #ffffff;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.15;
}
.hero__highlight {
  color: #fc861a;
}
.hero__subheadline {
  margin: 0;
  color: #d7e6e7;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 56ch;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}
.hero__primary-button {
  padding: 14px 28px;
  border-radius: 999px;
  background-color: #066d74;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}
.hero__primary-button:hover {
  background-color: #04555a;
}
.hero__secondary-button {
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}
.hero__secondary-button:hover {
  background-color: rgba(255, 255, 255, 0.12);
}
.hero__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 1;
}
.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 0;
}
.hero__dot--active {
  background-color: #ffffff;
}
@media (max-width: 600px) {
  .hero__headline {
    font-size: 2rem;
  }
}

/* --- Mission/Vision/Values --- */
.mvv {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  background-color: #f1f5f5;
}
.mvv__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 32px;
  width: 100%;
}
.mvv__heading {
  margin: 0 0 32px;
  color: #04363b;
  font-size: 1.7rem;
  font-weight: 700;
  text-align: center;
}
.mvv__highlight {
  color: #fc861a;
}
.mvv__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.mvv__card {
  padding: 28px 24px;
  border-radius: 16px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  text-align: center;
}
.mvv__title {
  margin: 0 0 12px;
  color: #066d74;
  text-transform: uppercase;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.mvv__text {
  margin: 0;
  color: #3d5c60;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* --- Products teaser --- */
.products-teaser {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 32px 72px;
  scroll-margin-top: var(--sticky-height);
}
.products-teaser__heading {
  margin: 0 0 24px;
  color: #04363b;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
}
.products-teaser__card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px;
  border-radius: 24px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 20px 40px rgba(4, 54, 59, 0.08);
}
.products-teaser__card-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.products-teaser__name {
  color: #fc861a;
  font-size: 1.4rem;
  font-weight: 700;
}
.products-teaser__description {
  margin: 0;
  color: #3d5c60;
  font-size: 0.95rem;
  line-height: 1.6;
}
.products-teaser__quote {
  margin: 0;
  padding-left: 16px;
  border-left: 3px solid #fc861a;
  color: #04363b;
  font-size: 1.05rem;
  font-weight: 600;
  font-style: italic;
}
.products-teaser__feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.products-teaser__feature-item {
  padding: 6px 14px;
  border-radius: 999px;
  background-color: #e5f5f6;
  color: #066d74;
  font-size: 0.85rem;
  font-weight: 600;
}
.products-teaser__button {
  align-self: flex-start;
  padding: 12px 24px;
  border-radius: 999px;
  background-color: #066d74;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
}
.products-teaser__button:hover {
  background-color: #04555a;
}

/* --- Comparison table --- */
.comparison {
  background-color: #04363b;
  padding: 64px 32px;
}
.comparison__inner {
  max-width: 800px;
  margin: 0 auto;
}
.comparison__heading {
  margin: 0 0 32px;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
}
.comparison__table {
  border-radius: 16px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.comparison__header-row,
.comparison__row {
  display: grid;
  grid-template-columns: 1fr 90px 90px;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
}
.comparison__header-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.comparison__row:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.comparison__header-feature {
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.comparison__header-issaude {
  color: #fc861a;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
}
.comparison__header-market {
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
}
.comparison__feature-cell {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.comparison__feature-name {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
}
.comparison__feature-detail {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
}
.comparison__icon-cell {
  display: flex;
  justify-content: center;
}
.comparison__check-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background-color: rgba(139, 176, 44, 0.18);
  color: #8bb02c;
}
.comparison__cross-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background-color: rgba(220, 90, 90, 0.15);
  color: #d96b6b;
}
@media (max-width: 560px) {
  .comparison__feature-detail {
    display: none;
  }
}

/* --- Lis section (home) --- */
.lis-section {
  background-color: #e5f5f6;
  scroll-margin-top: var(--sticky-height);
}
.lis-section__inner {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 32px;
}
.lis-section__text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lis-section__eyebrow {
  color: #fc861a;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.lis-section__heading {
  margin: 0;
  color: #04363b;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}
.lis-section__description {
  margin: 0;
  color: #3d5c60;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 48ch;
}
.lis-section__button {
  align-self: flex-start;
  margin-top: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  background-color: #066d74;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}
.lis-section__button:hover {
  background-color: #04555a;
}
.lis-section__figure {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.lis-section__image-box {
  position: relative;
}
.lis-section__image {
  position: relative;
  z-index: 1;
  height: 560px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.lis-section__image--visible {
  opacity: 1;
  transform: translateY(0);
}
.lis-section__shadow {
  position: absolute;
  z-index: 0;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(4, 54, 59, 0.35) 0%, rgba(4, 54, 59, 0) 70%);
}
.lis-section__bubble {
  position: absolute;
  top: 14%;
  left: -8%;
  padding: 10px 18px;
  border-radius: 999px;
  background-color: #066d74;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(4, 54, 59, 0.18);
  opacity: 0;
  transition: opacity 0.5s ease;
  transition-delay: 0.5s;
}
.lis-section__bubble--visible {
  opacity: 1;
}
@media (max-width: 900px) {
  .lis-section__inner {
    flex-direction: column;
    padding: 48px 20px;
  }
  .lis-section__figure {
    justify-content: center;
    padding-top: 52px;
  }
  .lis-section__image {
    height: 420px;
  }
  .lis-section__shadow {
    width: 160px;
  }
  .lis-section__bubble {
    font-size: 0.8rem;
    white-space: normal;
    max-width: 65vw;
  }
}

/* --- Video section --- */
.video-section {
  background: linear-gradient(to bottom, #ffffff 50%, #f1f5f5 50%);
  scroll-margin-top: var(--sticky-height);
}
.video-section__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 32px;
  text-align: center;
}
.video-section__heading {
  margin: 0 0 32px;
  color: #04363b;
  font-size: clamp(1rem, 2.6vw, 1.7rem);
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}
@media (max-width: 560px) {
  .video-section__heading {
    white-space: normal;
  }
}
.video-section__highlight {
  color: #fc861a;
}
.video-section__wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(4, 54, 59, 0.15);
}
.video-section__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* --- Stats --- */
.stats {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 48px 32px;
  background-color: #04363b;
  overflow: hidden;
  scroll-margin-top: var(--sticky-height);
}
.stats__icon-field {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.stats__icon {
  position: absolute;
  width: 1em;
  height: 1em;
  color: #ffffff;
  opacity: 0.08;
}
.stats__icon svg {
  width: 100%;
  height: 100%;
}
.stats__stat {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  max-width: 180px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.stats__stat--visible {
  opacity: 1;
  transform: translateY(0);
}
.stats__value {
  color: #fc861a;
  font-size: 2rem;
  font-weight: 700;
}
.stats__label {
  color: #ffffff;
  font-size: 0.85rem;
}

/* --- Blog preview --- */
.blog-preview {
  background-color: #e5f5f6;
  scroll-margin-top: var(--sticky-height);
}
.blog-preview__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 32px;
}
.blog-preview__heading {
  margin: 0 0 32px;
  color: #04363b;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
}
.blog-preview__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.blog-preview__card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  transition: box-shadow 0.15s ease;
}
.blog-preview__card:hover {
  box-shadow: 0 12px 24px rgba(4, 54, 59, 0.12);
}
.blog-preview__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
}
.blog-preview__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-preview__card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
}
.blog-preview__card-title {
  margin: 0;
  color: #04363b;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
}
.blog-preview__card-link {
  color: #fc861a;
  font-size: 0.85rem;
  font-weight: 700;
}
.blog-preview__card-excerpt {
  margin: 0;
  color: #5c7376;
  font-size: 0.88rem;
  line-height: 1.5;
}
.blog-preview__view-all {
  display: block;
  margin-top: 32px;
  color: #066d74;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
}
.blog-preview__view-all:hover {
  color: #04555a;
}

/* --- Clients carousel --- */
.clients-carousel {
  max-width: 1000px;
  margin: 0 auto;
  padding: 56px 0;
  text-align: center;
  scroll-margin-top: var(--sticky-height);
}
.clients-carousel__heading {
  margin: 0 0 32px;
  padding: 0 32px;
  color: #04363b;
  font-size: 1.4rem;
  font-weight: 700;
}
.clients-carousel__viewport {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, #000 64px, #000 calc(100% - 64px), transparent);
}
.clients-carousel__track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: clients-scroll 24s linear infinite;
}
.clients-carousel__slot {
  display: flex;
  flex: 0 0 180px;
  align-items: center;
  justify-content: center;
  height: 90px;
  padding: 12px 16px;
  border-radius: 12px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
}
.clients-carousel__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@keyframes clients-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* --- CTA section --- */
.cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 64px 32px;
  text-align: center;
  background-color: #04363b;
  scroll-margin-top: var(--sticky-height);
}
.cta-section__heading {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.1rem, 3.2vw, 1.7rem);
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 560px) {
  .cta-section__heading {
    white-space: normal;
  }
}
.cta-section__button {
  padding: 14px 32px;
  border-radius: 999px;
  background-color: #fc861a;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}
.cta-section__button:hover {
  background-color: #e57812;
}
