/* ====== FONTS ====== */
@import url("https://use.typekit.net/wfm7hif.css");

/* ====== TOKENS ====== */
:root {
  --clr--navy: 35, 55, 86;
  --clr--gold: 192, 163, 97;
  --clr--white: 255, 255, 255;
  --clr--black: 0, 0, 0;
  --clr--card-bg: 245, 245, 245;
  --clr--body-txt: 74, 74, 74;

  --fnt--poppins: "Poppins", sans-serif;
  --fnt--dejanire: "dejanire-headline", serif;

  --max-width: 1320px;
  --header-h-pill: 68px;
  --header-h-full: 60px;
  --header-m-pill: 16px;
}

/* ====== SCROLL ====== */
::-webkit-scrollbar {
  width: 0.5em;
  height: 0.5em;
}

::-webkit-scrollbar-track {
  background: rgb(var(--clr--white));
  box-shadow: inset 1px 1px 2px rgba(var(--clr--black), 0.2);
}

::-webkit-scrollbar-thumb {
  background: rgb(var(--clr--navy));
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
}

/* ====== BASE ====== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  color: rgb(var(--clr--body-txt));
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 400;
  font-family: var(--fnt--poppins);
  line-height: 1.65;
  background: rgb(var(--clr--white));
  padding: 0;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 5px 0;
  line-height: 1.15;
  font-weight: 700;
  border-bottom: 0;
}

h1 {
  font-size: clamp(32px, 3.5vw, 58px);
}

h2 {
  font-size: clamp(26px, 2.2vw, 42px);
}

h3 {
  font-size: clamp(20px, 1.5vw, 30px);
}

h4 {
  font-size: clamp(17px, 1.2vw, 24px);
}

p {
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.7;
  font-weight: 400;
}

ul,
ol {
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.6;
  font-weight: 400;
  padding-left: 24px;
}

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

a:hover {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  position: relative;
}

section {
  position: relative;
  scroll-margin-top: 80px;
}

/* ====== UTILITIES ====== */
.desktop {
  display: inline-block !important;
}

.mobile {
  display: none !important;
}

.hidden {
  display: none;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.section-row {
  padding-block: clamp(48px, 5.5vw, 100px);
  position: relative;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(15px, 3vw, 30px);
}

/* ====== TITLES ====== */
.titles {
  margin-bottom: 1.75rem;
}

.titles>h1,
.titles>h2 {
  color: rgb(var(--clr--navy));
  font-size: clamp(22px, 2.1vw, 40px);
  font-weight: 900;
  line-height: 1.1;
}

.titles__highlighter {
  color: rgb(var(--clr--gold));
}

.titles__sub-heading {
  color: rgb(var(--clr--body-txt));
  font-size: clamp(15px, 1.2vw, 22px);
  font-weight: 500;
  margin-top: 8px;
}

/* ====== ANIMATED TITLE ====== */
.animated-title {
  overflow: hidden;
}

.animated-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  -webkit-transform: translateY(30px);
  -moz-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
}

