﻿:root {
  --bg-ink: #061735;
  --bg-ink-2: #0a2147;
  --text: #14213d;
  --text-on-dark: #f5f7fb;
  --muted: rgba(20, 33, 61, 0.74);
  --accent: #f4a35d;
  --cta-start: #48b43b;
  --cta-end: #2f9627;
  --brand-blue: #173a7a;
  --brand-blue-deep: #0d2f66;
  --brand-gold: #d9a94b;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #eef2f8;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  background: linear-gradient(180deg, #f4f6fa 0%, #eef2f8 100%);
  color: var(--text);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  min-height: 100vh;
  background: linear-gradient(180deg, #f4f6fa 0%, #eef2f8 100%);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: clamp(1.5rem, 3vw, 3rem);
  color: var(--text-on-dark);
  background:
    linear-gradient(90deg, rgba(5, 18, 42, 0.96) 0%, rgba(5, 18, 42, 0.88) 35%, rgba(5, 18, 42, 0.36) 58%, rgba(5, 18, 42, 0.05) 73%),
    radial-gradient(circle at 17% 35%, rgba(15, 72, 150, 0.4), transparent 35%),
    url("./background-desktop01.png") center center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(78, 128, 255, 0.16), transparent 33%),
    radial-gradient(circle at 72% 34%, rgba(255, 255, 255, 0.06), transparent 20%);
  pointer-events: none;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, 780px);
  margin-left: clamp(0.6rem, 2.8vw, 2.4rem);
  padding-left: clamp(0.4rem, 1.5vw, 1.1rem);
}

.hero__content--offset {
  max-width: 100%;
}

.hero__brand {
  display: none;
}

.hero__brand img {
  width: min(11rem, 48vw);
  height: auto;
  margin: 0 auto 1.1rem;
  opacity: 0.98;
}

.hero__content > * {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero__content > *:nth-child(1) {
  transition-delay: 60ms;
}

.hero__content > *:nth-child(2) {
  transition-delay: 130ms;
}

.hero__content > *:nth-child(3) {
  transition-delay: 200ms;
}

.hero__content > *:nth-child(4) {
  transition-delay: 270ms;
}

.hero__content > *:nth-child(5) {
  transition-delay: 340ms;
}

.hero__content > *:nth-child(6) {
  transition-delay: 410ms;
}

body.is-ready .hero__content > * {
  opacity: 1;
  transform: translateY(0);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.85rem, 4vw, 4.65rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  font-weight: 800;
  text-wrap: balance;
  max-width: none;
}

.hero__title-desktop {
  display: block;
}

.hero__title-mobile {
  display: none;
}

.hero__accent {
  width: 3.2rem;
  height: 0.18rem;
  border-radius: 999px;
  background: var(--accent);
  margin: clamp(1.2rem, 2vw, 1.8rem) 0 clamp(1rem, 1.8vw, 1.2rem);
  box-shadow: 0 0 18px rgba(244, 163, 93, 0.45);
}

.hero__lead {
  margin: 0;
  max-width: 34rem;
  color: rgba(245, 247, 251, 0.82);
  font-size: clamp(1.03rem, 1.15vw, 1.35rem);
  line-height: 1.7;
}

.hero__lead strong {
  color: #f7d2a6;
  font-weight: 700;
}

.hero__note {
  margin: clamp(1.2rem, 2vw, 1.8rem) 0 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
  color: rgba(245, 247, 251, 0.9);
  font-size: clamp(0.98rem, 1vw, 1.12rem);
  line-height: 1.5;
}

.hero__note-icon {
  width: 2.6rem;
  height: 2.6rem;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--accent);
  border: 1px solid rgba(244, 163, 93, 0.7);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

.hero__note-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.hero__cta {
  margin-top: clamp(1.5rem, 2.6vw, 2.2rem);
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-height: 4.5rem;
  padding: 0.95rem 1.6rem 0.95rem 2rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cta-start), var(--cta-end));
  color: #f7fff7;
  font-size: 1.04rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  box-shadow: 0 18px 32px rgba(45, 146, 39, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.hero__cta:hover {
  transform: translateY(-2px);
  filter: saturate(1.05);
  box-shadow: 0 24px 42px rgba(45, 146, 39, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.hero__cta-icon {
  width: 2.1rem;
  height: 2.1rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.hero__cta-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

@media (max-width: 1120px) {
  .hero {
    align-items: flex-start;
    padding-top: clamp(2rem, 6vw, 3.5rem);
    background:
      linear-gradient(180deg, rgba(5, 18, 42, 0.94) 0%, rgba(5, 18, 42, 0.82) 30%, rgba(5, 18, 42, 0.34) 68%, rgba(5, 18, 42, 0.05) 100%),
      radial-gradient(circle at 50% 16%, rgba(15, 72, 150, 0.26), transparent 40%),
      url("./background-mobile-wallpaper.jpg") center top / cover no-repeat;
  }

  .hero__content {
    width: min(100%, 56rem);
    padding-left: 0;
  }

  .hero h1 {
    max-width: none;
  }
}

@media (min-width: 761px) and (max-width: 1120px) and (max-height: 741px) {
  .hero {
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.75rem 2.75rem;
    background:
      linear-gradient(180deg, rgba(5, 18, 42, 0.9) 0%, rgba(5, 18, 42, 0.8) 34%, rgba(5, 18, 42, 0.32) 74%, rgba(5, 18, 42, 0.06) 100%),
      radial-gradient(circle at 50% 16%, rgba(15, 72, 150, 0.22), transparent 40%),
      url("./background-mobile-wallpaper.jpg") center top / cover no-repeat;
  }

  .hero__content {
    width: min(100%, 44rem);
    padding-left: 0;
    margin: 0 auto;
    text-align: center;
  }

  .hero__accent {
    margin-inline: auto;
  }

  .hero__lead,
  .hero__note {
    margin-inline: auto;
  }

  .hero__note {
    justify-content: center;
  }

  .hero__cta {
    margin-inline: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero__content > *,
  .hero__cta {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 100svh;
    align-items: flex-end;
    justify-content: center;
    padding: clamp(4.25rem, 10vh, 6rem) 1rem 2.9rem;
    background:
      linear-gradient(180deg, rgba(4, 15, 34, 0.96) 0%, rgba(4, 15, 34, 0.84) 26%, rgba(4, 15, 34, 0.52) 56%, rgba(4, 15, 34, 0.1) 72%, rgba(4, 15, 34, 0.0) 86%),
      url("./background-mobile-wallpaper.jpg") center top / cover no-repeat;
  }

  .hero__content {
    width: min(100%, 24.5rem);
    padding-left: 0;
    text-align: center;
    transform: translateY(-7rem);
  }

  .hero__brand {
    display: none;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 7vw, 2.45rem);
    line-height: 0.95;
    max-width: 100%;
  }

  .hero__title-desktop {
    display: none;
  }

  .hero__title-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.28rem;
  }

  .hero__title-mobile span:first-child {
    font-size: clamp(1.9rem, 7.6vw, 2.45rem);
    line-height: 0.94;
  }

  .hero__title-mobile span:last-child {
    font-size: clamp(1.08rem, 4.1vw, 1.32rem);
    line-height: 1.04;
    letter-spacing: -0.05em;
    white-space: nowrap;
  }

  .hero__lead {
    font-size: 0.98rem;
    line-height: 1.56;
    max-width: 100%;
  }

  .hero__note {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.65rem;
    margin-top: 1rem;
    font-size: 0.94rem;
    line-height: 1.42;
  }

  .hero__cta {
    width: 100%;
    justify-content: center;
    margin-top: 50px;
    min-height: 4.2rem;
    font-size: 0.96rem;
    padding-inline: 1.2rem;
  }

  .video-section {
    margin-top: -1rem;
    padding: 0 0 2.4rem;
    position: relative;
    z-index: 1;
  }
}

@media (max-width: 520px) {
  .hero {
    padding: clamp(4.5rem, 12vh, 6.5rem) 0.9rem 2.6rem;
    background:
      linear-gradient(180deg, rgba(4, 15, 34, 0.96) 0%, rgba(4, 15, 34, 0.88) 28%, rgba(4, 15, 34, 0.54) 59%, rgba(4, 15, 34, 0.12) 77%, rgba(4, 15, 34, 0.0) 88%),
      url("./background-mobile-wallpaper.jpg") center top / cover no-repeat;
  }

  .hero h1 {
    font-size: clamp(1.72rem, 7vw, 2.18rem);
    max-width: 100%;
  }

  .hero__accent {
    margin: 1rem auto 1rem;
  }

  .hero__brand img {
    width: min(9.2rem, 52vw);
    margin-bottom: 0.95rem;
  }

  .hero__title-mobile {
    gap: 0.24rem;
  }

  .hero__title-mobile span:first-child {
    font-size: clamp(1.72rem, 7vw, 2.08rem);
  }

  .hero__title-mobile span:last-child {
    font-size: clamp(0.98rem, 3.9vw, 1.16rem);
    letter-spacing: -0.055em;
  }

  .hero__note {
    font-size: 0.89rem;
  }

  .hero__note-icon {
    width: 2.25rem;
    height: 2.25rem;
  }

  .hero__note-icon svg {
    width: 1rem;
    height: 1rem;
  }

  .video-section {
    margin-top: -0.75rem;
    padding-bottom: 2.1rem;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-shell {
  width: min(1240px, calc(100% - 4rem));
  margin: 0 auto;
}

.section-shell--video {
  width: min(1200px, calc(100% - 3rem));
}

.video-section {
  padding: clamp(2rem, 4vw, 4rem) 0 clamp(2.6rem, 6vw, 5rem);
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
}

.video-card {
  background: #ffffff;
  padding: clamp(0.65rem, 1vw, 1rem);
  border-radius: 1.45rem;
  border: 1px solid rgba(15, 27, 48, 0.06);
  box-shadow: 0 24px 60px rgba(12, 26, 54, 0.1);
}

.video-card__viewport {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 1rem;
  background: #000;
}

.video-card__viewport iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.about-section {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 5vw, 4.75rem) 0 clamp(2.8rem, 6vw, 5.5rem);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.95), rgba(246, 247, 250, 0.98) 42%, rgba(244, 246, 250, 1) 100%);
}

.about-section::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 7rem;
  background: linear-gradient(180deg, rgba(244, 246, 250, 0) 0%, rgba(244, 246, 250, 0.85) 72%, rgba(244, 246, 250, 1) 100%);
  pointer-events: none;
}

.about-section__header {
  text-align: center;
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.about-section__header h2 {
  margin: 0;
  color: var(--brand-blue-deep);
  font-size: clamp(2.6rem, 4.8vw, 4.4rem);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.about-section__subtitle {
  margin: 0.85rem 0 0;
  color: rgba(20, 33, 61, 0.72);
  font-size: clamp(1.02rem, 1.15vw, 1.2rem);
  line-height: 1.55;
  font-weight: 600;
}

.about-section__header span {
  display: block;
  width: 6rem;
  height: 0.16rem;
  margin: 1rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(217, 169, 75, 0.1), var(--brand-gold) 50%, rgba(217, 169, 75, 0.1));
}

.about-section__grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.22fr) minmax(0, 0.86fr);
  gap: clamp(1.8rem, 4vw, 4.25rem);
  align-items: start;
}

.about-section__media {
  position: relative;
  aspect-ratio: 1.75 / 1;
  border-radius: 2rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(253, 227, 187, 0.18), rgba(255, 255, 255, 0.04) 24%, rgba(19, 36, 63, 0.18) 100%);
  background-color: #d9d2c9;
  filter: saturate(0.92) brightness(0.98) contrast(1.02);
  box-shadow: 0 30px 70px rgba(15, 27, 48, 0.14);
}

.about-section__media-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transform: scale(1.08);
  transform-origin: center center;
}

.about-section__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.32), transparent 18%),
    radial-gradient(circle at 80% 20%, rgba(255, 244, 219, 0.15), transparent 16%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), transparent 22%, transparent 56%, rgba(255, 255, 255, 0.08) 84%, rgba(244, 246, 250, 0.84) 100%);
  pointer-events: none;
}

.about-section__media-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 74%, rgba(255, 255, 255, 0.18), transparent 22%),
    linear-gradient(130deg, rgba(8, 24, 47, 0.12), rgba(255, 255, 255, 0) 32%, rgba(255, 255, 255, 0) 64%, rgba(8, 24, 47, 0.18));
  mix-blend-mode: screen;
}

.about-section__copy {
  padding-top: 0.2rem;
  max-width: 44rem;
}

.about-section__copy-head {
  display: flex;
  align-items: center;
  gap: 1rem 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
}

.about-section__copy-head h3 {
  margin: 0;
  color: var(--brand-blue-deep);
  font-size: clamp(1.9rem, 2.5vw, 2.8rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.about-section__specialty {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--brand-gold);
  font-size: clamp(0.92rem, 1vw, 1.05rem);
  font-weight: 700;
  white-space: nowrap;
}

.about-section__specialty svg {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
}

.about-section__copy p {
  margin: 0 0 1rem;
  color: rgba(20, 33, 61, 0.72);
  font-size: clamp(1.02rem, 1.1vw, 1.18rem);
  line-height: 1.72;
}

.about-section__list {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: grid;
  gap: 1.05rem;
}

.about-section__list li {
  position: relative;
  padding-left: 2rem;
}

.about-section__list li::before {
  content: "âœ“";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--brand-blue-deep);
  font-size: 1.1rem;
  font-weight: 800;
}

