/* ===== HeaderModel01 ===== */
body > header {
  width: 100%;
  overflow: visible;
}

.site-header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  overflow: visible;
  z-index: 1000;
  display: flex;
  align-items: center;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  padding: 0;
  height: auto;
  min-height: var(--header-h);
  color: var(--muted-on-dark);
}

.site-header-nav.is-scrolled,
body:not(.page-home) .site-header-nav {
  background-color: #0a1628;
  border-bottom-color: var(--navy-border);
  backdrop-filter: blur(12px);
}

.site-header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  width: 100%;
  min-height: var(--header-h);
  height: auto;
}

.site-logo {
  display: block;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.logo-icon {
  height: 58px;
  width: auto;
  max-width: min(240px, 100%);
  object-fit: contain;
  display: block;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: 8px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
}

.site-header-collapse {
  display: none;
  grid-column: 1 / -1;
  width: 100%;
  padding: 16px;
  margin-top: 10px;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-2xl);
}

.site-header-collapse.is-open {
  display: block;
}

.site-header-menu {
  align-items: center;
  gap: 32px;
}

.site-header-menu .nav-item {
  position: relative;
  overflow: visible;
}

.site-header-menu .nav-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--light-on-dark) !important;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 0 !important;
  white-space: nowrap;
}

.site-header-menu .nav-link:hover,
.site-header-menu .nav-link.active {
  color: var(--white) !important;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown-caret {
  font-size: 8px;
  line-height: 1;
  transform: scaleX(1.4);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  padding: 10px 0 12px;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  z-index: 20;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}

.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--light-on-dark);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--teal);
  background: rgba(255, 255, 255, 0.04);
}

.site-header-cta {
  flex-shrink: 0;
  margin-left: 8px;
  padding: 10px 22px;
  font-size: 15px;
  letter-spacing: 1px;
  border-radius: 999px;
  white-space: nowrap;
}

@media (min-width: 992px) {
  .nav-toggle {
    display: none;
  }

  .site-header-nav {
    height: var(--header-h);
  }

  .site-header-inner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    height: var(--header-h);
  }

  .logo-icon {
    height: 68px;
    max-width: 240px;
  }

  .site-header-collapse {
    display: flex;
    grid-column: auto;
    flex-basis: auto;
    align-items: center;
    justify-content: flex-end;
    gap: 32px;
    width: auto;
    padding: 0;
    margin-top: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .site-header-menu {
    display: flex;
    margin-left: auto;
    margin-right: 0;
    flex-direction: row;
  }
}

@media (max-width: 991.98px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-header-collapse {
    display: none;
    flex-basis: 100%;
    width: 100%;
    padding: 16px;
    margin-top: 10px;
    background: var(--navy-card);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-2xl);
  }

  .site-header-collapse.is-open {
    display: block;
  }

  .site-header-nav {
    background-color: #0a1628;
    height: auto;
    min-height: var(--header-h);
    flex-wrap: wrap;
  }

  .site-header-inner {
    flex-wrap: wrap;
    height: auto;
    min-height: var(--header-h);
  }

  .logo-icon {
    height: 58px;
  }

  .site-header-menu {
    gap: 4px;
    margin-bottom: 12px;
  }

  .site-header-cta {
    width: 100%;
    margin: 8px 0 0;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 4px 0 8px 12px;
    min-width: 0;
  }

  .nav-dropdown.is-open .nav-dropdown-menu,
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    display: block;
  }
}

/* ===== SectionHeroModel01 ===== */
.section-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
  padding: 130px 0 80px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("../img/homebgc-800.jpg");
  background-image: url("../img/homebgc-800.webp");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}

@media (min-width: 901px) {
  .hero-media {
    background-image: url("../img/homebgc-1600.jpg");
    background-image: url("../img/homebgc-1600.webp");
  }
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(10, 22, 40, 0.92) 0%, rgba(10, 22, 40, 0.72) 46%, rgba(10, 22, 40, 0.38) 100%);
}

.section-hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-award {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(15px, 1.7vw, 20px);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--teal);
  line-height: 1.3;
}