.animated-word--visible {
  animation: revealWord 0.55s ease forwards;
  -webkit-animation: revealWord 0.55s ease forwards;
  -moz-animation: revealWord 0.55s ease forwards;
  -ms-animation: revealWord 0.55s ease forwards;
  -o-animation: revealWord 0.55s ease forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes revealWord {
  to {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}

/* ====== FONT WEIGHT UTILITIES ====== */
.fw300 {
  font-weight: 300 !important;
}

.fw400 {
  font-weight: 400 !important;
}

.fw500 {
  font-weight: 500 !important;
}

.fw600 {
  font-weight: 600 !important;
}

.fw700,
strong {
  font-weight: 700 !important;
}

.fw800 {
  font-weight: 800 !important;
}

.fw900 {
  font-weight: 900 !important;
}

.fnt--poppins {
  font-family: var(--fnt--poppins);
}

.fnt--dejanire {
  font-family: var(--fnt--dejanire);
}

/* ====== COLOR UTILITIES ====== */
.clr--navy {
  color: rgb(var(--clr--navy)) !important;
}

.clr--gold {
  color: rgb(var(--clr--gold)) !important;
}

.clr--white {
  color: rgb(var(--clr--white)) !important;
}

.clr--black {
  color: rgb(var(--clr--black)) !important;
}

.bgclr--navy {
  background-color: rgb(var(--clr--navy));
  color: rgb(var(--clr--white));
}

.bgclr--gold {
  background-color: rgb(var(--clr--gold));
  color: rgb(var(--clr--navy));
}

.bgclr--white {
  background-color: rgb(var(--clr--white));
  color: rgb(var(--clr--navy));
}

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fnt--dejanire);
  font-size: clamp(14px, 1.5vw, 20px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.03em;
  padding: clamp(12px, 0.7vw, 13px) clamp(28px, 3.5vw, 52px);
  border-radius: 999px;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  -ms-border-radius: 999px;
  -o-border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  -webkit-transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  -moz-transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  -ms-transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  -o-transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn--fill-white {
  color: rgb(var(--clr--navy));
  background-color: rgb(var(--clr--white));

}

.btn--fill-white:hover,
.btn--fill-white:focus-visible {
  background-color: rgb(var(--clr--gold));
  color: rgb(var(--clr--navy));
  outline: none;
}

.btn--navy {
  color: rgb(var(--clr--white));
  background-color: rgb(var(--clr--navy));

}

.btn--navy:hover,
.btn--navy:focus-visible {
  color: rgb(var(--clr--navy));
  background-color: rgb(var(--clr--gold));
  outline: none;
}

.btn--navy_var {
  color: rgb(var(--clr--navy));
  background-color: rgb(var(--clr--white));
}

.btn--navy_var:hover,
.btn--navy_var:focus-visible {
  background-color: rgb(var(--clr--navy));
  color: rgb(var(--clr--white));
}

.link-arrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 500;
  color: rgb(var(--clr--navy));
  padding: 14px 20px;
  border-bottom: 1px solid rgba(var(--clr--navy), 0.15);
  transition: color 0.25s ease, padding-left 0.25s ease;
  -webkit-transition: color 0.25s ease, padding-left 0.25s ease;
  -moz-transition: color 0.25s ease, padding-left 0.25s ease;
  -ms-transition: color 0.25s ease, padding-left 0.25s ease;
  -o-transition: color 0.25s ease, padding-left 0.25s ease;
}

.link-arrow:hover {
  color: rgb(var(--clr--gold));
  padding-left: 26px;
}

.link-arrow__icon {
  font-size: 14px;
  flex-shrink: 0;
}


/* ============================================
   HEADER
   ============================================ */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.header__inner {
  width: 100%;
  padding: 20px 10px;
  transition: background-color 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
  -webkit-transition: background-color 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
  -moz-transition: background-color 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
  -ms-transition: background-color 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
  -o-transition: background-color 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.header__inner-content {
  max-width: var(--max-width);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h-pill);
  background-color: rgb(var(--clr--gold));
  border-radius: 999px;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  -ms-border-radius: 999px;
  -o-border-radius: 999px;
  padding: 0 clamp(24px, 3vw, 40px);
  transition: height 0.35s ease, border-radius 0.35s ease, background-color 0.35s ease, padding 0.35s ease;
  -webkit-transition: height 0.35s ease, border-radius 0.35s ease, background-color 0.35s ease, padding 0.35s ease;
  -moz-transition: height 0.35s ease, border-radius 0.35s ease, background-color 0.35s ease, padding 0.35s ease;
  -ms-transition: height 0.35s ease, border-radius 0.35s ease, background-color 0.35s ease, padding 0.35s ease;
  -o-transition: height 0.35s ease, border-radius 0.35s ease, background-color 0.35s ease, padding 0.35s ease;
}

.header--scrolled .header__inner {
  background-color: rgb(var(--clr--navy));
  padding: 0;
  box-shadow: 0 3px 20px rgba(var(--clr--black), 0.18);
}

.header--scrolled .header__inner-content {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  max-width: var(--max-width);
  background-color: rgb(var(--clr--navy));
}

.header--scrolled .header__nav-link {
  color: rgb(var(--clr--white));
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header__logo-img {
  width: 250px;
  height: auto;
  position: relative;
  transition: width 0.35s ease;
  -webkit-transition: width 0.35s ease;
  -moz-transition: width 0.35s ease;
  -ms-transition: width 0.35s ease;
  -o-transition: width 0.35s ease;
}

.header--scrolled .header__logo-img {
  width: 220px;
  filter: brightness(0) invert(1);
}

.header__nav {
  display: flex;
  align-items: center;
}

ul.header__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__nav-item {
  position: relative;
}

.header__nav-link {
  color: rgb(var(--clr--navy));
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 600;
  line-height: 1;
  display: block;
  padding: 6px 0;
  position: relative;
  transition: color 0.25s ease;
  -webkit-transition: color 0.25s ease;
  -moz-transition: color 0.25s ease;
  -ms-transition: color 0.25s ease;
  -o-transition: color 0.25s ease;
}


.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: rgb(var(--clr--navy));
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  transition: width 0.25s ease;
  -webkit-transition: width 0.25s ease;
  -moz-transition: width 0.25s ease;
  -ms-transition: width 0.25s ease;
  -o-transition: width 0.25s ease;
}

.header--scrolled .header__nav-link::after {
  background-color: rgb(var(--clr--gold));
}

.header__nav-link:hover,
.header__nav-link:focus-visible {
  outline: none
}

.header__nav-link:hover::after,
.header__nav-link:focus-visible::after {
  width: 100%;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  padding: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.header__hamburger-icon {
  background-color: rgb(var(--clr--navy));
  width: 26px;
  height: 2px;
  display: block;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.header--scrolled .header__hamburger-icon {
  background-color: rgb(var(--clr--navy));
}

.header__hamburger[aria-expanded="true"] .header__hamburger-icon:nth-of-type(1) {
  transform: rotate(45deg) translate(5px, 7px);
  -webkit-transform: rotate(45deg) translate(5px, 7px);
  -moz-transform: rotate(45deg) translate(5px, 7px);
  -ms-transform: rotate(45deg) translate(5px, 7px);
  -o-transform: rotate(45deg) translate(5px, 7px);
}

.header__hamburger[aria-expanded="true"] .header__hamburger-icon:nth-of-type(2) {
  opacity: 0;
}

.header__hamburger[aria-expanded="true"] .header__hamburger-icon:nth-of-type(3) {
  transform: rotate(-45deg) translate(5px, -7px);
  -webkit-transform: rotate(-45deg) translate(5px, -7px);
  -moz-transform: rotate(-45deg) translate(5px, -7px);
  -ms-transform: rotate(-45deg) translate(5px, -7px);
  -o-transform: rotate(-45deg) translate(5px, -7px);
}


/* ============================================
   HERO
   ============================================ */
.hero {
  background-color: rgb(var(--clr--navy));
  display: flex;
  min-height: 100vh;
  align-items: stretch;
  overflow: hidden;
}

.hero__container {
  width: 100%;
  padding-top: 100px;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-right: 0;
  display: flex;
  align-items: stretch;
}

.hero__content {
  flex: 0 0 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(14px, 1.8vw, 30px);
  padding-bottom: clamp(24px, 4vw, 50px);
  padding-right: clamp(24px, 3vw, 48px);
}

.hero__icon {
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(12px);
  -webkit-transform: translateY(12px);
  -moz-transform: translateY(12px);
  -ms-transform: translateY(12px);
  -o-transform: translateY(12px);
  animation: fadeUp 0.5s ease 0.05s forwards;
  -webkit-animation: fadeUp 0.5s ease 0.05s forwards;
  -moz-animation: fadeUp 0.5s ease 0.05s forwards;
  -ms-animation: fadeUp 0.5s ease 0.05s forwards;
  -o-animation: fadeUp 0.5s ease 0.05s forwards;
}

.hero__heading {
  font-family: var(--fnt--poppins);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.12;
  color: rgb(var(--clr--white));
}

.hero__body {
  display: flex;
  flex-direction: column;
  margin-bottom: 35px;
}

.hero__text {
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 400;
  color: rgb(var(--clr--white));
  line-height: 1.72;
  opacity: 0;
  transform: translateY(16px);
  -webkit-transform: translateY(16px);
  -moz-transform: translateY(16px);
  -ms-transform: translateY(16px);
  -o-transform: translateY(16px);
}

.hero__text.is-visible {
  animation: fadeUp 0.55s ease forwards;
  -webkit-animation: fadeUp 0.55s ease forwards;
  -moz-animation: fadeUp 0.55s ease forwards;
  -ms-animation: fadeUp 0.55s ease forwards;
  -o-animation: fadeUp 0.55s ease forwards;
  animation-delay: var(--delay);
}

.hero__text--bold {
  font-weight: 700;
  color: rgb(var(--clr--white));
}

.hero__cta {
  align-self: flex-start;
  opacity: 0;
  transform: translateY(14px);
  -webkit-transform: translateY(14px);
  -moz-transform: translateY(14px);
  -ms-transform: translateY(14px);
  -o-transform: translateY(14px);
}

.hero__cta.is-visible {
  animation: fadeUp 0.55s ease forwards;
  -webkit-animation: fadeUp 0.55s ease forwards;
  -moz-animation: fadeUp 0.55s ease forwards;
  -ms-animation: fadeUp 0.55s ease forwards;
  -o-animation: fadeUp 0.55s ease forwards;
  animation-delay: var(--delay);
}

.hero__image-wrap {
  width: 45%;
  position: absolute;
  top: 15%;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: stretch;
}

.hero__image-frame {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  border-radius: 50% 0 0 50%;
  -webkit-border-radius: 50% 0 0 50%;
  -moz-border-radius: 50% 0 0 50%;
  -ms-border-radius: 50% 0 0 50%;
  -o-border-radius: 50% 0 0 50%;
  overflow: hidden;
  background-color: #EBEBEA;
  border: 2px solid rgb(var(--clr--gold));
  opacity: 0;
  animation: fadeIn 0.8s ease 0.2s forwards;
  -webkit-animation: fadeIn 0.8s ease 0.2s forwards;
  -moz-animation: fadeIn 0.8s ease 0.2s forwards;
  -ms-animation: fadeIn 0.8s ease 0.2s forwards;
  -o-animation: fadeIn 0.8s ease 0.2s forwards;
}

.hero__image {
  width: auto;
  max-width: 32vw;
  height: auto;
  object-fit: contain;
}

.hero__badge {
  position: absolute;
  bottom: 60px;
  right: 0;
  background-color: rgb(var(--clr--gold));
  border-radius: 200px 0 0 200px;
  -webkit-border-radius: 200px 0 0 200px;
  -moz-border-radius: 200px 0 0 200px;
  -ms-border-radius: 200px 0 0 200px;
  -o-border-radius: 200px 0 0 200px;
  padding: clamp(12px, 1.5vw, 15px) clamp(12px, 3vw, 30px);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: -4px 4px 20px rgba(var(--clr--black), 0.20);
  opacity: 0;
  animation: slideLeft 0.55s ease 0.65s forwards;
  -webkit-animation: slideLeft 0.55s ease 0.65s forwards;
  -moz-animation: slideLeft 0.55s ease 0.65s forwards;
  -ms-animation: slideLeft 0.55s ease 0.65s forwards;
  -o-animation: slideLeft 0.55s ease 0.65s forwards;
}

.hero__badge-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.hero__badge-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hero__badge-name {
  font-size: clamp(12px, 2vw, 20px);
  font-weight: 700;
  color: rgb(var(--clr--navy));
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.3;
}

.hero__badge-date {
  font-size: clamp(12px, 2vw, 20px);
  font-weight: 500;
  color: rgb(var(--clr--navy));
  margin: 0;
  line-height: 1.3;
  text-transform: uppercase;
}


/* ============================================
   DID YOU KNOW
   ============================================ */
.did-you-know {
  background-color: rgb(var(--clr--white));
}

.did-you-know__heading-wrap {
  margin-bottom: clamp(32px, 3.5vw, 56px);
  opacity: 0;
  transform: translateY(20px);
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
}

.did-you-know__heading-wrap.is-visible {
  animation: fadeUp 0.6s ease forwards;
  -webkit-animation: fadeUp 0.6s ease forwards;
  -moz-animation: fadeUp 0.6s ease forwards;
  -ms-animation: fadeUp 0.6s ease forwards;
  -o-animation: fadeUp 0.6s ease forwards;
}

.did-you-know__heading {
  font-family: var(--fnt--poppins);
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 36px);
  color: rgb(var(--clr--navy));
  margin: 0;
}

.did-you-know__grid {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.did-you-know__divider {
  width: 1px;
  background-color: rgba(var(--clr--navy), 0.15);
  flex-shrink: 0;
  align-self: stretch;
  margin-inline: clamp(16px, 2.5vw, 36px);
}

.did-you-know__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(18px, 3.5vw, 35px);
  opacity: 0;
  transform: translateY(28px);
  -webkit-transform: translateY(28px);
  -moz-transform: translateY(28px);
  -ms-transform: translateY(28px);
  -o-transform: translateY(28px);
}

.did-you-know__stat.is-visible {
  animation: fadeUp 0.6s ease forwards;
  -webkit-animation: fadeUp 0.6s ease forwards;
  -moz-animation: fadeUp 0.6s ease forwards;
  -ms-animation: fadeUp 0.6s ease forwards;
  -o-animation: fadeUp 0.6s ease forwards;
  animation-delay: var(--delay, 0s);
}

.did-you-know__stat-top {
  min-height: 80px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.did-you-know__stat-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.did-you-know__label {
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 600;
  color: rgb(var(--clr--navy));
  line-height: 1.35;
  margin: 0;
}

.did-you-know__label-highlight {
  font-family: var(--fnt--dejanire);
  color: rgb(var(--clr--gold));
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 700;
  display: inline-block;
  line-height: 1.2;
}

.did-you-know__label-main {
  font-family: var(--fnt--dejanire);
  font-size: clamp(20px, 1.8vw, 28px);
  color: rgb(var(--clr--navy));
  font-weight: 700;
  display: inline-block;
  line-height: 1.2;
}

.did-you-know__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.did-you-know_icon-text {
  position: absolute;
  top: 150px;
  max-width: 100px;
  font-family: var(--fnt--dejanire);
  font-size: clamp(20px, 1.8vw, 28px);
  color: rgb(var(--clr--white));
  font-weight: 500;
  line-height: 1;
  z-index: 5;
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
}

.did-you-know__icon {
  width: clamp(100px, 13vw, 190px);
  height: auto;
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
}

.did-you-know__icon--pie {
  width: clamp(120px, 16vw, 237px);
}

.did-you-know__icon--circle {
  width: clamp(88px, 9vw, 118px);
}

.did-you-know__stat:hover .did-you-know__icon {
  transform: scale(1.12);
  -webkit-transform: scale(1.12);
  -moz-transform: scale(1.12);
  -ms-transform: scale(1.12);
  -o-transform: scale(1.12);
}

.did-you-know__caption {
  font-family: var(--fnt--poppins);
  font-size: clamp(14px, 1.7vw, 21px);
  font-weight: 500;
  color: rgb(var(--clr--navy));
  line-height: 1.4;
  margin: 0;
}


.did-you-know__caption-gold {
  font-weight: 500;
  color: rgb(var(--clr--gold));
}


/* ============================================
   CAN'T FIND HELP
   ============================================ */
.cant-find {
  background-color: rgb(var(--clr--gold));
}

.cant-find__inner {
  display: flex;
  align-items: center;
  gap: clamp(90px, 15vw, 250px);
}

.cant-find__left {
  flex: 0 0 35%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(20px, 2.5vw, 32px);
}

.cant-find__heading {
  font-family: var(--fnt--poppins);
  font-weight: 600;
  font-size: clamp(26px, 2.8vw, 44px);
  color: rgb(var(--clr--white));
  line-height: 1.1;
  margin: 0;
}

.cant-find__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.5vw, 20px);
}

.cant-find__text {
  font-family: var(--fnt--poppins);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 400;
  color: rgb(var(--clr--white));
  line-height: 1.7;
  margin: 0;
  opacity: 0;
  transform: translateY(16px);
  -webkit-transform: translateY(16px);
  -moz-transform: translateY(16px);
  -ms-transform: translateY(16px);
  -o-transform: translateY(16px);
}

.cant-find__text.is-visible {
  animation: fadeUp 0.55s ease forwards;
  -webkit-animation: fadeUp 0.55s ease forwards;
  -moz-animation: fadeUp 0.55s ease forwards;
  -ms-animation: fadeUp 0.55s ease forwards;
  -o-animation: fadeUp 0.55s ease forwards;
  animation-delay: var(--delay, 0s);
}

/* ============================================
   PERSONALISED TREATMENT
   ============================================ */
.treatment {
  background-color: rgb(var(--clr--white));
}

.treatment__intro {
  display: flex;
  align-items: flex-start;
  gap: clamp(90px, 15vw, 250px);
  margin-bottom: clamp(40px, 5vw, 72px);
}

.treatment__intro-left {
  flex: 0 0 35%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(20px, 2.5vw, 32px);
  opacity: 0;
  transform: translateY(20px);
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
}

.treatment__intro-left.is-visible {
  animation: fadeUp 0.6s ease forwards;
  -webkit-animation: fadeUp 0.6s ease forwards;
  -moz-animation: fadeUp 0.6s ease forwards;
  -ms-animation: fadeUp 0.6s ease forwards;
  -o-animation: fadeUp 0.6s ease forwards;
}

.treatment__heading {
  font-family: var(--fnt--poppins);
  font-weight: 600;
  font-size: clamp(26px, 2.8vw, 44px);
  color: rgb(var(--clr--navy));
  line-height: 1.15;
  margin: 0;
}

.treatment__intro-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.2vw, 18px);
  padding-top: 6px;
}