.about-section__list strong {
  display: block;
  color: var(--brand-blue-deep);
  font-size: clamp(1rem, 1.1vw, 1.12rem);
  font-weight: 800;
  line-height: 1.35;
}

.about-section__list span {
  display: block;
  margin-top: 0.28rem;
  color: rgba(20, 33, 61, 0.64);
  font-size: clamp(0.96rem, 1vw, 1.07rem);
  line-height: 1.58;
}

.institute-section {
  position: relative;
  overflow: hidden;
  padding: clamp(3.1rem, 5.8vw, 5.4rem) 0;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.95), rgba(245, 247, 251, 1) 38%, rgba(241, 245, 250, 1) 100%);
}

.institute-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}

.institute-section__copy {
  max-width: 44rem;
}

.institute-section__eyebrow {
  margin: 0 0 0.85rem;
  color: var(--brand-gold);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.institute-section__copy h2 {
  margin: 0;
  color: var(--brand-blue-deep);
  font-size: clamp(2.55rem, 4.5vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.institute-section__copy p {
  margin: 1rem 0 0;
  color: rgba(20, 33, 61, 0.72);
  font-size: clamp(1rem, 1.08vw, 1.15rem);
  line-height: 1.78;
}

.institute-section__media {
  position: relative;
  height: clamp(28rem, 31vw, 35rem);
  min-height: 0;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 28px 66px rgba(13, 27, 48, 0.12);
  background: linear-gradient(180deg, #dfe7f1 0%, #c9d4e4 100%);
}

.institute-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  display: block;
}

.pillars-section {
  position: relative;
  overflow: hidden;
  padding: clamp(2.8rem, 5vw, 4.8rem) 0;
  background: linear-gradient(180deg, #eef3f9 0%, #e8eff7 100%);
}

.pillars-section__header {
  text-align: center;
  margin-bottom: clamp(1.6rem, 3.2vw, 2.4rem);
}

.pillars-section__eyebrow {
  margin: 0 0 0.7rem;
  color: var(--brand-gold);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pillars-section__header h2 {
  margin: 0;
  color: var(--brand-blue-deep);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.pillars-section__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pillar-card {
  display: grid;
  gap: 0.82rem;
  padding: 0.82rem;
  border-radius: 1.6rem;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 50px rgba(8, 23, 49, 0.18);
}

.pillar-card--diagnostico {
  background: linear-gradient(180deg, #123f8e 0%, #0b2f69 100%);
}

.pillar-card--seguranca {
  background: linear-gradient(180deg, #174a9d 0%, #10326d 100%);
}

.pillar-card--equipe {
  background: linear-gradient(180deg, #1b56b0 0%, #0d2f66 100%);
}

.pillar-card__art {
  position: relative;
  aspect-ratio: 220 / 154;
  display: grid;
  place-items: center;
  padding: 0.64rem;
  overflow: hidden;
  border-radius: 1.2rem;
  background: transparent;
}

.pillar-card__art img {
  display: block;
  width: 82%;
  height: 82%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.pillar-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.18rem, 1.6vw, 1.45rem);
  line-height: 1.15;
  font-weight: 800;
}

.pillar-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.98rem, 1.03vw, 1.08rem);
  line-height: 1.7;
}

.team-showcase {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  background: linear-gradient(180deg, #f4f6fa 0%, #eef2f8 100%);
}

.team-showcase__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  grid-template-areas:
    "copy carousel"
    "text carousel";
  gap: clamp(1.5rem, 3vw, 3.2rem);
  align-items: start;
}

.team-showcase__copy {
  padding: clamp(0.3rem, 1vw, 0.6rem) 0;
  grid-area: copy;
  display: grid;
  gap: 0.9rem;
}

.team-showcase__text {
  display: grid;
  gap: 1rem;
  grid-area: text;
  margin-top: -0.45rem;
  max-width: 40rem;
}

.team-showcase__eyebrow {
  margin: 0 0 0.8rem;
  color: var(--brand-gold);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.team-showcase__copy h2 {
  margin: 0;
  color: var(--brand-blue-deep);
  font-size: clamp(1.9rem, 3.2vw, 3.05rem);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.team-showcase__copy p {
  color: rgba(20, 33, 61, 0.72);
  font-size: clamp(1rem, 1.08vw, 1.16rem);
  line-height: 1.72;
}

.team-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 0.75rem;
  margin-bottom: 0.55rem;
  padding: 1rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(26, 67, 138, 0.08);
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.95), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(236, 242, 250, 0.92));
  box-shadow: 0 18px 40px rgba(13, 27, 48, 0.06);
  backdrop-filter: blur(10px);
}

.team-highlights__item {
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  min-height: 2.55rem;
  padding: 0.48rem 0.92rem;
  border-radius: 999px;
  border: 1px solid rgba(26, 67, 138, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(234, 240, 249, 0.98));
  color: var(--brand-blue-deep);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.2;
  white-space: normal;
  box-shadow: 0 10px 20px rgba(13, 27, 48, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.team-highlights__item::before {
  content: "\2713";
  display: inline-grid;
  place-items: center;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  background: rgba(26, 67, 138, 0.1);
  color: var(--brand-blue);
  font-size: 0.7rem;
  font-weight: 900;
  flex: 0 0 auto;
}

.team-highlights__item:hover {
  transform: translateY(-1px);
  border-color: rgba(26, 67, 138, 0.18);
  box-shadow: 0 14px 26px rgba(13, 27, 48, 0.08);
}

.team-highlights__item:nth-child(6),
.team-highlights__item:nth-child(8) {
  grid-column: 1 / -1;
}

.team-showcase__gallery {
  width: 100%;
  overflow: hidden;
  padding: 0.2rem 0 0.5rem;
}

.team-showcase__gallery-track {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  width: max-content;
  animation: gallery-scroll-left 42s linear infinite;
  will-change: transform;
}

.team-showcase__gallery-track:hover {
  animation-play-state: paused;
}

.team-showcase__gallery-group {
  display: flex;
  align-items: stretch;
  gap: 1rem;
}

.team-showcase__gallery-item {
  margin: 0;
  flex: 0 0 clamp(10.5rem, 13vw, 13.75rem);
  aspect-ratio: 1 / 1;
  border-radius: 1.15rem;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(235, 241, 250, 0.98));
  box-shadow: 0 14px 28px rgba(13, 27, 48, 0.12);
}

.team-showcase__gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.team-carousel-simple {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
  grid-area: carousel;
  width: min(100%, 31rem);
  justify-self: end;
}

.team-showcase__cta {
  justify-self: start;
  margin-top: 0.55rem;
  display: inline-flex;
  align-items: center;
  min-height: 3.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cta-start), var(--cta-end));
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(45, 146, 39, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.team-showcase__cta:hover,
.team-showcase__cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 20px 34px rgba(45, 146, 39, 0.3);
}

.science-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 6.5vw, 6rem) 0;
  background: linear-gradient(180deg, #f4f6fa 0%, #eef2f8 100%);
}

.science-shell {
  display: grid;
  gap: 1.4rem;
}

.science-section__copy {
  display: grid;
  gap: 0.85rem;
  max-width: 48rem;
}

.science-section__eyebrow {
  margin: 0;
  color: var(--brand-gold);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.science-section__copy h2 {
  margin: 0;
  color: var(--brand-blue-deep);
  font-size: clamp(1.9rem, 3.15vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.science-section__subtitle {
  margin: 0;
  color: rgba(20, 33, 61, 0.72);
  font-size: clamp(1rem, 1.08vw, 1.16rem);
  line-height: 1.72;
  max-width: 44rem;
}

.science-section__body {
  max-width: 49rem;
}

.science-section__body p {
  margin: 0;
  color: rgba(20, 33, 61, 0.7);
  font-size: clamp(0.98rem, 1.02vw, 1.08rem);
  line-height: 1.78;
}

@keyframes gallery-scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.responsible-section__quote {
  margin: 1rem 0 0;
  padding: 1rem 1.1rem;
  border-left: 0.24rem solid var(--brand-gold);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.6);
  color: rgba(20, 33, 61, 0.8);
  font-size: clamp(0.98rem, 1.02vw, 1.08rem);
  line-height: 1.7;
  font-style: italic;
}

.responsible-section__bio-label {
  margin: 1.15rem 0 0.75rem;
  color: var(--brand-blue-deep);
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-carousel-simple__arrow {
  width: 3.2rem;
  height: 3.2rem;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: var(--brand-blue-deep);
  box-shadow: 0 12px 26px rgba(13, 27, 48, 0.14);
  cursor: pointer;
}

.team-carousel-simple__arrow svg {
  width: 1.45rem;
  height: 1.45rem;
}

.team-carousel-simple__viewport {
  position: relative;
  min-height: 34rem;
  overflow: visible;
  border-radius: 1.75rem;
}

.team-carousel-simple__viewport::before {
  content: "";
  position: absolute;
  inset: 10% 12% 8%;
  border-radius: 2rem;
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.72), transparent 48%),
    linear-gradient(180deg, rgba(8, 23, 49, 0.06), rgba(8, 23, 49, 0.015));
  filter: blur(22px);
  opacity: 0.72;
  pointer-events: none;
}

.team-carousel-simple__track {
  position: relative;
  min-height: 34rem;
}

.team-card--simple {
  position: absolute;
  top: 0;
  left: 50%;
  width: clamp(14.5rem, 16vw, 17.3rem);
  overflow: hidden;
  border-radius: 1.65rem;
  background: transparent;
  box-shadow: 0 16px 38px rgba(13, 27, 48, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(0.84);
  filter: saturate(0.85) brightness(0.96);
  transition:
    transform 600ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 360ms ease,
    filter 360ms ease,
    box-shadow 360ms ease;
  will-change: transform, opacity, filter;
}

.team-card--simple.is-active {
  z-index: 3;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) scale(1);
  filter: none;
  box-shadow: 0 24px 58px rgba(13, 27, 48, 0.2);
}

.team-card--simple.is-prev {
  z-index: 2;
  opacity: 0.38;
  transform: translateX(calc(-50% - 56%)) scale(0.88);
}

.team-card--simple.is-next {
  z-index: 2;
  opacity: 0.38;
  transform: translateX(calc(-50% + 56%)) scale(0.88);
}

.team-card--simple.is-hidden {
  opacity: 0;
  transform: translateX(-50%) scale(0.74);
}

.team-card--simple.is-active .team-card__body {
  background: transparent;
  backdrop-filter: blur(18px) saturate(1.15);
}

.team-card--simple .team-card__photo {
  aspect-ratio: 9 / 16;
  overflow: hidden;
}

.team-card--simple .team-card__body {
  position: relative;
  min-height: 8rem;
  margin-top: -8rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem 1rem 1rem;
  background: transparent;
  color: #ffffff;
  overflow: hidden;
  isolation: isolate;
}

.team-card--simple .team-card__body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 23, 49, 0) 0%, rgba(8, 23, 49, 0.18) 16%, rgba(8, 23, 49, 0.66) 56%, rgba(8, 23, 49, 0.98) 100%);
  pointer-events: none;
  z-index: 0;
}

.team-card--simple .team-card__body h3 {
  position: relative;
  z-index: 1;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.team-card--simple .team-card__specialty {
  position: relative;
  z-index: 1;
  color: #ffffff;
  margin-bottom: 0;
}

.team-card--simple .team-card__body h3,
.team-card--simple .team-card__body p,
.team-card--simple .team-card__body span {
  color: #ffffff !important;
}

.team-card--simple .team-card__body * {
  text-shadow: 0 1px 2px rgba(8, 23, 49, 0.38);
}

.team-card--simple .team-card__body p:last-child {
  color: #ffffff !important;
}

.responsible-section {
  position: relative;
  padding: clamp(4rem, 7vw, 6.4rem) 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.7), transparent 26%),
    radial-gradient(circle at 88% 82%, rgba(17, 58, 122, 0.1), transparent 28%),
    linear-gradient(180deg, #f7f9fc 0%, #eef3f9 100%);
}

.responsible-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, rgba(8, 23, 49, 0.02), rgba(8, 23, 49, 0.05));
  pointer-events: none;
}

.responsible-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  grid-template-areas: "copy media";
  gap: clamp(1.6rem, 3.4vw, 3.4rem);
  align-items: center;
}

.responsible-section__copy {
  padding: clamp(0.4rem, 0.8vw, 0.8rem) 0;
  grid-area: copy;
}

.responsible-section__eyebrow {
  margin: 0 0 0.85rem;
  color: var(--brand-gold);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.responsible-section__copy h2 {
  margin: 0;
  color: var(--brand-blue-deep);
  font-size: clamp(2.35rem, 4.3vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.responsible-section__subtitle {
  margin: 1rem 0 0;
  max-width: 38rem;
  color: rgba(20, 33, 61, 0.8);
  font-size: clamp(1.05rem, 1.1vw, 1.2rem);
  line-height: 1.75;
}

.responsible-section__bio {
  margin-top: 1.35rem;
  padding: 1.2rem 1.15rem 1.25rem;
  border-left: 0.22rem solid rgba(217, 169, 75, 0.82);
  border-radius: 1.2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.58));
  box-shadow: 0 18px 40px rgba(15, 27, 48, 0.06);
}

.responsible-section__bio p {
  margin: 0;
  color: rgba(20, 33, 61, 0.8);
  font-size: clamp(0.96rem, 1.02vw, 1.05rem);
  line-height: 1.68;
}

.responsible-section__bio p + p {
  margin-top: 0.65rem;
}

.responsible-section__media {
  position: relative;
  justify-self: end;
  width: min(100%, 32rem);
  grid-area: media;
}

.responsible-section__frame {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  aspect-ratio: 0.9 / 1;
  background:
    linear-gradient(180deg, rgba(8, 23, 49, 0.08), rgba(8, 23, 49, 0.02)),
    #dfe5ee;
  box-shadow: 0 30px 70px rgba(15, 27, 48, 0.16);
}

.responsible-section__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.34), transparent 18%),
    linear-gradient(180deg, rgba(8, 23, 49, 0.08), rgba(8, 23, 49, 0) 24%, rgba(8, 23, 49, 0.22) 100%);
  pointer-events: none;
  z-index: 1;
}