.section-hero h1 {
  font-size: clamp(42px, 6.5vw, 80px);
  line-height: 1.05;
  color: var(--hero-text);
  margin-bottom: 24px;
  max-width: 840px;
  font-weight: 800;
}

.section-hero h1 .accent {
  color: var(--teal);
}

.section-hero .hero-lead {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--muted-on-dark);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}

.hero-actions .btn-es {
  padding: 16px 32px;
  font-size: 17px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(14px);
}

.hero-stat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 22px 20px;
  background: transparent;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat:last-child {
  border-right: 0;
}

.hero-stat-icon {
  display: flex;
  flex-shrink: 0;
  color: var(--teal);
  margin-top: 1px;
}

.hero-stat-icon svg {
  width: 26px;
  height: 26px;
}

.hero-stat-copy {
  min-width: 0;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.4px;
  line-height: 1.25;
  color: var(--hero-text);
}

.hero-stat-label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  color: var(--muted-on-dark);
  letter-spacing: 0;
  margin-top: 4px;
  line-height: 1.4;
}

/* ===== Shared section headers ===== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-title {
  font-size: clamp(34px, 4.5vw, 52px);
}

.section-audience {
  background: var(--white);
  padding: var(--space-section) 0;
}

.audience-header {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 64px;
}

.audience-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--teal-dark);
}

.audience-kicker-line {
  width: 22px;
  height: 1px;
  background: var(--teal);
}

.audience-lead {
  margin: 16px auto 0;
  max-width: 580px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 14px;
}

.audience-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: transparent;
  padding: 18px 10px 20px;
  border: 0;
  border-radius: 16px;
  box-shadow: none;
  transition: background-color 0.22s ease;
}

.audience-card:hover,
.audience-card:focus-within {
  background-color: #eef3f1;
}

.js-reveal-ready .audience-card[data-reveal] {
  transition:
    opacity 0.55s ease var(--reveal-delay, 0ms),
    transform 0.55s ease var(--reveal-delay, 0ms),
    background-color 0.22s ease;
}

.audience-card-icon {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: auto;
  height: auto;
  margin-bottom: 28px;
  color: var(--text-dark);
  background: transparent;
  border-radius: 0;
}

.audience-card-icon svg {
  display: block;
  width: 52px;
  height: 52px;
}

.audience-card h3 {
  font-weight: 800;
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.15;
  white-space: nowrap;
}

.audience-card h3::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin-top: 12px;
  background: var(--teal);
}

.audience-card-lead {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.45;
  margin-bottom: 10px;
}

.audience-card-support {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 28px;
}

.audience-card .audience-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0;
  color: var(--teal-dark);
}

.audience-card .audience-cta:hover {
  color: var(--teal-btn-hover);
  text-decoration: none;
}

.audience-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  width: 100%;
  margin-top: 64px;
  padding-top: 8px;
  text-align: left;
}

.audience-footer p {
  margin: 0;
  max-width: 42ch;
  font-size: 15px;
  color: var(--text-secondary);
}

.audience-footer .btn-es {
  padding: 14px 26px;
  font-size: 13px;
  letter-spacing: 0.8px;
}

@media (max-width: 1199.98px) {
  .audience-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
  }

  .audience-card h3 {
    font-size: 24px;
    white-space: normal;
  }
}

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

  .audience-card {
    padding: 18px 12px 20px;
  }

  .audience-footer {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .audience-footer p {
    max-width: none;
  }
}

/* ===== SectionServicesModel01 ===== */
.section-services {
  background: #f7f9fc;
  padding: var(--space-section) 0;
}