.treatment__intro-text {
  font-size: clamp(13px, 1vw, 15px);
  color: rgb(var(--clr--body-txt));
  line-height: 1.7;
  margin: 0;
  opacity: 0;
  transform: translateY(16px);
  -webkit-transform: translateY(16px);
  -moz-transform: translateY(16px);
  -ms-transform: translateY(16px);
  -o-transform: translateY(16px);
}

.treatment__intro-text.is-visible {
  animation: fadeUp 0.55s ease forwards;
  -webkit-animation: fadeUp 0.55s ease forwards;
  -moz-animation: fadeUp 0.55s ease forwards;
  -ms-animation: fadeUp 0.55s ease forwards;
  -o-animation: fadeUp 0.55s ease forwards;
  animation-delay: var(--delay, 0s);
}

.treatment__cards {
  display: flex;
  gap: clamp(24px, 8vw, 77px);
  align-items: flex-start;
}

.treatment__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  transform: translateY(28px);
  -webkit-transform: translateY(28px);
  -moz-transform: translateY(28px);
  -ms-transform: translateY(28px);
  -o-transform: translateY(28px);
}

.treatment__card.is-visible {
  animation: fadeUp 0.6s ease forwards;
  -webkit-animation: fadeUp 0.6s ease forwards;
  -moz-animation: fadeUp 0.6s ease forwards;
  -ms-animation: fadeUp 0.6s ease forwards;
  -o-animation: fadeUp 0.6s ease forwards;
  animation-delay: var(--delay, 0s);
}