.responsible-section__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.testimonials-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 6.5vw, 6rem) 0;
  background: linear-gradient(180deg, #f4f6fa 0%, #eef2f8 100%);
}

.testimonials-section__header {
  max-width: 56rem;
  margin-bottom: 1.5rem;
}

.testimonials-section__eyebrow {
  margin: 0 0 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--brand-gold);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.google-badge__icon {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  filter: drop-shadow(0 2px 6px rgba(13, 27, 48, 0.12));
}

.testimonials-section__header h2 {
  margin: 0;
  color: var(--brand-blue-deep);
  font-size: clamp(2.25rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.testimonials-section__subtitle {
  margin: 0.95rem 0 0;
  color: rgba(20, 33, 61, 0.72);
  font-size: clamp(1rem, 1.08vw, 1.15rem);
  line-height: 1.72;
}

.testimonials-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 1rem;
  align-items: start;
}

.testimonials-section__quotes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-card {
  position: relative;
  padding: 1.2rem 1.2rem 1.15rem;
  border-radius: 1.35rem;
  background: linear-gradient(180deg, #ffffff 0%, #eef3f9 100%);
  border: 1px solid rgba(220, 227, 238, 0.9);
  box-shadow: 0 16px 38px rgba(13, 27, 48, 0.08);
}

.testimonial-card__mark {
  color: var(--brand-gold);
  font-size: 3.3rem;
  line-height: 0.8;
  font-weight: 800;
}

.testimonial-card p {
  margin: 0.2rem 0 0.95rem;
  color: rgba(20, 33, 61, 0.76);
  font-size: clamp(0.98rem, 1.02vw, 1.08rem);
  line-height: 1.65;
}

.testimonial-card strong {
  color: var(--brand-blue-deep);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.testimonials-video-card {
  height: 100%;
  display: grid;
  align-content: start;
  gap: 0.9rem;
  padding: 1.3rem;
  border-radius: 1.6rem;
  background: linear-gradient(180deg, rgba(22, 54, 110, 0.98), rgba(12, 36, 84, 0.96));
  color: #ffffff;
  box-shadow: 0 22px 46px rgba(13, 27, 48, 0.14);
}

.testimonials-video-card__eyebrow {
  margin: 0;
  color: #f7d699;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.testimonials-video-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.testimonials-video-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

@media (max-width: 760px) {
  .hero {
    align-items: flex-end;
    justify-content: center;
    padding-top: clamp(3.85rem, 9vh, 5.1rem);
    padding-bottom: 2.3rem;
  }

  .hero__mobilebar {
    top: 0.65rem;
    left: 0.7rem;
    right: 0.7rem;
  }

  .hero__mobilelogo img {
    width: 5rem;
    max-width: 5rem;
  }

  .hero__menu-toggle {
    width: 2.7rem;
    height: 2.7rem;
  }

  .hero__content {
    width: min(100%, 23rem);
    margin-left: 0;
    padding-left: 0;
    text-align: center;
    transform: translateY(0.35rem);
  }

  .hero h1 {
    font-size: clamp(1.62rem, 6.8vw, 2.15rem);
    line-height: 0.98;
    max-width: 100%;
  }

  .hero__title-mobile {
    gap: 0.18rem;
  }

  .hero__title-mobile span:first-child {
    font-size: clamp(1.58rem, 6.5vw, 2.02rem);
    line-height: 0.98;
  }

  .hero__title-mobile span:last-child {
    font-size: clamp(0.92rem, 3.8vw, 1.1rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
  }

  .hero__lead {
    font-size: 0.92rem;
    line-height: 1.5;
    max-width: 100%;
  }

  .hero__cta {
    margin-top: 1.8rem;
    min-height: 3.75rem;
    font-size: 0.92rem;
    padding-inline: 1.05rem;
  }
}

@media (max-width: 520px) {
  .hero {
    align-items: flex-end;
    justify-content: center;
    padding-top: clamp(4.55rem, 10vh, 5.65rem);
    padding-bottom: 2.55rem;
  }

  .hero__content {
    width: min(100%, 21.5rem);
    transform: translateY(0.9rem);
  }

  .hero__mobilelogo img {
    width: 4.5rem;
    max-width: 4.5rem;
  }

  .hero__menu-toggle {
    width: 2.5rem;
    height: 2.5rem;
  }

  .hero h1 {
    font-size: clamp(1.5rem, 7vw, 1.98rem);
  }

  .hero__title-mobile span:first-child {
    font-size: clamp(1.48rem, 6.7vw, 1.95rem);
  }

  .hero__title-mobile span:last-child {
    font-size: clamp(0.88rem, 3.7vw, 1.02rem);
  }

  .hero__lead {
    font-size: 0.89rem;
  }

  .hero__cta {
    margin-top: 1.35rem;
    min-height: 3.6rem;
    font-size: 0.9rem;
  }
}


@media (max-width: 760px) {
  .hero {
    padding-top: clamp(3.85rem, 9vh, 5.1rem);
  }

  .hero__mobilebar {
    top: 0.65rem;
    left: 0.7rem;
    right: 0.7rem;
  }

  .hero__mobilelogo img {
    width: 5rem;
    max-width: 5rem;
  }

  .hero__menu-toggle {
    width: 2.7rem;
    height: 2.7rem;
  }

  .hero__content {
    width: min(100%, 23rem);
    margin-left: 0;
    padding-left: 0;
    text-align: center;
    transform: translateY(-2.15rem);
  }

  .hero h1 {
    font-size: clamp(1.62rem, 6.8vw, 2.15rem);
    line-height: 0.98;
    max-width: 100%;
  }

  .hero__title-mobile {
    gap: 0.18rem;
  }

  .hero__title-mobile span:first-child {
    font-size: clamp(1.58rem, 6.5vw, 2.02rem);
    line-height: 0.98;
  }

  .hero__title-mobile span:last-child {
    font-size: clamp(0.92rem, 3.8vw, 1.1rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
  }

  .hero__lead {
    font-size: 0.92rem;
    line-height: 1.5;
    max-width: 100%;
  }

  .hero__cta {
    margin-top: 1.8rem;
    min-height: 3.75rem;
    font-size: 0.92rem;
    padding-inline: 1.05rem;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-top: clamp(3.5rem, 8vh, 4.8rem);
  }

  .hero__content {
    width: min(100%, 21.5rem);
    transform: translateY(-1.55rem);
  }

  .hero__mobilelogo img {
    width: 4.5rem;
    max-width: 4.5rem;
  }

  .hero__menu-toggle {
    width: 2.5rem;
    height: 2.5rem;
  }

  .hero h1 {
    font-size: clamp(1.5rem, 7vw, 1.98rem);
  }

  .hero__title-mobile span:first-child {
    font-size: clamp(1.48rem, 6.7vw, 1.95rem);
  }

  .hero__title-mobile span:last-child {
    font-size: clamp(0.88rem, 3.7vw, 1.02rem);
  }

  .hero__lead {
    font-size: 0.89rem;
  }

  .hero__cta {
    margin-top: 1.55rem;
    min-height: 3.6rem;
    font-size: 0.9rem;
  }
}

/* Keep narrow screens from exposing scrollbar or carousel overflow gutters. */
@media (max-width: 760px) {
  html {
    overflow-x: hidden;
    scrollbar-width: none;
  }

  html::-webkit-scrollbar {
    display: none;
    width: 0;
  }

  .team-showcase {
    overflow: hidden;
  }

  .team-carousel-simple,
  .team-carousel-simple__viewport {
    max-width: 100%;
  }

  .team-carousel-simple__viewport {
    overflow: hidden;
  }

  .floating-whatsapp {
    right: max(0.8rem, env(safe-area-inset-right));
    max-width: calc(100vw - 1.6rem);
    white-space: nowrap;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 112svh !important;
    align-items: flex-end !important;
    justify-content: center !important;
    padding-top: clamp(5.4rem, 12vh, 6.8rem) !important;
    padding-bottom: 3rem !important;
  }

  .hero__content {
    margin-top: clamp(2rem, 7vh, 4.25rem) !important;
    transform: none !important;
  }

  .hero__mobilebar {
    top: 0.9rem !important;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 118svh !important;
    padding-top: clamp(5.8rem, 13vh, 7.25rem) !important;
    padding-bottom: 3.2rem !important;
  }

  .hero__content {
    margin-top: clamp(2.4rem, 9vh, 5rem) !important;
    transform: none !important;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: clamp(3.85rem, 9vh, 5.1rem);
  }

  .hero__mobilebar {
    top: 0.65rem;
    left: 0.7rem;
    right: 0.7rem;
  }

  .hero__mobilelogo img {
    width: 5rem;
    max-width: 5rem;
  }

  .hero__menu-toggle {
    width: 2.7rem;
    height: 2.7rem;
  }

  .hero__content {
    width: min(100%, 23rem);
    margin-left: 0;
    padding-left: 0;
    text-align: center;
    transform: translateY(-2.8rem);
  }

  .hero h1 {
    font-size: clamp(1.62rem, 6.8vw, 2.15rem);
    line-height: 0.98;
    max-width: 100%;
  }

  .hero__title-mobile {
    gap: 0.18rem;
  }

  .hero__title-mobile span:first-child {
    font-size: clamp(1.58rem, 6.5vw, 2.02rem);
    line-height: 0.98;
  }

  .hero__title-mobile span:last-child {
    font-size: clamp(0.92rem, 3.8vw, 1.1rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
  }

  .hero__lead {
    font-size: 0.92rem;
    line-height: 1.5;
    max-width: 100%;
  }

  .hero__cta {
    margin-top: 1.8rem;
    min-height: 3.75rem;
    font-size: 0.92rem;
    padding-inline: 1.05rem;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-top: clamp(3.5rem, 8vh, 4.8rem);
  }

  .hero__content {
    width: min(100%, 21.5rem);
    transform: translateY(-3.35rem);
  }

  .hero__mobilelogo img {
    width: 4.5rem;
    max-width: 4.5rem;
  }

  .hero__menu-toggle {
    width: 2.5rem;
    height: 2.5rem;
  }

  .hero h1 {
    font-size: clamp(1.62rem, 7.6vw, 2.1rem);
  }

  .hero__title-mobile span:first-child {
    font-size: clamp(1.6rem, 7.2vw, 2.06rem);
  }

  .hero__title-mobile span:last-child {
    font-size: clamp(0.94rem, 4vw, 1.08rem);
  }

  .hero__lead {
    font-size: 0.93rem;
  }

  .hero__cta {
    margin-top: 1.25rem;
    min-height: 3.6rem;
    font-size: 0.92rem;
  }
}

@media (max-width: 760px) {
  .pillars-section {
    padding: 1.75rem 0 2.15rem !important;
  }

  .pillars-section__header {
    margin-bottom: 1rem !important;
  }

  .pillars-section__eyebrow {
    margin-bottom: 0.45rem !important;
    font-size: 0.72rem !important;
  }

  .pillars-section__header h2 {
    font-size: clamp(1.6rem, 7vw, 2.1rem) !important;
    line-height: 1.02 !important;
  }

  .pillars-section__grid {
    grid-template-columns: 1fr !important;
    gap: 0.7rem !important;
    width: min(100%, 24rem) !important;
    margin-inline: auto !important;
  }

  .pillar-card {
    gap: 0.45rem !important;
    padding: 0.56rem !important;
    border-radius: 1.15rem !important;
  }

  .pillar-card__art {
    aspect-ratio: 220 / 118 !important;
    padding: 0.35rem !important;
    border-radius: 0.9rem !important;
  }

  .pillar-card__art img {
    width: 66% !important;
    height: 66% !important;
  }

  .pillar-card h3 {
    font-size: clamp(1.02rem, 4.8vw, 1.22rem) !important;
    line-height: 1.1 !important;
    text-align: center !important;
  }

  .pillar-card p {
    font-size: 0.82rem !important;
    line-height: 1.45 !important;
    text-align: center !important;
  }
}

@media (max-width: 520px) {
  .pillars-section {
    padding: 1.45rem 0 1.85rem !important;
  }

  .pillars-section__header {
    margin-bottom: 0.85rem !important;
  }

  .pillars-section__header h2 {
    font-size: clamp(1.5rem, 6.6vw, 1.95rem) !important;
  }

  .pillars-section__grid {
    gap: 0.58rem !important;
    width: min(100%, 22rem) !important;
  }

  .pillar-card {
    gap: 0.36rem !important;
    padding: 0.48rem !important;
  }

  .pillar-card__art {
    aspect-ratio: 220 / 100 !important;
    padding: 0.28rem !important;
  }

  .pillar-card__art img {
    width: 60% !important;
    height: 60% !important;
  }

  .pillar-card h3 {
    font-size: 0.98rem !important;
    text-align: center !important;
  }

  .pillar-card p {
    font-size: 0.77rem !important;
    line-height: 1.38 !important;
    text-align: center !important;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 100svh !important;
    padding: 4rem 0.9rem 2.4rem !important;
  }

  .hero__content {
    width: min(100%, 22.5rem) !important;
    transform: translateY(-5.5rem) !important;
  }

  .hero h1 {
    font-size: clamp(1.78rem, 8vw, 2.28rem) !important;
  }

  .hero__title-mobile span:first-child {
    font-size: clamp(1.75rem, 7.8vw, 2.22rem) !important;
  }

  .hero__title-mobile span:last-child {
    font-size: clamp(1.02rem, 4.3vw, 1.16rem) !important;
  }

  .hero__lead {
    font-size: 0.97rem !important;
    line-height: 1.44 !important;
  }

  .hero__cta {
    margin-top: 1rem !important;
    min-height: 3.5rem !important;
    font-size: 0.93rem !important;
  }
}

@media (max-width: 520px) {
  .team-highlights__item {
    gap: 0.3rem;
    padding: 0.42rem 0.8rem;
  }

  .team-highlights__item::before {
    width: 0.82rem;
    height: 0.82rem;
    font-size: 0.56rem;
  }
}

.testimonials-video-card__embed {
  margin-top: 0.5rem;
  display: grid;
  place-items: center;
  min-height: 0;
  padding: 0.35rem;
  border-radius: 1.2rem;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.testimonials-video-card__embed iframe {
  width: min(100%, 19rem);
  aspect-ratio: 9 / 16;
  height: auto;
  display: block;
  border: 0;
  border-radius: 1rem;
  overflow: hidden;
}

@media (max-width: 1120px) {
  .hero {
    min-height: auto;
    padding: 5rem 1.25rem 4rem;
    background:
      linear-gradient(180deg, rgba(5, 18, 42, 0.84) 0%, rgba(5, 18, 42, 0.72) 34%, rgba(5, 18, 42, 0.26) 70%, rgba(5, 18, 42, 0.06) 100%),
      url("./background-mobile-wallpaper.jpg") center top / cover no-repeat;
  }

  .hero__content {
    width: min(100%, 52rem);
    margin-left: 0;
    padding-left: 0;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
  }

  .hero__lead {
    max-width: 32rem;
    font-size: clamp(0.98rem, 1.2vw, 1.12rem);
  }

  .hero__cta {
    min-height: 4rem;
    font-size: 0.98rem;
  }

  .team-showcase__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "carousel"
      "text";
  }

  .team-showcase__copy,
  .team-showcase__carousel,
  .team-showcase__text {
    justify-self: start;
  }

  .team-showcase__carousel {
    width: min(100%, 28rem);
  }

  .team-carousel-simple__viewport {
    min-height: 31rem;
  }

  .team-card--simple {
    width: clamp(13rem, 42vw, 16rem);
  }

  .team-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .science-section {
    padding: 3.25rem 0 3.5rem;
  }

  .science-shell {
    gap: 1.15rem;
  }

  .science-section__copy h2 {
    font-size: clamp(1.7rem, 4vw, 2.6rem);
  }

  .science-section__body p {
    font-size: 0.98rem;
  }

  .testimonials-section__grid {
    grid-template-columns: 1fr;
  }

  .testimonials-section__quotes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonials-video-card__embed iframe {
    width: min(100%, 18rem);
  }

  .how-to-get__grid {
    grid-template-columns: 1fr;
  }

  .how-to-get__map-frame,
  .how-to-get__map-frame iframe {
    height: 21rem;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
    padding: 5.25rem 1rem 3.2rem;
    background:
      linear-gradient(180deg, rgba(5, 18, 42, 0.84) 0%, rgba(5, 18, 42, 0.74) 26%, rgba(5, 18, 42, 0.34) 72%, rgba(5, 18, 42, 0.1) 100%),
      url("./background-mobile-wallpaper.jpg") center top / cover no-repeat;
  }

  .hero__content {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 11vw, 3rem);
    line-height: 0.96;
  }

  .hero__lead {
    max-width: 100%;
    font-size: 0.98rem;
  }

  .hero__note {
    font-size: 0.92rem;
  }

  .hero__cta {
    min-height: 3.9rem;
    padding: 0.85rem 1.2rem 0.85rem 1.4rem;
    font-size: 0.95rem;
  }

  .team-showcase__inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .team-showcase__copy {
    order: 1;
  }

  .team-carousel-simple {
    order: 2;
    width: 100%;
    max-width: 24rem;
    margin-top: 0.25rem;
    justify-self: start;
  }

  .team-carousel-simple__viewport {
    min-height: 28rem;
  }

  .team-card--simple {
    width: clamp(12rem, 74vw, 14rem);
  }

  .team-showcase__text {
    order: 3;
  }

  .team-highlights {
    grid-template-columns: 1fr;
    padding: 0.75rem;
    gap: 0.5rem;
  }

  .team-highlights__item {
    font-size: 0.84rem;
    min-height: 2.35rem;
  }

  .team-showcase__cta {
    width: fit-content;
  }

  .science-section {
    padding: 2.8rem 0 3.1rem;
  }

  .science-section__copy h2 {
    font-size: clamp(1.55rem, 10vw, 2.2rem);
  }

  .science-section__body p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .team-showcase__gallery-track {
    gap: 0.75rem;
  }

  .team-showcase__gallery-item {
    flex-basis: clamp(9.5rem, 42vw, 11rem);
  }

  .testimonials-section {
    padding: 3rem 0 3.25rem;
  }

  .testimonials-section__quotes {
    grid-template-columns: 1fr;
  }

  .testimonials-video-card {
    padding: 1rem;
  }

  .testimonials-video-card__embed iframe {
    width: min(100%, 16.5rem);
  }

  .how-to-get__map-frame,
  .how-to-get__map-frame iframe {
    height: 18rem;
  }

  .how-to-get__info-card,
  .how-to-get__map-card {
    padding: 0.9rem;
  }
}

@media (max-width: 520px) {
  .hero__mobilebar {
    left: 0.7rem;
    right: 0.7rem;
    top: 0.7rem;
  }

  .hero__mobilelogo img {
    width: 6rem;
  }

  .hero__menu-toggle {
    width: 2.8rem;
    height: 2.8rem;
  }

  .team-highlights {
    padding: 0.65rem;
  }

  .team-highlights__item {
    font-size: 0.8rem;
  }

  .team-carousel-simple {
    max-width: 21.5rem;
  }

  .team-carousel-simple__viewport {
    min-height: 26.5rem;
  }

  .testimonials-video-card__embed iframe {
    width: min(100%, 15.5rem);
  }

  .how-to-get__map-frame,
  .how-to-get__map-frame iframe {
    height: 16.5rem;
  }
}

.about-section,
.institute-section,
.pillars-section,
.team-showcase,
.responsible-section,
.testimonials-section,
.blog-section,
.how-to-get-section {
  background: transparent !important;
}

.about-section::before,
.responsible-section::before,
.how-to-get-section::before,
.testimonials-section::before,
.testimonials-section::after {
  content: none !important;
}

@media (max-width: 1024px) {
  .institute-shell,
  .science-shell,
  .testimonials-section__grid {
    grid-template-columns: 1fr;
  }

  .institute-section__media {
    width: min(620px, 100%);
    min-height: 24rem;
    margin: 0 auto;
  }

  .pillars-section__grid {
    grid-template-columns: 1fr;
  }

  .science-section__visual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .science-tile--primary {
    grid-column: 1 / -1;
  }

  .testimonials-section__quotes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-highlights {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding: 0.85rem;
  }

  .team-carousel-simple {
    width: min(100%, 28rem);
  }

  .team-carousel-simple__viewport {
    min-height: 31rem;
  }

  .team-card--simple {
    width: clamp(13.5rem, 64vw, 16rem);
  }
}

@media (max-width: 760px) {
  .institute-section {
    padding: 2.4rem 0 3.1rem;
  }

  .institute-section__copy h2 {
    font-size: clamp(2.05rem, 10vw, 2.8rem);
  }

  .institute-section__copy p {
    font-size: 0.98rem;
  }

  .institute-section__media {
    min-height: 18rem;
    border-radius: 1.45rem;
  }

  .pillars-section {
    padding: 2.3rem 0 3rem;
  }

  .pillars-section__grid {
    grid-template-columns: 1fr;
  }

  .team-highlights {
    grid-template-columns: 1fr;
  }

  .science-section {
    padding: 3rem 0 3.3rem;
  }

  .science-section__visual {
    grid-template-columns: 1fr;
  }

  .science-tile--primary {
    grid-column: auto;
  }

  .testimonials-section {
    padding: 3rem 0 3.35rem;
  }

  .testimonials-section__quotes {
    grid-template-columns: 1fr;
  }

  .testimonials-video-card__embed {
    min-height: 14rem;
  }

  .team-highlights__item {
    width: 100%;
    white-space: normal;
  }

  .team-showcase__gallery-item {
    flex-basis: clamp(9.5rem, 42vw, 11.5rem);
  }
}

@media (max-width: 1024px) {
  .institute-shell,
  .science-shell,
  .testimonials-section__grid {
    grid-template-columns: 1fr;
  }

  .institute-section__media {
    width: min(620px, 100%);
    min-height: 24rem;
    margin: 0 auto;
  }

  .pillars-section__grid {
    grid-template-columns: 1fr;
  }

  .science-section__visual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .science-tile--primary {
    grid-column: 1 / -1;
  }

  .testimonials-section__quotes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .institute-section {
    padding: 2.4rem 0 3.1rem;
  }

  .institute-section__copy h2 {
    font-size: clamp(2.05rem, 10vw, 2.8rem);
  }

  .institute-section__copy p {
    font-size: 0.98rem;
  }

  .institute-section__media {
    min-height: 18rem;
    border-radius: 1.45rem;
  }

  .pillars-section {
    padding: 2.3rem 0 3rem;
  }

  .pillars-section__grid {
    grid-template-columns: 1fr;
  }

  .team-highlights {
    grid-template-columns: 1fr;
  }

  .science-section {
    padding: 3rem 0 3.3rem;
  }

  .science-section__visual {
    grid-template-columns: 1fr;
  }

  .science-tile--primary {
    grid-column: auto;
  }

  .testimonials-section {
    padding: 3rem 0 3.35rem;
  }

  .testimonials-section__quotes {
    grid-template-columns: 1fr;
  }

  .testimonials-video-card__embed {
    min-height: 14rem;
  }
}

@keyframes clinical-cases-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .clinical-cases__track {
    animation: none;
  }
}

/* Clinical cases and patient testimonial sections share the same editorial rhythm. */
.clinical-social-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4.2rem, 7vw, 6.4rem) 0 clamp(4.2rem, 7vw, 6rem);
  background:
    radial-gradient(circle at 50% -14%, rgba(45, 118, 255, 0.22), transparent 26%),
    linear-gradient(180deg, #0a2f6e 0%, #08275b 48%, #08234d 100%);
  color: #ffffff;
}

.clinical-social-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 13% 32%, rgba(255, 255, 255, 0.12), transparent 14%),
    radial-gradient(circle at 86% 28%, rgba(255, 255, 255, 0.1), transparent 14%),
    radial-gradient(circle at 8% 62%, rgba(255, 255, 255, 0.06), transparent 18%),
    radial-gradient(circle at 92% 60%, rgba(255, 255, 255, 0.06), transparent 18%),
    radial-gradient(circle at 50% 42%, rgba(34, 112, 255, 0.2), transparent 42%),
    linear-gradient(180deg, rgba(4, 19, 49, 0.3), rgba(4, 19, 49, 0.34));
  pointer-events: none;
}

.clinical-social-shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1.8rem, 3vw, 2.6rem);
}

