:root {
  --teal: #00979c;
  --teal-dark: #005e64;
  --petrol: #084f57;
  --ink: #12343b;
  --muted: #60747a;
  --white: #ffffff;
  --soft: #f4f8f8;
  --line: #dce9e9;
  --yellow: #f4c52f;
  --shadow: 0 24px 70px rgba(4, 67, 73, .14);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 104px 0;
  position: relative;
}

.section-light {
  background: #fff;
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  background: linear-gradient(135deg, #063f46 0%, #007b80 100%);
  color: #fff;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 9999;
  background: #fff;
  color: var(--petrol);
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  top: 16px;
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(8, 79, 87, .08);
  transition: .25s ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(3, 52, 58, .08);
}

.nav-wrap {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 29px;
  letter-spacing: -.04em;
}

.brand-mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.main-nav>a:not(.nav-cta) {
  position: relative;
}

.main-nav>a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--teal);
  transition: .25s ease;
}

.main-nav>a:not(.nav-cta):hover::after {
  right: 0;
}

.nav-cta {
  background: var(--teal);
  color: #fff;
  padding: 11px 18px;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--petrol);
  margin: 5px 0;
}

.hero {
  min-height: calc(100svh - 78px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 72px 0 88px;
}

.hero-bg {
  position: absolute;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(0, 151, 156, .18), rgba(0, 151, 156, .04) 58%, transparent 70%);
  right: -190px;
  top: -70px;
}

.hero::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(0, 151, 156, .15);
  left: -150px;
  bottom: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  align-items: center;
  gap: 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--teal);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.eyebrow.light {
  color: #7ee5e5;
}

.hero h1,
.section-heading h2,
.final-cta h2 {
  font-family: "Montserrat", sans-serif;
  letter-spacing: -.045em;
  line-height: 1.06;
  margin: 0;
}

.hero h1 {
  font-size: clamp(48px, 6.2vw, 82px);
  max-width: 780px;
}

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

.hero-lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 700px;
  margin: 28px 0 34px;
  text-align: justify;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  border: 1px solid transparent;
}

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

.btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 14px 30px rgba(0, 151, 156, .22);
}

.btn-primary:hover {
  background: #007f83;
  box-shadow: 0 18px 38px rgba(0, 151, 156, .28);
}

.btn-secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--petrol);
}

.btn-secondary:hover {
  border-color: var(--teal);
}

.btn-white {
  background: #fff;
  color: var(--petrol);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, .45);
  color: #fff;
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, .1);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--petrol);
  background: transparent;
}

.btn.full {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.trust-row div {
  display: grid;
  gap: 3px;
}

.trust-row strong {
  font-family: "Montserrat", sans-serif;
  font-size: 23px;
  color: var(--petrol);
}

.trust-row span {
  font-size: 12px;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.cover-card {
  width: min(430px, 88%);
  position: relative;
  z-index: 2;
  transform: rotate(1.5deg);
  border-radius: 6px 6px 16px 16px;
  overflow: hidden;
  box-shadow: 0 36px 70px rgba(8, 79, 87, .25);
  background: #fff;
}

.cover-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .6);
  pointer-events: none;
}

.cover-shine {
  position: absolute;
  inset: -50% -120%;
  z-index: 3;
  background: linear-gradient(110deg, transparent 40%, rgba(255, 255, 255, .24) 50%, transparent 60%);
  transform: rotate(10deg);
  animation: shine 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shine {

  0%,
  60% {
    transform: translateX(-20%) rotate(10deg);
  }

  85%,
  100% {
    transform: translateX(72%) rotate(10deg);
  }
}

.floating-note {
  position: absolute;
  z-index: 4;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 40px rgba(8, 79, 87, .16);
  border: 1px solid rgba(0, 151, 156, .12);
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--petrol);
}

.floating-note span {
  color: var(--teal);
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  margin-right: 5px;
}

.note-a {
  top: 14%;
  left: 0;
}

.note-b {
  right: -2%;
  bottom: 15%;
}

.split-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 92px;
  align-items: start;
}

.section-heading h2 {
  font-size: clamp(36px, 4.3vw, 58px);
}

.section-heading p {
  color: var(--muted);
  max-width: 650px;
  margin: 20px auto 0;
}

.section-heading.centered {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 54px;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.intro-copy {
  font-size: 18px;
  color: var(--muted);
}

.intro-copy p {
  margin: 0 0 20px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  color: var(--teal-dark);
  font-weight: 800;
}

.text-link span {
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.programs {
  background: linear-gradient(180deg, #f7fbfb 0%, #fff 100%);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.program-card {
  min-height: 320px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 0 12px 35px rgba(8, 79, 87, .05);
  transition: .25s ease;
}

.program-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 151, 156, .35);
  box-shadow: 0 20px 45px rgba(8, 79, 87, .11);
}

.program-card.featured {
  grid-column: span 2;
  flex-direction: row;
  gap: 28px;
  align-items: flex-start;
}

.program-card img {
  margin-top: 12px;
  border-radius: 12px;
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: #e9f8f8;
  color: var(--teal-dark);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: -.04em;
}

.card-kicker {
  color: var(--teal);
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .12em;
}

.program-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 27px;
  line-height: 1.15;
  margin: 10px 0 12px;
}