.treatment__card-image-wrap {
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  overflow: hidden;
  margin-bottom: clamp(20px, 2.2vw, 32px);
}

.treatment__card-image {
  width: 100%;
  height: clamp(240px, 28vw, 400px);
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
  -webkit-transition: transform 0.4s ease;
  -moz-transition: transform 0.4s ease;
  -ms-transition: transform 0.4s ease;
  -o-transition: transform 0.4s ease;
}

.treatment__card:hover .treatment__card-image {
  transform: scale(1.03);
  -webkit-transform: scale(1.03);
  -moz-transform: scale(1.03);
  -ms-transform: scale(1.03);
  -o-transform: scale(1.03);
}

.treatment__card-body {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.2vw, 16px);
}

.treatment__card-heading {
  font-size: clamp(22px, 2.2vw, 35px);
  font-weight: 600;
  color: rgb(var(--clr--navy));
  margin: 0;
  line-height: 1.15;
}

.treatment__card-text {
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 500;
  color: rgb(var(--clr--navy));
  line-height: 1.7;
  margin: 0;
}


.treatment__card-rule {
  border: none;
  border-top: 1px solid rgba(var(--clr--navy), 0.15);
  margin: clamp(6px, 1vw, 12px) 0 0;
}


.treatment__card-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.treatment__card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: clamp(13px, 1.2vw, 17px) clamp(16px, 1.5vw, 22px);
  font-family: var(--fnt--dejanire);
  font-size: clamp(13px, 1.5vw, 20px);
  font-weight: 600;
  color: rgb(var(--clr--navy));
  text-decoration: none;
  border-radius: 5px;
  background-color: transparent;
  transition: color 0.25s ease, background-color 0.25s ease, padding-left 0.25s ease;
  -webkit-transition: color 0.25s ease, background-color 0.25s ease, padding-left 0.25s ease;
  -moz-transition: color 0.25s ease, background-color 0.25s ease, padding-left 0.25s ease;
  -ms-transition: color 0.25s ease, background-color 0.25s ease, padding-left 0.25s ease;
  -o-transition: color 0.25s ease, background-color 0.25s ease, padding-left 0.25s ease;
}