.clinical-cases-section,
.patient-testimonials-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: transparent;
  color: #ffffff;
}

.clinical-cases-section::before,
.patient-testimonials-section::before {
  content: none;
}

.clinical-cases-shell,
.patient-testimonials-shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.clinical-social__divider {
  position: relative;
  width: min(100%, 100%);
  height: 1px;
  align-self: stretch;
  background: linear-gradient(90deg, rgba(244, 163, 93, 0), rgba(244, 163, 93, 0.95), rgba(244, 163, 93, 0));
}

.clinical-social__divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 6px rgba(244, 163, 93, 0.16);
}

.clinical-cases__header,
.patient-testimonials__header {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.clinical-cases__eyebrow,
.patient-testimonials__eyebrow {
  margin: 0 0 0.85rem;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.clinical-cases__header h2,
.patient-testimonials__header h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.2rem, 4vw, 3.9rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.clinical-cases__subtitle,
.patient-testimonials__subtitle {
  margin: 0.95rem auto 0;
  max-width: 58rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.98rem, 1.08vw, 1.14rem);
  line-height: 1.7;
}

.clinical-cases__marquee {
  margin-top: 1.9rem;
  overflow: hidden;
}

.clinical-cases__track {
  display: flex;
  width: max-content;
  animation: clinical-cases-scroll 54s linear infinite;
}

.clinical-cases__marquee:hover .clinical-cases__track,
.clinical-cases__marquee:focus-within .clinical-cases__track {
  animation-play-state: paused;
}

.clinical-cases__group {
  display: flex;
  gap: 1rem;
  padding-right: 1rem;
}

.clinical-case-card {
  flex: 0 0 clamp(15rem, 23vw, 18rem);
  max-width: clamp(15rem, 23vw, 18rem);
  overflow: hidden;
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 42px rgba(1, 12, 31, 0.28);
}

.clinical-case-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.clinical-case-card__body {
  padding: 1rem 1rem 1.15rem;
  background: linear-gradient(180deg, #0f3677 0%, #0b2d64 100%);
  color: #ffffff;
}

.clinical-case-card__eyebrow {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--brand-gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.clinical-case-card__body h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.2;
  font-weight: 800;
}

.clinical-case-card__body p {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.55;
}

.patient-testimonials-section {
  padding-top: 0;
}

.patient-quote-card {
  position: relative;
  padding: 1.15rem 1.15rem 1.2rem;
  border-radius: 1.35rem;
  background: linear-gradient(180deg, rgba(14, 54, 119, 0.96) 0%, rgba(8, 39, 91, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 42px rgba(1, 12, 31, 0.28);
  color: #ffffff;
}

.patient-quote-card__mark {
  margin-bottom: 0.1rem;
  color: #ffffff;
  font-size: 3.3rem;
  line-height: 1;
  font-weight: 800;
}

.patient-quote-card p {
  margin: 0.25rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.96rem, 1vw, 1.06rem);
  line-height: 1.65;
}

.patient-quote-card strong {
  display: block;
  margin-top: 0.75rem;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

@media (max-width: 960px) {
  .team-showcase__inner {
    grid-template-columns: 1fr;
  }

  .clinical-cases__header,
  .patient-testimonials__header {
    text-align: left;
    margin-inline: 0;
  }

  .clinical-cases__subtitle,
  .patient-testimonials__subtitle {
    margin-inline: 0;
  }

  .clinical-case-card {
    flex-basis: min(78vw, 19rem);
    max-width: min(78vw, 19rem);
  }

  .clinical-cases__track {
    animation-duration: 42s;
  }

  .clinical-social-shell {
    gap: 1.4rem;
  }
}
.testimonials-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(4.4rem, 7vw, 6.8rem) 0 clamp(4rem, 7vw, 5.9rem);
  color: #ffffff;
  background:
    radial-gradient(circle at 50% -14%, rgba(45, 118, 255, 0.22), transparent 26%),
    linear-gradient(180deg, #0a2f6e 0%, #08275b 48%, #08234d 100%);
}

.testimonials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 13% 32%, rgba(255, 255, 255, 0.12), transparent 14%),
    radial-gradient(circle at 86% 28%, rgba(255, 255, 255, 0.1), transparent 14%),
    radial-gradient(circle at 8% 62%, rgba(255, 255, 255, 0.06), transparent 18%),
    radial-gradient(circle at 92% 60%, rgba(255, 255, 255, 0.06), transparent 18%),
    radial-gradient(circle at 50% 42%, rgba(34, 112, 255, 0.2), transparent 42%),
    linear-gradient(180deg, rgba(4, 19, 49, 0.3), rgba(4, 19, 49, 0.34)),
    url("./BACKGROUND-DESKTOP.png") center center / cover no-repeat;
  opacity: 0.28;
  filter: blur(2px) saturate(0.72) brightness(0.54) contrast(0.98);
  transform: scale(1.08);
  pointer-events: none;
}

.testimonials-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 23%;
  background: linear-gradient(180deg, rgba(8, 39, 91, 0) 0%, rgba(8, 39, 91, 0.5) 42%, rgba(8, 39, 91, 0.96) 100%);
  pointer-events: none;
}

.section-shell--testimonials {
  position: relative;
  z-index: 1;
  width: min(1248px, calc(100% - 4rem));
}

.testimonials-shell {
  display: flex;
  flex-direction: column;
}

.testimonials-section__header {
  text-align: center;
  margin-bottom: clamp(1.2rem, 2.8vw, 1.9rem);
}

.testimonials-section__header h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.3rem, 4vw, 3.9rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.testimonials-section__subtitle {
  margin: 0.95rem 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--brand-gold);
  font-size: clamp(0.95rem, 1.3vw, 1.12rem);
  font-weight: 700;
  line-height: 1.35;
}