.services-header {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.services-lead {
  margin: 16px auto 0;
  max-width: 640px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.services-nav-wrap {
  margin-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.services-tab-shift {
  display: none;
}

.services-tabs {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-margin-top: 100px;
}

.services-tabs::-webkit-scrollbar {
  display: none;
}

.services-tabs button {
  position: relative;
  flex: 1 0 auto;
  min-width: max-content;
  scroll-margin-top: 100px;
  background: transparent;
  border: 0;
  padding: 16px 12px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
  text-align: center;
  transition: color 0.2s ease;
}

.services-tabs button:hover,
.services-tabs button.is-active {
  background: transparent;
  color: var(--text-dark);
}

.services-tab-label {
  display: block;
  font-weight: 600;
  white-space: nowrap;
}

.services-tab-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--teal-btn);
}

.services-tabs button.is-active .services-tab-progress.is-running {
  animation: service-progress 6.5s linear forwards;
}

.section-services.is-paused .services-tab-progress {
  animation-play-state: paused;
}

@keyframes service-progress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.services-stage {
  position: relative;
}

.services-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
}

.services-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 44px;
  padding: 14px 8px;
  border: 0;
  background: transparent;
  color: var(--text-dark);
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.services-arrow svg {
  display: block;
  width: 72px;
  height: 16px;
}

.services-arrow:hover,
.services-arrow:focus-visible {
  color: var(--teal-dark);
}

.services-arrow.is-prev:hover,
.services-arrow.is-prev:focus-visible {
  transform: translateX(-4px);
}

.services-arrow.is-next:hover,
.services-arrow.is-next:focus-visible {
  transform: translateX(4px);
}

.service-panel {
  display: none;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  grid-template-areas:
    "intro media"
    "details media";
  column-gap: 56px;
  row-gap: 20px;
  align-items: start;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.service-panel.is-active {
  display: grid;
}

.service-intro {
  grid-area: intro;
}

.service-details {
  grid-area: details;
}

.service-index {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.service-kicker {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 10px;
}

.service-intro h3 {
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 42px);
  color: var(--text-dark);
  margin: 0;
  line-height: 1.12;
}

.service-lead {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 540px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.service-tags li {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-dark);
}

.service-results {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.service-results li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--text-dark);
}

.service-results li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-btn);
}

.service-details .btn-es {
  padding: 14px 22px;
  font-size: 13px;
}

.service-media {
  grid-area: media;
  min-height: 460px;
  height: 100%;
}

.service-media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: 18px;
}

@media (max-width: 767.98px) {
  .services-nav-wrap {
    padding-bottom: 12px;
  }

  .services-tabs {
    overflow: hidden;
    justify-content: center;
  }

  .services-tabs button {
    display: none;
    flex: 1 1 auto;
    min-width: 0;
    padding: 14px 8px 16px;
  }

  .services-tabs button.is-active {
    display: block;
  }

  .services-tab-label {
    white-space: normal;
    text-align: center;
  }

  .services-tab-shift {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 4px 0 8px;
  }

  .services-tab-shift-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 44px;
    padding: 8px 12px;
    border: 0;
    background: transparent;
    color: var(--text-dark);
    cursor: pointer;
  }

  .services-tab-shift-btn svg {
    display: block;
  }

  .services-tab-shift-btn:hover,
  .services-tab-shift-btn:focus-visible {
    color: var(--teal-dark);
  }
}

@media (max-width: 991.98px) {
  .service-panel.is-active {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "media"
      "details";
    gap: 24px;
  }

  .service-media,
  .service-media img {
    min-height: 280px;
  }
}

/* ===== SectionPredictiveModel01 ===== */
.section-predictive {
  background: #f7f9fc;
  padding: var(--space-section) 0;
}

.predictive-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 56px;
  align-items: center;
}

.predictive-copy {
  text-align: left;
}

.predictive-copy .section-title {
  margin-top: 12px;
  max-width: 16ch;
  font-size: clamp(32px, 4vw, 48px);
}

.predictive-lead {
  margin: 18px 0 0;
  max-width: 540px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.predictive-norms {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.predictive-norms li {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
}

.predictive-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
  margin-top: 28px;
}

.predictive-actions .btn-es {
  padding: 13px 22px;
  font-size: 13px;
}

.predictive-aside {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-secondary);
}

.predictive-aside svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--teal-dark);
}

.predictive-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #111;
}

.predictive-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.predictive-media figcaption {
  position: absolute;
  left: 28px;
  bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.4px;
  line-height: 1.25;
  color: var(--white);
}