.treatment__card-link:last-child {
  border-bottom: none;
}

.treatment__card-link:hover,
.treatment__card-link:focus-visible {
  background-color: rgb(var(--clr--navy));
  color: rgb(var(--clr--white));
  padding-left: clamp(22px, 2vw, 30px);
  border-radius: 5px;
  outline: none;
}

.treatment__card-link-arrow {
  flex-shrink: 0;
  font-size: 13px;
  transition: transform 0.25s ease;
  -webkit-transition: transform 0.25s ease;
  -moz-transition: transform 0.25s ease;
  -ms-transition: transform 0.25s ease;
  -o-transition: transform 0.25s ease;
}

.treatment__card-link:hover .treatment__card-link-arrow,
.treatment__card-link:focus-visible .treatment__card-link-arrow {
  transform: translateX(5px);
  -webkit-transform: translateX(5px);
  -moz-transform: translateX(5px);
  -ms-transform: translateX(5px);
  -o-transform: translateX(5px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: rgb(var(--clr--navy));
  padding-block: clamp(36px, 4vw, 60px);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 48px);
}

.footer__brand {
  display: flex;
  align-items: center;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
}

.footer__logo-img {
  width: clamp(160px, 22vw, 360px);
  height: auto;
  position: relative;
  filter: brightness(0) invert(1);
}