.program-card p {
  color: var(--muted);
  margin: 0;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.tags span {
  background: var(--soft);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 11px;
  font-weight: 700;
  color: var(--petrol);
}

.cta-card {
  background: linear-gradient(135deg, #008f92, #00666b);
  color: #fff;
  justify-content: space-between;
  border: none;
}

.cta-card .card-kicker,
.cta-card p {
  color: rgba(255, 255, 255, .78);
}

.destinations-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: center;
}

.section-dark .section-heading p {
  color: rgba(255, 255, 255, .76);
  margin-left: 0;
}

.destinations .btn {
  margin-top: 22px;
}

.destination-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 11px;
}

.destination-cloud span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .11);
  border: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .9);
  font-weight: 700;
  font-size: 14px;
}

.destination-cloud span.lg {
  font-size: 18px;
  background: rgba(255, 255, 255, .17);
}

.destination-cloud span.xl {
  font-size: 23px;
  background: #fff;
  color: var(--petrol);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.pillar {
  padding: 26px 6px 20px 0;
  border-top: 2px solid var(--line);
}

.pillar-number {
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
}

.pillar h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  margin: 12px 0 10px;
}

.pillar p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.professionals-card {
  border-radius: 30px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: center;
}

.professionals-card h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.04em;
  margin: 0 0 20px;
}

.professionals-card p {
  color: var(--muted);
  font-size: 17px;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 22px;
  margin-top: 26px;
}

.check-list span {
  position: relative;
  padding-left: 25px;
  font-size: 13px;
  font-weight: 700;
  color: var(--petrol);
}

.check-list span::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e4f6f6;
  color: var(--teal);
  display: grid;
  place-items: center;
  font-size: 11px;
}

.professional-cta {
  background: var(--soft);
  border-radius: 22px;
  padding: 30px;
}

.mini-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
  color: var(--teal);
}

.professional-cta h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 27px;
  line-height: 1.15;
  margin: 12px 0 24px;
}

.professional-cta .btn+.btn {
  margin-top: 10px;
}

.final-cta {
  background: linear-gradient(120deg, #007b80, #004d54);
  color: #fff;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 40%, rgba(244, 197, 47, .18), transparent 26%);
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
}

.final-cta h2 {
  font-size: clamp(42px, 5vw, 66px);
}

.final-cta p {
  color: rgba(255, 255, 255, .78);
  max-width: 700px;
  font-size: 17px;
}

.final-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 250px;
}

.site-footer {
  padding: 52px 0;
  background: #042f34;
  color: rgba(255, 255, 255, .7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px 60px;
  align-items: center;
}

.footer-brand {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.footer-brand span {
  color: #70d5d6;
}

.site-footer p {
  margin: 6px 0 0;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  font-weight: 700;
}

.footer-links a:hover {
  color: #fff;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: .2s ease;
  cursor: pointer;
}

.back-to-top.show {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: .08s;
}

.delay-2 {
  transition-delay: .16s;
}

.delay-3 {
  transition-delay: .24s;
}

@media (max-width: 980px) {
  .section {
    padding: 82px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .split-grid,
  .destinations-grid,
  .professionals-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .split-grid,
  .destinations-grid,
  .professionals-card {
    gap: 40px;
  }

  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .program-card.featured {
    grid-column: span 2;
  }

  .pillar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .final-actions {
    flex-direction: row;
    min-width: 0;
    flex-wrap: wrap;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 88px;
    padding: 22px;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
    display: grid;
    gap: 14px;
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: .2s ease;
  }

  .main-nav.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 68px 0;
  }

  .nav-wrap {
    height: 70px;
  }

  .brand {
    font-size: 25px;
  }

  .hero {
    padding-top: 52px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions,
  .final-actions {
    flex-direction: column;
  }

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

  .trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .trust-row strong {
    font-size: 20px;
  }

  .trust-row span {
    font-size: 10px;
  }

  .hero-visual {
    min-height: 470px;
  }

  .cover-card {
    width: min(330px, 86%);
  }

  .floating-note {
    font-size: 10px;
    padding: 10px 12px;
  }

  .floating-note span {
    font-size: 15px;
  }

  .note-a {
    left: -2%;
    top: 11%;
  }

  .note-b {
    right: -1%;
    bottom: 11%;
  }

  .section-heading h2,
  .professionals-card h2 {
    font-size: 36px;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }

  .program-card.featured {
    grid-column: auto;
    flex-direction: column;
  }

  .program-card {
    min-height: 0;
  }

  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .professionals-card {
    padding: 30px 22px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .destination-cloud {
    justify-content: flex-start;
  }

  .destination-cloud span.xl {
    font-size: 18px;
  }

  .destination-cloud span.lg {
    font-size: 16px;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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