.predictive-caption-bar {
  width: 2px;
  height: 28px;
  margin-top: 3px;
  background: var(--teal);
}

@media (max-width: 991.98px) {
  .predictive-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .predictive-copy .section-title {
    max-width: none;
  }

  .predictive-media img {
    min-height: 280px;
  }
}

/* ===== SectionAboutModel01 ===== */
.section-about {
  position: relative;
  overflow: hidden;
  background: var(--bg-about);
  padding: 112px 0;
}

.about-draft {
  position: absolute;
  top: 24px;
  right: 0;
  width: min(340px, 32%);
  height: 220px;
  stroke: #c5d0dc;
  stroke-width: 0.7;
  opacity: 0.22;
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 42%) minmax(0, 58%);
  gap: 80px;
  align-items: center;
}

.about-photo-wrap {
  position: relative;
  max-width: 460px;
  width: 100%;
  padding: 44px 36px 36px 44px;
}

.about-photo-shape {
  position: absolute;
  z-index: 0;
}

.about-photo-shape.is-teal {
  top: 0;
  left: 0;
  width: calc(100% - 36px);
  height: 68%;
  background: #0b3d34;
}

.about-photo-shape.is-deep {
  right: 0;
  bottom: 0;
  width: 52%;
  height: 38%;
  background: var(--navy);
}

.about-photo {
  position: relative;
  z-index: 1;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
}

.about-badge {
  position: absolute;
  right: 48px;
  bottom: 52px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  border: 1px solid #d4af37;
  border-radius: var(--radius-md);
  padding: 8px 10px 7px;
  min-width: 108px;
  max-width: 118px;
  box-shadow: 0 8px 18px rgba(10, 22, 40, 0.12);
}

.about-badge-wreath {
  display: block;
  margin-bottom: 2px;
}

.about-badge-kicker {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  color: #c9a227;
  letter-spacing: 0.4px;
  margin-bottom: 2px;
}

.about-badge-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.15;
}

.about-badge-sub {
  font-size: 9px;
  color: var(--text-secondary);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.about-copy {
  min-width: 0;
}

.about-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
  font-size: 12px;
  letter-spacing: 2.4px;
}

.about-kicker-line {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--teal-btn);
}

.section-about h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(42px, 5vw, 64px);
  color: var(--text-dark);
  line-height: 0.95;
  margin-top: 12px;
  margin-bottom: 0;
}

.section-about h2 .role {
  display: block;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
  margin-top: 12px;
}

.about-highlight {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 32px 0 28px;
}

.about-highlight-value {
  display: flex;
  flex-direction: column;
  line-height: 0.88;
  color: var(--teal-btn);
}

.about-highlight-value span:first-child {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(52px, 6vw, 68px);
}

.about-highlight-value span:last-child {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  margin-top: 2px;
}

.about-highlight-copy {
  border-left: 1px solid #c5d0dc;
  padding-left: 20px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--text-dark);
}

.section-about p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 18px;
  max-width: 52ch;
}

.section-about p strong {
  color: var(--text-dark);
  font-weight: 600;
}

.about-creds {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 12px 0 32px;
}

.about-cred {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 84px;
  background: var(--white);
  padding: 16px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}

.about-cred-icon {
  flex-shrink: 0;
  color: var(--teal-btn);
  display: flex;
}

.about-cred-text {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  line-height: 1.3;
  color: var(--text-secondary);
}

.about-cred-text strong {
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 600;
}

.about-cta {
  width: auto;
  max-width: max-content;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

/* ===== SectionAwardsModel01 ===== */
.section-awards {
  background: var(--white);
  padding: var(--space-section) 0;
}

.awards-header {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.awards-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #c9a227;
}

.awards-kicker-line {
  display: block;
  width: 28px;
  height: 1px;
  background: #c9a227;
}

.awards-lead {
  margin: 16px auto 0;
  max-width: 560px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.awards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px 24px;
}

.award-card {
  flex: 0 0 calc((100% - 72px) / 4);
  max-width: none;
  background: transparent;
  padding: 0;
  border: 0;
  box-shadow: none;
  text-align: left;
}

.award-icon {
  display: flex;
  color: #c9a227;
  margin-bottom: 16px;
}

.award-year {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 4vw, 52px);
  color: #c9a227;
  line-height: 0.95;
  margin-bottom: 10px;
}