.footer__right {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.5vw, 20px);
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: clamp(5px, 0.5vw, 10px);
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(35px, 3vw, 40px);
  height: clamp(35px, 3vw, 40px);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: rgb(var(--clr--white));
  color: rgb(var(--clr--navy));
  font-size: clamp(13px, 1.2vw, 18px);
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
  -webkit-transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
  -moz-transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
  -ms-transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
  -o-transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.footer__social-link:hover,
.footer__social-link:focus-visible {
  background-color: rgb(var(--clr--gold));
  color: rgb(var(--clr--navy));
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  outline: none;
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 24px);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer__copyright {
  font-family: var(--fnt--poppins);
  font-size: clamp(11px, 0.85vw, 13px);
  font-weight: 400;
  color: rgb(var(--clr--white));
  margin: 0;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.footer__legal-nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1vw, 14px);
}

.footer__legal-sep {
  color: rgba(var(--clr--white), 0.30);
  font-size: clamp(11px, 0.85vw, 13px);
}

.footer__legal-link {
  font-family: var(--fnt--poppins);
  font-size: clamp(11px, 0.85vw, 13px);
  font-weight: 400;
  color: rgb(var(--clr--white));
  text-decoration: none;
  transition: color 0.25s ease;
  -webkit-transition: color 0.25s ease;
  -moz-transition: color 0.25s ease;
  -ms-transition: color 0.25s ease;
  -o-transition: color 0.25s ease;
}

.footer__legal-link:hover,
.footer__legal-link:focus-visible {
  color: rgb(var(--clr--gold));
  outline: none;
}

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
    -webkit-transform: translateY(24px);
    -moz-transform: translateY(24px);
    -ms-transform: translateY(24px);
    -o-transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(20px);
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
}

/* ====== REDUCED MOTION ====== */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}