.testimonials-section__subtitle span:nth-child(2) {
  max-width: 58rem;
}

.testimonials-section__subtitle-rule {
  flex: 1 1 6rem;
  max-width: 6rem;
  height: 0.16rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(217, 169, 75, 0.05), var(--brand-gold) 50%, rgba(217, 169, 75, 0.05));
  box-shadow: 0 0 12px rgba(217, 169, 75, 0.18);
}

.testimonials-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

.testimonial-video-card {
  padding: 0.45rem;
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1.8px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 18px 42px rgba(1, 12, 31, 0.28);
  overflow: hidden;
}

.testimonial-video-card__thumb {
  position: relative;
  aspect-ratio: 1.7 / 1;
  overflow: hidden;
  border-radius: 1rem;
  background: #0a1831;
  isolation: isolate;
}

.testimonial-video-card__thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 14, 33, 0.14) 0%, rgba(4, 14, 33, 0.08) 22%, rgba(4, 14, 33, 0.02) 50%, rgba(4, 14, 33, 0.34) 100%),
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.18), transparent 18%),
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.14), transparent 14%);
  pointer-events: none;
  z-index: 1;
}

.testimonial-video-card__scene {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.02);
  filter: saturate(0.9) brightness(0.8) contrast(1.03);
}

.testimonial-video-card--male .testimonial-video-card__scene {
  background-image:
    linear-gradient(180deg, rgba(10, 31, 69, 0.14), rgba(10, 31, 69, 0.14)),
    url("./BACKGROUND-DESKTOP.png");
  background-position: 58% 24%;
}

.testimonial-video-card--female .testimonial-video-card__scene {
  background-image:
    linear-gradient(180deg, rgba(10, 31, 69, 0.14), rgba(10, 31, 69, 0.14)),
    url("./BACKGROUND-MOBILE.png");
  background-position: 44% 22%;
}

.testimonial-video-card__play {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  width: 4.9rem;
  height: 4.9rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.testimonial-video-card__play svg {
  width: 1.65rem;
  height: 1.65rem;
  margin-left: 0.16rem;
}

.journey-title {
  margin: clamp(1.55rem, 3vw, 2.2rem) auto 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  font-size: clamp(1.7rem, 2.9vw, 2.7rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.journey-title span:first-child,
.journey-title span:last-child {
  flex: 1 1 9rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
}

.journey-steps {
  position: relative;
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.7rem, 1.3vw, 1rem);
}

.journey-steps::before {
  content: "";
  position: absolute;
  left: 4.5%;
  right: 4.5%;
  top: 2.35rem;
  height: 1px;
  background-image: radial-gradient(circle, rgba(244, 183, 76, 0.78) 0 1px, transparent 1.35px 8px);
  background-size: 8px 1px;
  background-repeat: repeat-x;
  opacity: 0.58;
  pointer-events: none;
}

.journey-step {
  position: relative;
  text-align: center;
  padding: 0 0.35rem;
}

.journey-step__icon {
  position: relative;
  width: 4.6rem;
  height: 4.6rem;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  color: var(--brand-gold);
  border: 1.5px solid rgba(244, 183, 76, 0.95);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.journey-step__icon svg {
  width: 2.1rem;
  height: 2.1rem;
}

.journey-step__badge {
  position: absolute;
  top: -0.25rem;
  left: -0.28rem;
  width: 1.45rem;
  height: 1.45rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f4c15e;
  color: #0b2a61;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.journey-step h4 {
  margin: 0;
  color: #f4b955;
  font-size: clamp(0.95rem, 1.08vw, 1.08rem);
  line-height: 1.25;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.journey-step p {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.9rem, 0.98vw, 1.02rem);
  line-height: 1.52;
}

.testimonials-cta {
  margin-top: clamp(1.7rem, 3.8vw, 2.7rem);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) auto minmax(0, 0.98fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: stretch;
}

.testimonials-quote-card,
.testimonials-form-card {
  min-height: 100%;
}

.testimonials-quote-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  padding: clamp(1.2rem, 2.3vw, 1.95rem);
  border-radius: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.66);
  background: linear-gradient(180deg, #f7fbff 0%, #dde7f6 100%);
  color: var(--brand-blue-deep);
  box-shadow: 0 22px 52px rgba(2, 11, 34, 0.2);
}

.testimonials-quote-card__bubble {
  width: 4.45rem;
  height: 4.45rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.82);
  background: radial-gradient(circle at 35% 30%, #1f51ab 0%, #163f84 65%, #0f2a5d 100%);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(17, 46, 104, 0.18);
}

.testimonials-quote-card__bubble svg {
  width: 2rem;
  height: 2rem;
}

.testimonials-quote-card h4 {
  margin: 0;
  max-width: 18ch;
  color: var(--brand-blue-deep);
  font-size: clamp(1.35rem, 1.95vw, 2.1rem);
  line-height: 1.18;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.testimonials-quote-card__rule {
  height: 1px;
  background: linear-gradient(90deg, rgba(217, 169, 75, 0.06), var(--brand-gold) 14%, var(--brand-gold) 86%, rgba(217, 169, 75, 0.06));
}

.testimonials-quote-card__rating {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.testimonials-quote-card__stars {
  display: flex;
  align-items: center;
  gap: 0.18rem;
  color: #f1b548;
}

.testimonials-quote-card__stars svg {
  width: 1.52rem;
  height: 1.52rem;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06));
}

.testimonials-quote-card__score {
  font-size: clamp(2rem, 2.35vw, 2.7rem);
  line-height: 1;
  font-weight: 800;
  color: var(--brand-blue-deep);
}

.testimonials-quote-card__divider {
  width: 1px;
  height: 2.1rem;
  background: rgba(23, 58, 122, 0.28);
}

.testimonials-quote-card__verified {
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  color: var(--brand-blue-deep);
  font-size: clamp(0.95rem, 1vw, 1.08rem);
  font-weight: 700;
}

.testimonials-quote-card__verified svg {
  width: 1.55rem;
  height: 1.55rem;
}

.testimonials-cta__divider {
  position: relative;
  width: 1px;
  background: linear-gradient(180deg, rgba(244, 183, 76, 0.24), rgba(244, 183, 76, 0.95), rgba(244, 183, 76, 0.24));
}

.testimonials-cta__divider::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: var(--brand-gold);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 6px rgba(217, 169, 75, 0.14);
}

.testimonials-form-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.2rem, 2.3vw, 1.95rem);
  border-radius: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(180deg, #0f3677 0%, #0b2d64 100%);
  color: #ffffff;
  box-shadow: 0 22px 52px rgba(2, 11, 34, 0.24);
}

.testimonials-form-card h4 {
  margin: 0;
  max-width: 26ch;
  font-size: clamp(1.34rem, 2.08vw, 2.02rem);
  line-height: 1.14;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.testimonials-form-card h4 span {
  display: block;
  color: var(--brand-gold);
}

.testimonials-form-card h4 strong {
  display: block;
  color: #ffffff;
  font-weight: 800;
}

.testimonials-form-card p {
  margin: 0.8rem 0 1rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.94rem, 1.03vw, 1.08rem);
  line-height: 1.52;
}

.testimonials-form {
  display: grid;
  gap: 0.72rem;
}

.testimonials-field {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  height: 3.12rem;
  padding: 0 0.95rem;
  border-radius: 0.8rem;
  border: 1.25px solid rgba(255, 255, 255, 0.32);
  background: rgba(13, 45, 98, 0.38);
}

.testimonials-field svg {
  width: 1.12rem;
  height: 1.12rem;
  color: rgba(255, 255, 255, 0.92);
  flex: 0 0 auto;
}

.testimonials-field input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: #ffffff;
  font: inherit;
  font-size: 0.98rem;
}

.testimonials-field input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.testimonials-form__cta {
  margin-top: 0.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 3.42rem;
  padding: 0.85rem 1.15rem;
  border-radius: 0.92rem;
  background: linear-gradient(180deg, #3fd04b 0%, #1dbd52 100%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  box-shadow: 0 16px 28px rgba(30, 182, 73, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.testimonials-form__cta svg {
  width: 1.1rem;
  height: 1.1rem;
}

.team-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4.6rem, 7.4vw, 6.8rem) 0 clamp(4.2rem, 7.2vw, 5.8rem);
  color: var(--brand-blue-deep);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.98), rgba(247, 248, 251, 1) 42%, rgba(244, 246, 250, 1) 100%);
}

.team-section::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 7rem;
  background: linear-gradient(180deg, rgba(244, 246, 250, 0) 0%, rgba(244, 246, 250, 0.86) 74%, rgba(244, 246, 250, 1) 100%);
  pointer-events: none;
}

.team-shell {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 4rem));
}

.team-section__header {
  text-align: center;
  margin-bottom: clamp(1.4rem, 2.8vw, 2rem);
}