.award-meta {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  color: #a08a4a;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 12px;
  white-space: nowrap;
}

.award-card h3 {
  font-weight: 700;
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.25;
}

.award-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991.98px) {
  .award-card {
    flex-basis: calc((100% - 24px) / 2);
  }
}

@media (max-width: 639.98px) {
  .award-card {
    flex-basis: 100%;
  }

  .award-meta {
    white-space: normal;
  }
}

/* ===== SectionClientsModel01 ===== */
.section-clients {
  background: var(--white);
  padding: 80px 0;
}

.clients-header {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}

.clients-lead {
  margin: 14px auto 0;
  max-width: 520px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.clients-carousel {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.clients-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: clients-marquee 42s linear infinite;
}

.clients-carousel:hover .clients-track {
  animation-play-state: paused;
}

.clients-logos {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.client-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 88px;
  padding: 0 18px;
}

.client-logo {
  max-width: 140px;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) contrast(0.9);
  opacity: 0.72;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.client-slide:hover .client-logo {
  filter: none;
  opacity: 1;
}

.clients-more {
  margin: 28px 0 0;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

@keyframes clients-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .clients-track {
    animation: none;
  }

  .clients-carousel {
    overflow-x: auto;
    mask-image: none;
  }
}

/* ===== SectionTestimonialsModel01 ===== */
.section-testimonials {
  background: var(--bg-soft);
  padding: var(--space-section) 0;
}

.testimonials-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.3fr);
  gap: 56px;
  align-items: start;
}

.testimonials-intro .section-title {
  font-size: clamp(32px, 3.6vw, 46px);
  text-align: left;
  margin-top: 10px;
}

.testimonials-intro .section-label {
  text-align: left;
}

.google-score {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0 20px;
}

.google-mark {
  display: flex;
  flex-shrink: 0;
}

.google-mark svg {
  display: block;
  width: 58px;
  height: 58px;
}

.google-score-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--text-dark);
  font-size: 16px;
}

.google-score-row strong {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.google-stars {
  display: inline-flex;
  gap: 2px;
}

.google-score p {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--text-secondary);
}

.testimonials-google-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.4px;
  color: var(--teal-dark);
}

.testimonials-google-link:hover {
  color: var(--teal-btn-hover);
  text-decoration: underline;
}

.testimonials-quotes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonials-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.testimonial-card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
}

.testimonial-card.is-featured {
  padding: 36px 32px;
}

.testimonial-card.is-featured blockquote {
  font-size: 22px;
  line-height: 1.45;
  color: var(--text-dark);
  font-style: normal;
}

.testimonial-card blockquote {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.65;
  font-style: normal;
  margin: 0 0 20px;
}

.testimonial-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.testimonial-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-dark);
}

.testimonial-role {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.testimonial-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--text-secondary);
  font-size: 11px;
}

@media (max-width: 991.98px) {
  .testimonials-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 767.98px) {
  .testimonials-secondary {
    grid-template-columns: 1fr;
  }
}

/* ===== SectionFAQModel01 ===== */
.section-faq {
  background: var(--white);
  padding: var(--space-section) 0;
}

.faq-container {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 48px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--text-dark);
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-weight: 400;
  color: var(--teal-dark);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item summary:hover,
.faq-item summary:focus-visible {
  color: var(--teal-dark);
}

.faq-item p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  padding: 0 0 22px;
}

/* ===== SectionCTAModel01 ===== */
.section-cta {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  padding: 112px 0 72px;
  text-align: center;
}

.cta-media,
.cta-overlay {
  position: absolute;
  inset: 0;
}

.cta-media {
  background-image: url("../img/finalbgc-800.jpg");
  background-image: url("../img/finalbgc-800.webp");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}

@media (min-width: 901px) {
  .cta-media {
    background-image: url("../img/finalbgc-1600.jpg");
    background-image: url("../img/finalbgc-1600.webp");
  }
}