.team-section__header h2 {
  margin: 0;
  color: var(--brand-blue-deep);
  font-size: clamp(2.55rem, 4.8vw, 4.3rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.team-section__accent {
  width: 4.8rem;
  height: 0.16rem;
  margin: 0.95rem auto 0.9rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(217, 169, 75, 0.05), var(--brand-gold) 50%, rgba(217, 169, 75, 0.05));
}

.team-section__header p {
  margin: 0;
  color: rgba(20, 33, 61, 0.56);
  font-size: clamp(0.98rem, 1.25vw, 1.16rem);
  line-height: 1.55;
}

.team-section__callout {
  width: min(860px, 100%);
  margin: clamp(1.25rem, 2.8vw, 1.8rem) auto clamp(1.4rem, 3vw, 2.4rem);
  display: grid;
  grid-template-columns: auto 1px 1fr;
  align-items: center;
  gap: 1rem 1.25rem;
  padding: clamp(1rem, 2vw, 1.35rem) clamp(1.15rem, 2.4vw, 1.8rem);
  border-radius: 1.4rem;
  border: 1px solid rgba(223, 200, 167, 0.3);
  background: linear-gradient(180deg, #fbf7f0 0%, #f5efe6 100%);
  box-shadow: 0 14px 36px rgba(14, 27, 48, 0.06);
}

.team-section__callout-icon {
  width: 3.8rem;
  height: 3.8rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(217, 169, 75, 0.26);
  background: #ffffff;
  color: var(--brand-gold);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.team-section__callout-icon svg {
  width: 1.95rem;
  height: 1.95rem;
}

.team-section__callout-divider {
  width: 1px;
  height: 3rem;
  background: rgba(217, 169, 75, 0.35);
}

.team-section__callout p {
  margin: 0;
  color: rgba(20, 33, 61, 0.65);
  font-size: clamp(0.98rem, 1.08vw, 1.12rem);
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 1.8vw, 1.4rem);
}

.team-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 1.45rem;
  border: 1px solid rgba(220, 227, 238, 0.78);
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(13, 27, 48, 0.08);
}

.team-card__photo {
  position: relative;
  aspect-ratio: 0.92 / 1;
  background-color: #d7c3b3;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  filter: saturate(0.72) brightness(1.08) contrast(0.98) sepia(0.34) hue-rotate(338deg);
}

.team-card__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.04) 28%, rgba(6, 23, 53, 0.12) 100%),
    radial-gradient(circle at 50% 25%, rgba(255, 255, 255, 0.26), transparent 18%);
  pointer-events: none;
}

.team-card--1 .team-card__photo {
  background: none;
}

.team-card--2 .team-card__photo {
  background: none;
}

.team-card--3 .team-card__photo {
  background: none;
}

.team-card--4 .team-card__photo {
  background: none;
}

.team-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 1rem 1rem 1.2rem;
  text-align: center;
}

.team-card__body h3 {
  margin: 0;
  color: var(--brand-blue-deep);
  font-size: clamp(1.08rem, 1.55vw, 1.36rem);
  line-height: 1.12;
  font-weight: 800;
}

.team-card__specialty {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--brand-gold);
  font-size: clamp(0.92rem, 1.02vw, 1.08rem);
  font-weight: 700;
}

.team-card__specialty svg {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
}

.team-card__rule {
  width: 2.15rem;
  height: 0.16rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(217, 169, 75, 0.05), var(--brand-gold) 50%, rgba(217, 169, 75, 0.05));
}

.team-card__body p:last-child {
  margin: 0.05rem 0 0;
  color: rgba(20, 33, 61, 0.58);
  font-size: clamp(0.92rem, 0.98vw, 1.03rem);
  line-height: 1.55;
}

.team-band {
  width: min(1040px, 100%);
  margin: clamp(1.5rem, 3.4vw, 2.4rem) auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr) 1px minmax(0, 1fr);
  align-items: center;
  gap: clamp(0.65rem, 1.2vw, 1rem);
  padding: clamp(1rem, 2vw, 1.35rem) clamp(1rem, 2.2vw, 1.6rem);
  border-radius: 1.2rem;
  background: linear-gradient(180deg, #173d88 0%, #0c2f6a 100%);
  color: #ffffff;
  box-shadow: 0 20px 44px rgba(12, 36, 84, 0.24);
}

.team-band__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
}

.team-band__icon {
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(244, 183, 76, 0.42);
  background: rgba(255, 255, 255, 0.04);
  color: var(--brand-gold);
}

.team-band__icon svg {
  width: 1.8rem;
  height: 1.8rem;
}

.team-band__item strong {
  display: block;
  font-size: clamp(1rem, 1.45vw, 1.48rem);
  line-height: 1.15;
  font-weight: 800;
}

.team-band__item span {
  display: block;
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.9rem, 0.98vw, 1.02rem);
  line-height: 1.45;
}

.team-band__divider {
  width: 1px;
  height: 3.6rem;
  justify-self: center;
  background: rgba(255, 255, 255, 0.32);
}

.courses-section {
  position: relative;
  overflow: hidden;
  padding: clamp(1rem, 2vw, 1.5rem) 0 clamp(4rem, 6vw, 5.2rem);
  background: linear-gradient(180deg, #f4f6fa 0%, #f4f6fa 100%);
}

.courses-shell {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 4rem));
}

.courses-band {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem clamp(1rem, 2vw, 1.4rem);
  padding: clamp(1rem, 2vw, 1.35rem) clamp(1.1rem, 2.2vw, 1.6rem);
  border-radius: 1.2rem;
  border: 1px solid rgba(223, 200, 167, 0.24);
  background: linear-gradient(180deg, #173d88 0%, #0c2f6a 100%);
  color: #ffffff;
  box-shadow: 0 20px 44px rgba(12, 36, 84, 0.24);
}

.courses-band__icon {
  width: 3.9rem;
  height: 3.9rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(244, 183, 76, 0.42);
  background: rgba(255, 255, 255, 0.04);
  color: var(--brand-gold);
}

.courses-band__icon svg {
  width: 1.85rem;
  height: 1.85rem;
}

.courses-band__copy {
  min-width: 0;
}

.courses-band__eyebrow {
  margin: 0 0 0.34rem;
  color: var(--brand-gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.courses-band__copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.2rem, 2vw, 2rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.courses-band__copy p:last-child {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.93rem, 1vw, 1.05rem);
  line-height: 1.5;
}

.courses-band__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  grid-column: 1 / -1;
  justify-self: center;
  min-height: 3.45rem;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(137, 255, 171, 0.4);
  background: linear-gradient(180deg, rgba(52, 180, 100, 0.95), rgba(26, 159, 74, 0.92));
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(18, 158, 74, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  white-space: nowrap;
}

.courses-band__cta svg {
  width: 1.05rem;
  height: 1.05rem;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 6vw, 5rem) 0 0;
  color: #ffffff;
  background: linear-gradient(180deg, #0a2a64 0%, #08234f 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 0.08), transparent 20%),
    radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.08), transparent 20%),
    linear-gradient(180deg, rgba(3, 16, 41, 0.15), rgba(3, 16, 41, 0.32));
  pointer-events: none;
}

.footer-shell {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 4rem));
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.05fr) 1fr 1fr;
  gap: clamp(1.4rem, 3vw, 3rem);
  align-items: start;
  padding-bottom: clamp(1.5rem, 3vw, 2.3rem);
  border-bottom: 1px solid rgba(229, 180, 107, 0.45);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.footer-brand__logo {
  width: min(16rem, 100%);
  height: auto;
}

.footer-brand__tagline {
  position: relative;
  max-width: 18rem;
  margin: 0;
  padding-top: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(0.98rem, 1vw, 1.12rem);
  line-height: 1.55;
}

.footer-brand__tagline::before {
  content: "";
  display: block;
  width: 14rem;
  height: 1px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(244, 183, 76, 0.05), rgba(244, 183, 76, 0.78) 50%, rgba(244, 183, 76, 0.05));
}

.footer-column {
  padding-left: clamp(1rem, 2vw, 1.8rem);
}

.footer-column--contact,
.footer-column--address {
  border-left: 1px solid rgba(244, 183, 76, 0.52);
}