.cta-overlay {
  background: linear-gradient(90deg, rgba(4, 12, 24, 0.72) 0%, rgba(4, 12, 24, 0.42) 52%, rgba(4, 12, 24, 0.18) 100%);
}

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

.cta-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--teal);
}

.cta-kicker-line {
  width: 28px;
  height: 1px;
  background: var(--teal);
}

.section-cta h2 {
  font-size: clamp(36px, 5.4vw, 64px);
  color: var(--white);
  margin: 18px auto 20px;
  max-width: 820px;
  line-height: 1.08;
}

.section-cta h2 .accent {
  color: var(--teal);
}

.section-cta .cta-lead {
  font-size: 17px;
  color: var(--light-on-dark);
  line-height: 1.7;
  margin: 0 auto 40px;
  max-width: 640px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 64px;
}

.cta-actions .btn-es {
  padding: 16px 28px;
  font-size: 15px;
  box-shadow: 0 8px 32px rgba(0, 200, 164, 0.22);
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-align: left;
}

.cta-phone svg {
  flex-shrink: 0;
  color: var(--teal);
}

.cta-phone strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
  line-height: 1.1;
}

.cta-phone small {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--muted-on-dark);
}

.cta-phone:hover {
  color: var(--white);
}

.cta-phone:hover strong {
  color: var(--teal);
}

.cta-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  max-width: 980px;
  margin: 0 auto;
}

.cta-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  padding: 0;
}

.cta-point-icon {
  display: flex;
  flex-shrink: 0;
  color: var(--teal);
  margin-top: 2px;
}

.cta-point h3 {
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
  margin-bottom: 6px;
}

.cta-point p {
  font-size: 14px;
  color: var(--muted-on-dark);
  line-height: 1.55;
  margin: 0;
}

.cta-foot {
  margin: 56px 0 0;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--muted-on-dark);
}

@media (max-width: 767.98px) {
  .cta-points {
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: left;
  }

  .cta-actions {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 48px;
  }
}

/* ===== FooterModel01 ===== */
.footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--navy-border);
  padding: 48px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-tagline {
  font-size: 14px;
  color: var(--muted-on-dark);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--muted-on-dark);
  transition: color 0.2s ease;
}

.footer-social a svg {
  width: 20px;
  height: 20px;
}

.footer-social a:hover {
  color: var(--teal);
}

.footer-col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--light-on-dark);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-list li {
  font-size: 13px;
  color: var(--muted-on-dark);
  margin-bottom: 0;
}

.footer-list a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contacts a,
.footer-contacts span {
  font-size: 14px;
  color: var(--muted-on-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
}

.footer-contacts a:hover {
  color: var(--teal);
}

.footer-bottom {
  border-top: 1px solid var(--navy-border);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom p,
.footer-dev {
  font-size: 13px;
  color: var(--muted-on-dark);
  margin: 0;
}

.footer-dev {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}

.footer-dev img {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.footer-dev a:hover img {
  opacity: 1;
}

/* ===== WhatsApp float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1100;
  background: #0f7a4b;
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 4px 24px rgba(15, 122, 75, 0.4);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: transform 0.25s ease, box-shadow 0.2s ease, opacity 0.25s ease, visibility 0.25s ease;
}

.whatsapp-float.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.whatsapp-float-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.whatsapp-float-icon svg {
  display: block;
  width: 30px;
  height: 30px;
}

.whatsapp-float-label {
  display: none;
  white-space: nowrap;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  color: var(--white);
  box-shadow: 0 8px 32px rgba(15, 122, 75, 0.5);
}

/* ===== Cookie banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  padding: 16px;
}

.cookie-card {
  background: var(--white);
  border: 1px solid var(--line);
  max-width: 480px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 20px;
}

.cookie-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.cookie-actions .btn-es {
  min-height: 44px;
  padding: 10px 20px;
  font-size: 14px;
}

.cookie-decline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  background: transparent;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 16px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (min-width: 768px) {
  .cookie-banner {
    bottom: 24px;
    left: 24px;
    right: auto;
    padding: 0;
  }
}

/* ===== Página legal / política de cookies ===== */
.page-legal {
  background: var(--bg-soft);
}

.page-legal main {
  padding: calc(var(--header-h) + 48px) 0 var(--space-section);
}

.legal-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-soft);
  padding: 40px 28px;
}

.legal-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-dark);
  margin-top: 12px;
}