.footer-column h3 {
  margin: 0 0 0.9rem;
  color: var(--brand-gold);
  font-size: clamp(1rem, 1.5vw, 1.45rem);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.footer-column li span {
  display: block;
  margin-bottom: 0.1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.footer-column li strong {
  color: #ffffff;
  font-size: clamp(0.96rem, 1.05vw, 1.1rem);
  font-weight: 700;
  line-height: 1.42;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #ffffff;
  font-size: clamp(0.96rem, 1.05vw, 1.1rem);
  font-weight: 700;
  line-height: 1.42;
  white-space: nowrap;
  transition: color 180ms ease, opacity 180ms ease;
}

.footer-contact-link:hover,
.footer-contact-link:focus-visible {
  color: var(--accent);
}

.footer-contact-link__icon {
  width: 0.95rem;
  height: 0.95rem;
  flex: 0 0 auto;
  color: #38cf5d;
}

.footer-column address {
  margin: 0;
  color: #ffffff;
  font-style: normal;
  font-size: clamp(1rem, 1.12vw, 1.18rem);
  line-height: 1.62;
}

.footer-cta {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 3.45rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(137, 255, 171, 0.4);
  background: linear-gradient(180deg, rgba(52, 180, 100, 0.95), rgba(26, 159, 74, 0.92));
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(18, 158, 74, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.footer-cta svg {
  width: 1.1rem;
  height: 1.1rem;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0 1.4rem;
  color: rgba(255, 255, 255, 0.88);
}

.footer-bottom__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-size: clamp(0.92rem, 1vw, 1.05rem);
}

.footer-bottom__item svg {
  width: 1.35rem;
  height: 1.35rem;
  color: var(--brand-gold);
  flex: 0 0 auto;
}

.footer-bottom__divider {
  width: 1px;
  height: 2rem;
  justify-self: center;
  background: rgba(255, 255, 255, 0.35);
}

@media (max-width: 1024px) {
  .institute-shell,
  .science-shell,
  .testimonials-section__grid {
    grid-template-columns: 1fr !important;
  }

  .institute-section__media {
    width: min(620px, 100%) !important;
    min-height: 24rem !important;
    margin: 0 auto !important;
  }

  .pillars-section__grid {
    grid-template-columns: 1fr !important;
  }

  .science-section__visual {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .science-tile--primary {
    grid-column: auto !important;
  }

  .testimonials-section__quotes {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .team-highlights {
    grid-template-columns: 1fr !important;
  }

  .about-section__grid {
    grid-template-columns: 1fr;
  }

  .about-section__media {
    width: min(620px, 100%);
    margin: 0 auto;
  }

  .about-section__copy-head {
    justify-content: flex-start;
  }

  .testimonials-section {
    padding: 4rem 0 4.6rem;
  }

  .section-shell--testimonials {
    width: min(100% - 2.5rem, 1248px);
  }

  .journey-steps {
    gap: 0.7rem;
  }

  .team-section {
    padding: 4.1rem 0 4.25rem;
  }

  .team-shell,
  .footer-shell {
    width: min(100% - 2.5rem, 1280px);
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-band {
    grid-template-columns: 1fr;
  }

  .team-band__divider {
    display: none;
  }

  .footer-main {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
  }

  .footer-column--address {
    grid-column: 1 / -1;
  }

  .courses-section {
    padding-bottom: 3.35rem;
  }

  .courses-shell {
    width: min(100% - 2.5rem, 1280px);
  }

  .courses-band {
    grid-template-columns: auto minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .institute-section {
    padding: 2.4rem 0 3.1rem !important;
  }

  .institute-section__copy h2 {
    font-size: clamp(2.05rem, 10vw, 2.8rem) !important;
  }

  .institute-section__copy p {
    font-size: 0.98rem !important;
  }

  .institute-shell,
  .science-shell,
  .testimonials-section__grid {
    grid-template-columns: 1fr !important;
  }

  .institute-section__media {
    min-height: 18rem !important;
    border-radius: 1.45rem !important;
  }

  .pillars-section {
    padding: 2.3rem 0 3rem !important;
  }

  .pillars-section__grid {
    grid-template-columns: 1fr !important;
  }

  .team-highlights {
    grid-template-columns: 1fr !important;
  }

  .science-section {
    padding: 3rem 0 3.3rem !important;
  }

  .science-section__visual {
    grid-template-columns: 1fr !important;
  }

  .science-tile--primary {
    grid-column: auto !important;
  }

  .testimonials-section {
    padding: 3rem 0 3.35rem !important;
  }

  .testimonials-section__quotes {
    grid-template-columns: 1fr !important;
  }

  .testimonials-video-card__embed {
    min-height: 14rem !important;
  }

  .section-shell {
    width: min(100% - 2rem, 1240px);
  }

  .section-shell--video {
    width: min(100% - 1.5rem, 1200px);
  }

  .video-section {
    padding: 1.5rem 0 2.75rem;
  }

  .video-card {
    border-radius: 1.1rem;
    padding: 0.55rem;
  }

  .video-card__viewport {
    border-radius: 0.8rem;
  }

  .about-section {
    padding: 2.25rem 0 3.6rem;
  }

  .about-section__header {
    margin-bottom: 1.5rem;
  }

  .about-section__grid {
    gap: 1.3rem;
  }

  .about-section__media {
    aspect-ratio: 0.82 / 1;
    border-radius: 1.5rem;
  }

  .about-section__copy-head {
    gap: 0.75rem 1rem;
  }

  .about-section__specialty {
    white-space: normal;
  }

  .about-section__list {
    margin-top: 1.25rem;
    gap: 0.9rem;
  }

  .about-section__list li {
    padding-left: 1.8rem;
  }

  .about-section__pill {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.6rem;
  }

  .about-section__pill-divider {
    width: 100%;
    height: 1px;
    min-height: 1px;
    margin: 0;
  }

  .testimonials-section {
    padding: 3.2rem 0 3.45rem;
  }

  .testimonials-section__header {
    margin-bottom: 1rem;
  }

  .testimonials-section__header h2 {
    font-size: clamp(2rem, 7vw, 2.65rem);
  }

  .testimonials-section__subtitle {
    flex-direction: column;
    gap: 0.45rem;
    font-size: 0.92rem;
    text-wrap: balance;
  }

  .testimonials-section__subtitle span:nth-child(2) {
    max-width: 42rem;
  }

  .testimonials-section__subtitle-rule {
    width: 5rem;
    max-width: 5rem;
    flex: 0 0 auto;
  }

  .testimonials-video-grid {
    grid-template-columns: 1fr;
    gap: 0.95rem;
  }

  .testimonial-video-card {
    border-radius: 1.1rem;
    padding: 0.34rem;
  }

  .testimonial-video-card__thumb {
    aspect-ratio: 1.62 / 1;
    border-radius: 0.82rem;
  }

  .testimonial-video-card__play {
    width: 4.2rem;
    height: 4.2rem;
    border-width: 3px;
  }

  .journey-title {
    margin-top: 1.5rem;
    gap: 0.75rem;
    font-size: clamp(1.42rem, 5vw, 2rem);
  }

  .journey-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.95rem 0.8rem;
    margin-top: 1rem;
  }

  .journey-steps::before {
    display: none;
  }

  .journey-step {
    padding: 0 0.1rem;
  }

  .journey-step__icon {
    width: 4.2rem;
    height: 4.2rem;
    margin-bottom: 0.85rem;
  }

  .journey-step__icon svg {
    width: 1.92rem;
    height: 1.92rem;
  }

  .journey-step__badge {
    width: 1.32rem;
    height: 1.32rem;
    font-size: 0.72rem;
  }

  .journey-step h4 {
    font-size: 0.88rem;
  }

  .journey-step p {
    font-size: 0.86rem;
  }

  .testimonials-cta {
    grid-template-columns: 1fr;
    gap: 0.95rem;
    margin-top: 1.45rem;
  }

  .testimonials-cta__divider {
    display: none;
  }

  .testimonials-quote-card {
    padding: 1rem;
    border-radius: 1.25rem;
    gap: 0.9rem;
  }

  .testimonials-quote-card__bubble {
    width: 3.7rem;
    height: 3.7rem;
  }

  .testimonials-quote-card__bubble svg {
    width: 1.7rem;
    height: 1.7rem;
  }

  .testimonials-quote-card h4 {
    max-width: none;
    font-size: 1.2rem;
  }

  .testimonials-quote-card__rating {
    gap: 0.65rem;
  }

  .testimonials-quote-card__stars svg {
    width: 1.34rem;
    height: 1.34rem;
  }

  .testimonials-quote-card__score {
    font-size: 1.85rem;
  }

  .testimonials-quote-card__divider {
    height: 1.7rem;
  }

  .testimonials-quote-card__verified {
    font-size: 0.9rem;
  }

  .testimonials-form-card {
    padding: 1rem;
    border-radius: 1.25rem;
  }

  .testimonials-form-card h4 {
    max-width: none;
    font-size: 1.22rem;
  }

  .testimonials-form-card p {
    margin-top: 0.7rem;
    font-size: 0.91rem;
  }

  .testimonials-field {
    height: 2.95rem;
    padding-inline: 0.82rem;
    border-radius: 0.72rem;
  }

  .testimonials-field input {
    font-size: 0.93rem;
  }

  .testimonials-form__cta {
    min-height: 3.1rem;
    font-size: 0.92rem;
  }

  .team-section {
    padding: 3.15rem 0 3.45rem;
  }

  .team-section__header {
    margin-bottom: 1.15rem;
  }

  .team-section__header h2 {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  .team-section__header p {
    max-width: 36rem;
    margin-inline: auto;
    font-size: 0.95rem;
  }

  .team-section__callout {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 0.9rem;
    padding: 1rem;
    border-radius: 1.15rem;
  }

  .team-section__callout-divider {
    width: 100%;
    height: 1px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 0.95rem;
  }

  .team-card {
    border-radius: 1.15rem;
  }

  .team-card__photo {
    aspect-ratio: 1.12 / 1;
  }

  .team-card__body {
    padding: 0.95rem 0.95rem 1.05rem;
    gap: 0.45rem;
  }

  .team-card__body h3 {
    font-size: 1.04rem;
  }

  .team-card__body p:last-child {
    font-size: 0.9rem;
  }

  .team-band {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding: 1rem;
  }

  .team-band__item {
    gap: 0.75rem;
  }

  .team-band__icon {
    width: 2.95rem;
    height: 2.95rem;
  }

  .team-band__icon svg {
    width: 1.55rem;
    height: 1.55rem;
  }

  .team-band__item strong {
    font-size: 1rem;
  }

  .team-band__item span {
    font-size: 0.88rem;
  }

  .courses-section {
    padding-bottom: 3rem;
  }

  .courses-band {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 0.85rem;
    padding: 1rem;
    border-radius: 1.15rem;
  }

  .courses-band__icon {
    width: 3.3rem;
    height: 3.3rem;
  }

  .courses-band__icon svg {
    width: 1.65rem;
    height: 1.65rem;
  }

  .courses-band__copy h2 {
    font-size: clamp(1.15rem, 5vw, 1.55rem);
  }

  .courses-band__copy p:last-child {
    font-size: 0.9rem;
  }

  .courses-band__cta {
    width: 100%;
    max-width: 20rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-brand__logo {
    width: min(14rem, 100%);
  }

  .footer-brand__tagline {
    max-width: 20rem;
    margin-inline: auto;
  }

  .footer-column {
    padding-left: 0;
    border-left: 0;
  }

  .footer-column--contact,
  .footer-column--address {
    border-left: 0;
  }

  .footer-column h3 {
    letter-spacing: 0.14em;
  }

  .footer-column address {
    font-size: 0.98rem;
  }

  .footer-cta {
    margin-inline: auto;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .footer-bottom__divider {
    display: none;
  }
}

@media (max-width: 520px) {
  .about-section__media {
    aspect-ratio: 0.92 / 1;
  }

  .about-section__pill {
    padding: 1rem 1rem 1.05rem;
  }

  .clinical-social-section {
    padding: 3.1rem 0 3.6rem;
  }

  .clinical-cases__header h2,
  .patient-testimonials__header h2 {
    font-size: clamp(1.8rem, 8vw, 2.15rem);
  }

  .clinical-cases__subtitle,
  .patient-testimonials__subtitle {
    font-size: 0.86rem;
    line-height: 1.42;
  }

  .clinical-cases__group {
    gap: 0.8rem;
  }

  .clinical-case-card {
    flex-basis: 82vw;
    max-width: 82vw;
  }

  .clinical-cases__track {
    animation-duration: 36s;
  }

  .clinical-social-shell {
    gap: 1.15rem;
  }

  .patient-quote-card {
    padding: 0.95rem;
  }

  .patient-quote-card__mark {
    font-size: 2.8rem;
  }

  .team-section {
    padding: 2.8rem 0 3rem;
  }

  .team-section__callout {
    padding: 0.95rem;
  }

  .team-section__callout-icon {
    width: 3.2rem;
    height: 3.2rem;
  }

  .team-card__photo {
    aspect-ratio: 1.02 / 1;
  }

  .team-card__body h3 {
    font-size: 1rem;
  }

  .team-card__specialty {
    font-size: 0.88rem;
  }

  .team-band__item strong {
    font-size: 0.98rem;
  }

  .courses-section {
    padding-bottom: 2.7rem;
  }

  .courses-band__copy h2 {
    font-size: 1.18rem;
  }

  .courses-band__copy p:last-child {
    font-size: 0.88rem;
  }

  .footer-shell {
    width: min(100% - 2rem, 1280px);
  }

  .footer-brand__logo {
    width: min(12rem, 100%);
  }

  .footer-column h3 {
    font-size: 0.9rem;
  }

  .footer-column li strong,
  .footer-column address {
    font-size: 0.92rem;
  }

  .footer-cta {
    width: 100%;
    justify-content: center;
    max-width: 18rem;
  }

  .how-to-get-section {
    padding: 3.1rem 0 3.5rem;
  }

  .how-to-get__header h2 {
    font-size: clamp(1.8rem, 8vw, 2.35rem);
  }

  .how-to-get__subtitle {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .how-to-get__map-card {
    padding: 0.75rem;
    border-radius: 1.25rem;
  }

  .how-to-get__map-frame,
  .how-to-get__map-frame iframe {
    height: 18rem;
    border-radius: 1rem;
  }

  .how-to-get__map-link {
    padding: 0.75rem;
    border-radius: 1rem;
  }

  .how-to-get__map-link-label {
    padding: 0.8rem 0.9rem;
    font-size: 0.88rem;
  }

  .how-to-get__map-caption {
    font-size: 0.9rem;
  }

  .how-to-get__info-card {
    gap: 0.85rem;
    padding: 1rem;
    border-radius: 1.25rem;
  }

  .how-to-get__info-card h3 {
    font-size: 1.25rem;
  }

  .how-to-get__info-card address {
    font-size: 0.93rem;
  }

  .how-to-get__button {
    width: 100%;
    align-self: stretch;
  }
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #38cf5d, #22a846);
  color: #fff;
  box-shadow: 0 18px 40px rgba(20, 111, 43, 0.3);
  font-weight: 800;
}

.floating-whatsapp__icon {
  width: 1.1rem;
  height: 1.1rem;
}

.hero {
  position: relative;
}

.hero__nav {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  gap: 0.8rem 1.2rem;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  background: rgba(5, 18, 42, 0.42);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: min(94vw, 1320px);
  line-height: 1.3;
}

.hero__nav a {
  position: relative;
  opacity: 0.92;
  padding-bottom: 0.2rem;
  transition: color 180ms ease, opacity 180ms ease;
}

.hero__nav a:hover,
.hero__nav a:focus-visible {
  color: var(--accent);
  opacity: 1;
}

.hero__nav a:hover::after,
.hero__nav a:focus-visible::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.05rem;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
}

.hero__seal {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #f4d39d;
  font-weight: 800;
  line-height: 1.35;
  max-width: 42rem;
}

.team-grid--about {
  margin-top: 1.4rem;
}

.team-card--5 .team-card__photo {
  background-image:
    linear-gradient(180deg, rgba(235, 212, 191, 0.22), rgba(255, 255, 255, 0.1)),
    url("./profissionais/dra-monÃ¡.jpg");
  background-position: center center;
}

.team-card--6 .team-card__photo {
  background-image:
    linear-gradient(180deg, rgba(235, 212, 191, 0.22), rgba(255, 255, 255, 0.1)),
    url("./profissionais/samilly-rabelo.jpg");
  background-position: center center;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.depoimento-card {
  overflow: hidden;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(1, 12, 31, 0.22);
  color: #fff;
}

.depoimento-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.depoimento-card__body {
  padding: 1rem 1.1rem 1.2rem;
  background: rgba(8, 31, 69, 0.94);
}

.depoimento-card__body h4,
.depoimento-card__body p {
  margin: 0;
}

.depoimento-card__body p {
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.8);
}

.depoimento-card--text {
  padding: 1.2rem;
  background: linear-gradient(180deg, #f7fbff 0%, #dde7f6 100%);
  color: var(--brand-blue-deep);
}

.depoimento-card__quote {
  font-size: 4rem;
  line-height: 1;
  color: var(--brand-gold);
}

.depoimento-card--text p {
  color: var(--text);
}

.blog-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, #f4f6fa 0%, #eef2f8 100%);
}

.blog-section__header {
  max-width: 58rem;
  margin-bottom: 1.5rem;
}

.blog-section__header h2,
.blog-page__hero h1 {
  margin: 0;
  color: var(--brand-blue-deep);
  letter-spacing: -0.06em;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.blog-card {
  padding: 0;
  border-radius: 1.35rem;
  background: #fff;
  box-shadow: 0 18px 42px rgba(13, 27, 48, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-card__media {
  height: 12rem;
  overflow: hidden;
  background: #d9e2f1;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.blog-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.25rem;
}

.blog-card span {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--brand-gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-card a,
.blog-page__back {
  display: inline-flex;
  margin-top: 0.8rem;
  color: var(--brand-blue);
  font-weight: 800;
}

.blog-card__content a {
  margin-top: auto;
  padding-top: 0.8rem;
}

.blog-card__read-more {
  margin-top: auto;
  padding: 0.8rem 0 0;
  border: 0;
  background: transparent;
  color: var(--brand-blue);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.blog-page .blog-card {
  cursor: pointer;
}

.blog-articles {
  display: none !important;
}

.blog-modal[hidden] {
  display: none;
}

.blog-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.blog-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 18, 42, 0.68);
  backdrop-filter: blur(5px);
}

.blog-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 56rem);
  max-height: min(92vh, 52rem);
  overflow: auto;
  border-radius: 1.5rem;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(5, 18, 42, 0.3);
}

.blog-modal__close {
  position: sticky;
  top: 1rem;
  z-index: 2;
  float: right;
  width: 2.4rem;
  height: 2.4rem;
  margin: 1rem 1rem -2.4rem 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(20, 33, 61, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-blue-deep);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(13, 27, 48, 0.12);
}

.blog-modal__article {
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.blog-modal__article .blog-article__image {
  height: clamp(13rem, 25vw, 20rem);
}

.blog-modal__article .blog-article__inner {
  max-width: none;
}

body.blog-modal-open {
  overflow: hidden;
}

.site-footer address {
  font-style: normal;
}

.blog-page__hero {
  padding: 4.5rem 0 2rem;
  background: linear-gradient(180deg, #08172f 0%, #0b2b59 100%);
  color: #fff;
}

.blog-page__hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4rem);
  max-width: 14ch;
}

.blog-page__hero p {
  max-width: 52rem;
  color: rgba(255, 255, 255, 0.82);
}

.blog-page__hero-inner {
  position: relative;
}

.blog-articles {
  display: grid;
  gap: 1.4rem;
  margin-top: 2.2rem;
}

.blog-article {
  scroll-margin-top: 1.5rem;
  overflow: hidden;
  border-radius: 1.6rem;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(13, 27, 48, 0.08);
}

.blog-article__image {
  width: 100%;
  height: clamp(15rem, 28vw, 24rem);
  object-fit: cover;
  display: block;
}

.blog-article__inner {
  max-width: 52rem;
  margin-inline: auto;
  padding: clamp(1.35rem, 3vw, 2.8rem);
}

.blog-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin: 0 0 0.8rem;
  color: var(--brand-gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-article h2 {
  margin: 0;
  color: var(--brand-blue-deep);
  font-size: clamp(1.7rem, 3.5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.blog-article__body {
  margin-top: 1.35rem;
}

.blog-article__body p,
.blog-article__body li {
  color: rgba(20, 33, 61, 0.78);
  font-size: 1rem;
  line-height: 1.78;
}

.blog-article__body p {
  margin: 0 0 1rem;
}

.blog-article__body h3 {
  margin: 1.7rem 0 0.7rem;
  color: var(--brand-blue-deep);
  font-size: 1.05rem;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.blog-article__body ul {
  display: grid;
  gap: 0.35rem;
  margin: 0 0 1.1rem;
  padding-left: 1.25rem;
}

.inline-whatsapp-link {
  color: var(--brand-blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.blog-article__back {
  display: inline-flex;
  margin-top: 0.65rem;
  color: var(--brand-blue);
  font-weight: 800;
}

.blog-grid--page {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.how-to-get-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 6vw, 6rem) 0 clamp(4.2rem, 6.2vw, 6.2rem);
  background: linear-gradient(180deg, #eef2f8 0%, #f4f6fa 100%);
}

.how-to-get-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(45, 118, 255, 0.12), transparent 22%),
    radial-gradient(circle at 84% 28%, rgba(244, 163, 93, 0.08), transparent 18%);
  pointer-events: none;
}

.how-to-get-shell {
  position: relative;
  z-index: 1;
}

.how-to-get__header {
  max-width: 64rem;
  margin: 0 auto 1.8rem;
  text-align: center;
}

.how-to-get__eyebrow {
  margin: 0 0 0.85rem;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.how-to-get__header h2 {
  margin: 0;
  color: var(--brand-blue-deep);
  font-size: clamp(2.2rem, 4vw, 3.55rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.how-to-get__subtitle {
  margin: 0.95rem auto 0;
  max-width: 58rem;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.08vw, 1.12rem);
  line-height: 1.7;
}

.how-to-get__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.7fr);
  gap: 1rem;
  align-items: stretch;
}

.how-to-get__map-card {
  padding: 0.95rem;
  border-radius: 1.65rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(23, 58, 122, 0.08);
  box-shadow: 0 18px 42px rgba(13, 27, 48, 0.08);
}

.how-to-get__map-frame {
  position: relative;
  overflow: hidden;
  height: clamp(22rem, 31vw, 28rem);
  border-radius: 1.25rem;
  background: #dde7f6;
}

.how-to-get__map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.how-to-get__map-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
  border-radius: 1.25rem;
  background: linear-gradient(180deg, rgba(8, 39, 91, 0) 58%, rgba(8, 39, 91, 0.18) 100%);
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}

.how-to-get__map-link-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  background: rgba(8, 39, 91, 0.94);
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(1, 12, 31, 0.22);
}

.how-to-get__map-link svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.how-to-get__map-caption {
  margin: 0.9rem 0 0;
  color: var(--brand-blue-deep);
  font-size: 0.96rem;
  line-height: 1.55;
  font-weight: 700;
}

.how-to-get__info-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 1.35rem;
  border-radius: 1.65rem;
  background: linear-gradient(180deg, #0a2f6e 0%, #08275b 100%);
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(1, 12, 31, 0.18);
}

.how-to-get__info-card h3 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.how-to-get__info-card address {
  margin: 0;
  font-style: normal;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.75;
}

.how-to-get__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  gap: 0.65rem;
  min-height: 3.4rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cta-start), var(--cta-end));
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(18, 158, 74, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

@media (max-width: 960px) {
  .hero__nav {
    width: calc(100% - 1.2rem);
    top: 0.7rem;
  }

  .depoimentos-grid,
  .blog-grid,
  .blog-grid--page {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    right: 0.8rem;
    bottom: 0.8rem;
  }

  .how-to-get__grid {
    grid-template-columns: 1fr;
  }

  .how-to-get__header {
    margin-bottom: 1.4rem;
    text-align: left;
    margin-inline: 0;
  }

  .how-to-get__subtitle {
    margin-inline: 0;
  }

  .how-to-get__map-frame,
  .how-to-get__map-frame iframe {
    height: 21rem;
  }

  .how-to-get__info-card {
    padding: 1.2rem;
  }
}

@media (max-width: 960px) {
  .team-showcase__inner {
    grid-template-columns: 1fr;
    grid-template-areas: none;
  }

  .team-showcase__carousel {
    max-height: none;
    overflow: visible;
  }

  .responsible-section__inner {
    grid-template-columns: 1fr;
    grid-template-areas: none;
  }

  .responsible-section__media {
    width: min(100%, 30rem);
    justify-self: start;
  }
}

.hero__mobilebar {
  display: none;
}

.hero__mobilemenu {
  display: none;
}

@media (max-width: 760px) {
  html,
  body {
    min-width: 100vw;
  }

  .hero__nav {
    display: none;
  }

  .hero__mobilebar {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    right: 0.85rem;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .hero__mobilelogo {
    display: inline-flex;
    align-items: center;
    min-width: 0;
  }

  .hero__mobilelogo img {
    width: 6.8rem;
    height: auto;
  }

  .hero__menu-toggle {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.28rem;
    border: 0;
    border-radius: 999px;
    background: rgba(5, 18, 42, 0.42);
    backdrop-filter: blur(10px);
    cursor: pointer;
  }

  .hero__menu-toggle span {
    width: 1.2rem;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .hero__menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .hero__menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .hero__menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero__mobilemenu {
    position: absolute;
    top: 4.4rem;
    right: 0.85rem;
    z-index: 4;
    display: grid;
    gap: 0.35rem;
    min-width: min(15rem, calc(100vw - 1.7rem));
    padding: 0.8rem;
    border-radius: 1rem;
    background: rgba(8, 23, 49, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .hero__mobilemenu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero__mobilemenu a {
    padding: 0.8rem 0.85rem;
    border-radius: 0.75rem;
    color: #fff;
    font-size: 0.98rem;
    font-weight: 700;
  }

  .hero__mobilemenu a:hover,
  .hero__mobilemenu a:focus-visible {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
  }

  .team-showcase__inner {
    display: flex;
    flex-direction: column;
  }

  .team-showcase__copy {
    order: 1;
    padding-bottom: 0;
  }

  .team-showcase__text {
    order: 3;
    margin-top: 0;
  }

  .team-showcase__gallery-item {
    flex-basis: clamp(8.75rem, 46vw, 10.5rem);
  }

  .team-carousel-simple {
    order: 2;
    margin-top: 0.6rem;
    width: min(100%, 23.5rem);
    justify-self: start;
  }

  .team-carousel-simple__viewport {
    min-height: 29rem;
  }

  .team-card--simple {
    width: clamp(12.8rem, 74vw, 15rem);
  }

  .team-showcase__cta {
    width: fit-content;
  }

  .responsible-section__inner {
    display: flex;
    flex-direction: column;
  }

  .responsible-section__copy {
    order: 1;
  }

  .responsible-section__media {
    order: 2;
    width: min(100%, 28rem);
    margin: 0.9rem 0 0.35rem;
  }

  .responsible-section__subtitle,
  .responsible-section__bio {
    order: 3;
  }

  .responsible-section__subtitle {
    margin-top: 0.8rem;
  }

  .responsible-section {
    padding: 3.3rem 0 4rem;
  }

  .responsible-section__copy h2 {
    font-size: clamp(2.1rem, 11vw, 2.85rem);
  }

  .responsible-section__bio {
    padding: 1rem 1rem 1.05rem;
  }

  .responsible-section__frame {
    aspect-ratio: 0.84 / 1;
  }
}

.testimonials-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(4rem, 6.5vw, 6rem) 0;
  color: var(--text);
  background: linear-gradient(180deg, #f4f6fa 0%, #eef2f8 100%);
}

.testimonials-section::before,
.testimonials-section::after {
  content: none;
}

.testimonials-section__header {
  text-align: left;
  margin-bottom: 1.5rem;
}

.testimonials-section__header h2 {
  margin: 0;
  color: var(--brand-blue-deep);
  font-size: clamp(2.25rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.testimonials-section__eyebrow {
  margin: 0 0 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--brand-gold);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.testimonials-section__subtitle {
  margin: 0.95rem 0 0;
  display: block;
  color: rgba(20, 33, 61, 0.72);
  font-size: clamp(1rem, 1.08vw, 1.15rem);
  font-weight: 500;
  line-height: 1.72;
}

.testimonials-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 1rem;
  align-items: start;
}

.testimonials-section__quotes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-card {
  position: relative;
  padding: 1.2rem 1.2rem 1.15rem;
  border-radius: 1.35rem;
  background: linear-gradient(180deg, #ffffff 0%, #eef3f9 100%);
  border: 1px solid rgba(220, 227, 238, 0.9);
  box-shadow: 0 16px 38px rgba(13, 27, 48, 0.08);
}

.testimonial-card__mark {
  color: var(--brand-gold);
  font-size: 3.3rem;
  line-height: 0.8;
  font-weight: 800;
}

.testimonial-card p {
  margin: 0.2rem 0 0.95rem;
  color: rgba(20, 33, 61, 0.76);
  font-size: clamp(0.98rem, 1.02vw, 1.08rem);
  line-height: 1.65;
}

.testimonial-card strong {
  color: var(--brand-blue-deep);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.testimonials-video-card {
  height: 100%;
  display: grid;
  align-content: start;
  gap: 0.9rem;
  padding: 1.3rem;
  border-radius: 1.6rem;
  background: linear-gradient(180deg, rgba(22, 54, 110, 0.98), rgba(12, 36, 84, 0.96));
  color: #ffffff;
  box-shadow: 0 22px 46px rgba(13, 27, 48, 0.14);
}

.testimonials-video-card__eyebrow {
  margin: 0;
  color: #f7d699;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.testimonials-video-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.testimonials-video-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}


@media (max-width: 760px) {
  .hero {
    padding-top: clamp(3.85rem, 9vh, 5.1rem);
  }

  .hero__mobilebar {
    top: 0.65rem;
    left: 0.7rem;
    right: 0.7rem;
  }

  .hero__mobilelogo img {
    width: 5rem;
    max-width: 5rem;
  }

  .hero__menu-toggle {
    width: 2.7rem;
    height: 2.7rem;
  }

  .hero__content {
    width: min(100%, 23rem);
    margin-left: 0;
    padding-left: 0;
    text-align: center;
    transform: translateY(-2.8rem);
  }

  .hero h1 {
    font-size: clamp(1.62rem, 6.8vw, 2.15rem);
    line-height: 0.98;
    max-width: 100%;
  }

  .hero__title-mobile {
    gap: 0.18rem;
  }

  .hero__title-mobile span:first-child {
    font-size: clamp(1.58rem, 6.5vw, 2.02rem);
    line-height: 0.98;
  }

  .hero__title-mobile span:last-child {
    font-size: clamp(0.92rem, 3.8vw, 1.1rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
  }

  .hero__lead {
    font-size: 0.92rem;
    line-height: 1.5;
    max-width: 100%;
  }

  .hero__cta {
    margin-top: 1.8rem;
    min-height: 3.75rem;
    font-size: 0.92rem;
    padding-inline: 1.05rem;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-top: clamp(3.5rem, 8vh, 4.8rem);
  }

  .hero__content {
    width: min(100%, 21.5rem);
    transform: translateY(-2.25rem);
  }

  .hero__mobilelogo img {
    width: 4.5rem;
    max-width: 4.5rem;
  }

  .hero__menu-toggle {
    width: 2.5rem;
    height: 2.5rem;
  }

  .hero h1 {
    font-size: clamp(1.5rem, 7vw, 1.98rem);
  }

  .hero__title-mobile span:first-child {
    font-size: clamp(1.48rem, 6.7vw, 1.95rem);
  }

  .hero__title-mobile span:last-child {
    font-size: clamp(0.88rem, 3.7vw, 1.02rem);
  }

  .hero__lead {
    font-size: 0.89rem;
  }

  .hero__cta {
    margin-top: 1.55rem;
    min-height: 3.6rem;
    font-size: 0.9rem;
  }
}