.legal-updated {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.legal-prose {
  margin-top: 32px;
}

.legal-prose h2 {
  font-size: 1.5rem;
  margin: 32px 0 12px;
  color: var(--text-dark);
}

.legal-prose h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
  margin: 20px 0 8px;
  color: var(--text-dark);
}

.legal-prose p,
.legal-prose li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
}

.legal-prose p {
  margin-bottom: 16px;
}

.legal-prose ul,
.legal-prose ol {
  list-style: disc;
  padding-left: 1.3rem;
  margin: 0 0 16px;
}

.legal-prose ol {
  list-style: decimal;
}

.legal-prose a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-prose a:hover {
  color: var(--teal-btn);
}

.legal-back {
  margin: 40px 0 0;
}

.legal-back a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

@media (min-width: 768px) {
  .legal-card {
    padding: 56px 56px;
  }
}

@media (max-width: 991.98px) {
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stat:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero-stat:nth-child(2),
  .hero-stat:last-child {
    border-right: 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-copy {
    display: contents;
  }

  .about-intro {
    order: 1;
  }

  .about-photo-wrap {
    order: 2;
    max-width: 380px;
    margin: 0 auto;
    padding: 16px 16px 20px 16px;
  }

  .about-photo-shape.is-teal {
    width: calc(100% - 16px);
    height: 58%;
  }

  .about-photo-shape.is-deep {
    width: 42%;
    height: 28%;
  }

  .about-badge {
    right: 24px;
    bottom: 32px;
  }

  .about-highlight {
    order: 3;
    margin: 8px 0 8px;
  }

  .about-prose {
    order: 4;
  }

  .about-creds {
    order: 5;
    grid-template-columns: 1fr 1fr;
    margin: 4px 0 8px;
  }

  .about-cta {
    order: 6;
  }
}

@media (max-width: 767.98px) {
  .section-hero {
    min-height: auto;
    overflow: visible;
    padding: 112px 0 96px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.88) 0%, rgba(10, 22, 40, 0.78) 100%);
  }

  .hero-actions {
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    position: relative;
    z-index: 0;
  }

  .hero-stat {
    padding: 16px 14px;
    border-right: 0;
  }

  .hero-stat:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero-stat:nth-child(2),
  .hero-stat:last-child {
    border-right: 0;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 16px;
    padding: 0;
  }

  body:has(.whatsapp-float.is-visible) .cookie-banner {
    bottom: calc(84px + env(safe-area-inset-bottom, 0px));
  }

  .cookie-card {
    max-width: none;
  }

  .hero-actions .btn-es,
  .cta-actions .btn-es {
    width: 100%;
  }

  .about-badge {
    right: 22px;
    bottom: 28px;
    min-width: 96px;
    max-width: 108px;
    padding: 7px 8px 6px;
  }

  .about-cred {
    min-height: 76px;
    padding: 14px 12px;
  }

  .about-creds {
    grid-template-columns: 1fr 1fr;
  }

  .section-header,
  .section-audience,
  .section-services,
  .section-predictive,
  .section-about,
  .section-clients,
  .section-awards,
  .section-testimonials,
  .section-faq,
  .section-cta {
    scroll-margin-top: 88px;
  }

  .whatsapp-float {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    min-height: 56px;
    border-radius: 0;
    gap: 14px;
    padding: 16px 20px calc(16px + env(safe-area-inset-bottom, 0px));
    background: var(--teal-btn);
    box-shadow: none;
  }

  .whatsapp-float-icon svg {
    width: 22px;
    height: 22px;
  }

  .whatsapp-float-label {
    display: inline;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    line-height: 1;
  }

  body:has(.whatsapp-float.is-visible) {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }
}
