.header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(228, 232, 239, 0.6);
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  max-width: 1200px;
  align-items: center;
  gap: 1rem;
  padding: 5px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  text-decoration: none;
  color: var(--foreground);
  max-width: 70px;
  border-radius: 9999px;
  overflow: hidden;
}

.logo-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--brand-cream);
}

.logo-icon svg {
  color: var(--brand-gold-deep);
}

.logo-text {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.025em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-right nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 15px;
  font-weight: 600;
}

.header-right nav ul li {
  list-style: none;
}

.header-right nav ul li a {
  text-decoration: none;
  color: rgba(13, 13, 15, 0.7);
  transition: color 0.15s ease;
}

.header-right nav ul li a.current-menu-item {
  color: var(--foreground);
  position: relative;
}

.header-right nav ul li a.current-menu-item::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--brand-gold);
  border-radius: 3.40282e38px;
}

.header-right nav ul li a:hover {
  color: var(--foreground);
}

.btn-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  border-radius: 9999px;
  min-height: 44px;
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  border: none;
  flex-shrink: 0;
  background-color: var(--brand-gold);
  color: var(--brand-navy-deep);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: opacity 0.15s ease;
	    line-height: 1.42857;
}

.btn-header:hover {
  opacity: 0.9;
}

.hambuger-mobile {
  display: none;
}

@media (max-width: 639px) {
  .header-right {
    display: none;
    position: absolute;
    width: 100%;
    height: calc(100vh - 80px);
    top: 100%;
    left: 0;
    background: #fff;
    z-index: 9;
    padding: 4rem 1rem;
  }

  .header-right nav ul {
    flex-direction: column;
  }

  .header-actions {
    text-align: center;
    margin-top: 2rem;
  }

  .header-inner {
    transition: background 0.3s ease;
  }

  .header-inner.active {
    background: #fff;
  }

  .hambuger-mobile {
    position: absolute;
    right: 37px;
    display: block;
    top: 50%;

    z-index: 1;
    transform: translateY(-50%);
  }

  .lines {
    width: 25px;
    height: 3px;
    background: var(--brand-navy-deep);
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -12.5px;
    margin-top: -1.5px;
    -webkit-transition: -webkit-transform 200ms;
    transition: -webkit-transform 200ms;
    transition: transform 200ms;
    transition:
      transform 200ms,
      -webkit-transform 200ms;
  }

  .line-1 {
    -webkit-transform: translate3d(0, -8px, 0);
    transform: translate3d(0, -8px, 0);
  }

  .line-2 {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  .line-3 {
    -webkit-transform: translate3d(0, 8px, 0);
    transform: translate3d(0, 8px, 0);
  }

  .hambuger-mobile.exit .line-1 {
    -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
    transform: translate3d(0, 0, 0) rotate(45deg);
  }

  .hambuger-mobile.exit .line-2 {
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0) scale(0.1, 1);
    transform: translate3d(0, 0, 0) scale(0.1, 1);
  }

  .hambuger-mobile.exit .line-3 {
    -webkit-transform: translate3d(0, 0, 0) rotate(-45deg);
    transform: translate3d(0, 0, 0) rotate(-45deg);
  }
}

.hero {
  position: relative;
  overflow: hidden;
  background-color: var(--brand-navy-deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(
    1100px 500px at 50% -100px,
    color-mix(in oklab, var(--brand-gold) 12%, transparent),
    transparent 60%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  max-width: 1100px;
  padding: 6rem 1.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .hero-inner {
    padding: 8rem 1.5rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  padding: 5px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.hero-title {
  margin: 0 auto;
  max-width: 56rem;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
  text-wrap: balance;
}

.hero-title span {
  color: var(--brand-gold-deep);
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-desc {
  margin: 1.5rem auto 0;
  max-width: 42rem;
  font-size: 1.125rem;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.7);
  text-wrap: pretty;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  margin-top: 1.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.trust-item svg {
  color: var(--brand-gold-deep);
}

.trust-sep {
  display: none;
  width: 1px;
  height: 1rem;
  background: rgba(255, 255, 255, 0.2);
}

@media (min-width: 640px) {
  .trust-sep {
    display: inline-block;
  }
}

/* Buttons */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 8px 24px;
  border-radius: 9999px;
  min-height: 44px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  background-color: var(--brand-gold);
  color: var(--brand-navy-deep);
  transition: filter 0.15s ease;
}

.btn-gold {
  box-shadow: 0 18px 40px -14px
    color-mix(in oklab, var(--brand-gold) 85%, transparent);
}

.btn:hover {
  filter: brightness(1.05);
}

.btn-outline {
  font-weight: 600;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  box-shadow: none;
  transition: background 0.15s ease;
}

.btn-outline:hover {
  filter: none;
  background: rgba(255, 255, 255, 0.1);
}

.btn svg {
  transition: transform 0.15s ease;
}

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

.btn-outline:hover svg {
  transform: translateX(2px);
}

.hero-actions .btn {
  padding: 14px 28px;
}

.compare-section {
  border-top: 1px solid rgba(228, 232, 239, 0.6);
  background-color: var(--background);
  padding: 5rem 0;
}

.btn-navy:hover svg {
  transform: translateX(2px);
}

.compare-inner {
}

.compare-heading {
  margin-bottom: 2.5rem;
  max-width: 42rem;
}

@media (min-width: 640px) {
  .compare-title {
    font-size: 2.25rem;
  }
}

.compare-desc {
  margin-top: 0.75rem;
  color: var(--muted-foreground);
}

/* TAB SCROLL */
.tab-scroll {
  margin: 0 -1.5rem;
  overflow-x: auto;
  padding: 0 1.5rem 0.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.tab-scroll::-webkit-scrollbar {
  display: none;
}

.tab-list {
  display: inline-flex;
  gap: 0.25rem;
  padding: 0.25rem;
  border-radius: 9999px;
  background-color: var(--brand-cream);
  white-space: nowrap;
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: none;
  background: transparent;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(13, 13, 15, 0.6);
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease;
  line-height: 1.42857;
}

.tab-btn--active {
  background-color: var(--brand-navy);
  color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.tab-panel {
  margin-top: 2rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.compare-section .card {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--border);
  background-color: var(--card);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.compare-section .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.card-header {
  padding: 1.25rem 1.5rem;
  color: #fff;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.card-subtitle {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.card-list {
  list-style: none;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-item {
  display: flex;
  gap: 0.75rem;
  font-size: 15px;
  line-height: 1.625;
  color: rgba(13, 13, 15, 0.8);
}

.card-icon {
  flex-shrink: 0;
  margin-top: 2px;
  width: 16px;
  height: 16px;
}

.card .card-header {
  background: var(--bg-header, var(--color));
}

.card .card-icon {
  color: var(--color);
}

.insights {
  border-top: 1px solid var(--border);
  background-color: var(--background);
  padding: 5rem 0;
}

.insights__head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.btn-navy {
  background-color: var(--brand-navy-deep);
  color: #fff;
  box-shadow: none;
  font-size: 0.875rem;
  line-height: 1.42857;
}

.btn-navy:hover {
  filter: brightness(1.15);
}

.insights__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.insight-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 24px -16px rgba(15, 23, 42, 0.18);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.insight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 50px -24px rgba(15, 23, 42, 0.28);
}

.insight-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  width: 100%;
  display: grid;
  place-items: center;
}

.insight-card__media--green {
  background: linear-gradient(135deg, #bbf7d0 0%, #4ade80 100%);
}

.insight-card__media--navy {
  background: linear-gradient(
    135deg,
    color-mix(in oklab, var(--brand-navy) 25%, white) 0%,
    var(--brand-navy) 100%
  );
}

.insight-card__media--blue {
  background: linear-gradient(135deg, #bfdbfe 0%, #60a5fa 100%);
}
.insight-card__media--orange {
	background: linear-gradient(135deg, color-mix(in oklab, #ffb635 40%, white) 0%, #ffb635 100%);
}
.insight-card__media--pink {
  background: linear-gradient(135deg, rgb(251, 207, 232) 0%, rgb(244, 114, 182) 100%);
}
.insight-card__icon {
  color: rgba(255, 255, 255, 0.9);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.18));
  transition: transform 0.3s ease;
}

.insight-card:hover .insight-card__icon {
  transform: scale(1.1);
}

.insight-card__tag {
  position: absolute;
  left: 1rem;
  top: 1rem;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.insight-card__tag--green {
  background-color: color-mix(in oklab, #16a34a 18%, white);
  color: #166534;
}

.insight-card__tag--navy {
  background-color: color-mix(in oklab, var(--brand-navy) 14%, white);
  color: var(--brand-navy-deep);
}

.insight-card__tag--blue {
  background-color: color-mix(in oklab, #2563eb 18%, white);
  color: #1e3a8a;
}

.insight-card__tag--orange {
	background-color: color-mix(in oklab, #ffb635 28%, white);
    color: #000e29;
}
.insight-card__tag--pink {
	background-color: color-mix(rgb(219, 39, 119) 16%, white);
    color: rgb(157, 23, 77);
}
.insight-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.5rem;
}

.insight-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.375;
  letter-spacing: -0.025em;
  color: var(--brand-navy-deep);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.post-related .insight-card__title {
  display: block;
}

.insight-card__excerpt {
  margin-top: 0.75rem;
  margin-bottom: 0;
  font-size: 0.9375rem;
  line-height: 1.625;
  color: var(--muted-foreground);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.insight-card__meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-foreground);
  margin-top: 1.5rem;
}

.insight-card__readtime {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

@media (min-width: 640px) {
  .insights__head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

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

@media (min-width: 1024px) {
  .insights__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .insights__head {
    align-items: flex-start;
  }
}

.methodology {
  border-top: 1px solid var(--border);
  background-color: var(--brand-cream);
  padding: 5rem 0;
}

.methodology__head {
  margin-bottom: 3.5rem;
  text-align: center;
}

.methodology__grid {
  position: relative;
  display: grid;
  gap: 1.5rem;
}

.step-card {
  position: relative;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 2rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.step-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.step-card__icon-wrap {
  display: grid;
  place-items: center;
  height: 3rem;
  width: 3rem;
  border-radius: 0.75rem;
  background-color: var(--brand-navy);
  color: var(--brand-gold);
}

.step-card__number {
  font-size: 1.875rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: color-mix(in oklab, var(--brand-navy) 18%, transparent);
}

.step-card__title {
  margin-top: 1.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.step-card__text {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.625;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .methodology__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.faq {
  border-top: 1px solid var(--border);
  padding: 5rem 0;
}

.container--narrow {
  max-width: 820px;
}

.faq__head {
  margin-bottom: 2.5rem;
  text-align: center;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  overflow: hidden;
}

.faq-item__trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  line-height: 1.5;
}

.faq-item__icon {
  flex-shrink: 0;
  color: var(--muted-foreground);
  transition: transform 0.2s ease;
}

.faq-item__trigger[aria-expanded="true"] .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-item__panel-inner {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-foreground);
}

.newsletter {
  border-top: 1px solid var(--border);
  padding: 5rem 0;
}

.newsletter__panel {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  padding: 4rem 2rem;
  text-align: center;
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--brand-navy-deep) 0%,
    var(--brand-navy) 60%,
    var(--brand-navy-soft) 100%
  );
}

.newsletter__pattern {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: repeating-linear-gradient(
    135deg,
    #fff 0px,
    #fff 1px,
    transparent 1px,
    transparent 22px
  );
}

.newsletter__content {
  position: relative;
}

.newsletter__title {
  margin: 0 auto;
  max-width: 42rem;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.11111;
}

.newsletter__text {
  margin: 1rem auto 0;
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.75);
}

.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 28rem;
  margin: 2rem auto 0;
}

.newsletter__input {
  height: 3rem;
  width: 100%;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0 1.25rem;
  font-size: 1rem;
  color: #fff;
}

.newsletter__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter__input:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--brand-gold);
}

.newsletter__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0 1.75rem;
  border: none;
  border-radius: 9999px;
  font-size: 0.875rem;
  line-height: 1.42857;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  background-color: var(--brand-gold);
  color: var(--brand-navy-deep);
  transition: filter 0.15s ease;
}

.newsletter__submit:hover {
  filter: brightness(1.05);
}

.newsletter__disclaimer {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.33333;
}
@media (max-width:767px){
	.newsletter__submit{
		width:100%
	}
}
@media (min-width: 640px) {
  .newsletter__panel {
    padding: 4rem 4rem;
  }

  .newsletter__form {
    flex-direction: row;
  }

  .newsletter__submit {
    flex-shrink: 0;
  }
	.newsletter__title{
		font-size: 2.25rem;
	}
}

/* Footer */
.site-footer {
  color: #fff;
  background: linear-gradient(
    120deg,
    var(--brand-navy-deep) 0%,
    var(--brand-navy) 70%,
    var(--brand-navy-soft) 100%
  );
}

.site-footer__top {
  display: grid;
  gap: 2.5rem;
  padding: 64px 0 56px;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
}

.site-footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 70px;
  border-radius: 9999px;
  overflow: hidden;
}

.site-footer__logo-icon {
  display: grid;
  place-items: center;
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 9999px;
  background-color: var(--brand-cream);
  color: var(--brand-gold-deep);
}

.site-footer__logo-text {
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.25;
}

.site-footer__tagline {
  margin-top: 1.25rem;
  max-width: 20rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
}

.site-footer__heading {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer__links {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  font-size: 0.875rem;
  list-style: none;
  padding: 0;
}

.site-footer__links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-footer__links a:hover,
.site-footer__links a.current-menu-item {
  color: #fff;
}

.site-footer__social {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-footer__social-link {
  display: grid;
  place-items: center;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  transition:
    background-color 0.15s ease,
    color 0.15s ease;
}

.site-footer__social-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0 4rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.site-footer__bottom p {
  color: #ffffff80;
  margin: 0;
	text-align:center
}

.site-footer__legal {
  display: flex;
  gap: 1.5rem;
}

.site-footer__legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-footer__legal a:hover {
  color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 768px) {
  .site-footer__top {
    grid-template-columns: 1fr 1fr auto;
    align-items: start;
  }

  .site-footer__bottom {
    flex-direction: row;
  }
}

/* about hero */
.about-hero {
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      900px 460px at 85% -80px,
      color-mix(in oklab, var(--brand-gold) 18%, transparent),
      transparent 60%
    ),
    linear-gradient(180deg, var(--brand-cream) 0%, #ffffff 75%);
}

.about-hero__grid {
  display: grid;
  align-items: center;
  gap: 3.5rem;
  padding: 5rem 0;
}

.about-hero__badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.375rem 0.875rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  background-color: color-mix(in oklab, var(--brand-gold) 20%, white);
  color: var(--brand-navy-deep);
}

.about-hero__title {
  margin-top: 1.5rem;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.about-hero__title-accent {
  color: var(--brand-gold-deep);
}

.about-hero__text {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1.125rem;
  line-height: 1.625;
  color: var(--muted-foreground);
}

.about-hero__media {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 560px;
}

.about-hero__media-frame {
  position: relative;
  aspect-ratio: 5 / 6;
  width: 100%;
}

.about-hero__img {
  position: absolute;
  overflow: hidden;
}

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

.about-hero__img--main {
  top: 0;
  left: 0;
  height: 72%;
  width: 72%;
  border-radius: 9999px 9999px 1.5rem 1.5rem;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.35);
  outline: 1px solid color-mix(in oklab, var(--brand-gold) 55%, transparent);
  outline-offset: -1px;
}

.about-hero__img--secondary {
  bottom: 0;
  right: 0;
  height: 68%;
  width: 64%;
  background-color: #fff;
  padding: 0.5rem;
  border-radius: 1.5rem 1.5rem 9999px 9999px;
  box-shadow: 0 40px 80px -30px rgba(15, 23, 42, 0.45);
}

.about-hero__img-inner {
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 1.25rem 1.25rem 9999px 9999px;
  outline: 1px solid color-mix(in oklab, var(--brand-gold) 60%, transparent);
  outline-offset: -1px;
}

.about-hero__img-inner img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}

.about-hero__dots {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  height: 5rem;
  width: 5rem;
  border-radius: 9999px;
  opacity: 0.7;
  background: radial-gradient(circle, var(--brand-gold) 1.5px, transparent 2px)
    0 0 / 14px 14px;
  pointer-events: none;
}

@media (min-width: 1024px) {
  .about-hero__grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 5rem;
    padding: 7rem 0;
  }

  .about-hero__title {
    font-size: 3.4rem;
  }
}

.trust-pledge {
  border-top: 1px solid var(--border);
  background-color: var(--background);
  padding: 5rem 0;
}

.trust-pledge__head {
  margin-bottom: 3rem;
  max-width: 42rem;
}

.trust-pledge__grid {
  display: grid;
  gap: 1.5rem;
}

.pledge-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 2rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.pledge-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -10px rgba(15, 23, 42, 0.2);
}

.pledge-card__bar {
  position: absolute;
  inset: 0 0 auto 0;
  height: 0.25rem;
  background-color: var(--brand-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.pledge-card:hover .pledge-card__bar {
  transform: scaleX(1);
}

.pledge-card__icon-wrap {
  display: grid;
  place-items: center;
  height: 3rem;
  width: 3rem;
  border-radius: 20px;
  background-color: var(--brand-navy);
  color: var(--brand-gold);
}

.pledge-card__title {
  margin-top: 1.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.4;
}

.pledge-card__text {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.625;
  color: var(--muted-foreground);
  margin-bottom: 0;
}

.pledge-card__link {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-gold-deep);
  text-decoration: none !important;
}

.pledge-card__link:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .trust-pledge__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.data-sources {
  border-top: 1px solid var(--border);
  background-color: var(--brand-cream);
  padding: 5rem 0;
}

.data-sources__head {
  margin-bottom: 3rem;
  max-width: 42rem;
}

.data-sources__title {
  font-size: 2.25rem;
  line-height: 1.11111;
}

.data-sources__intro {
  margin-top: 0.75rem;
  color: var(--muted-foreground);
}

.data-sources__grid {
  display: grid;
  gap: 1.5rem;
}

.source-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 2rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* .source-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -10px rgba(15, 23, 42, 0.2);
} */

.source-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.source-card__icon-wrap {
  display: grid;
  place-items: center;
  height: 3rem;
  width: 3rem;
  border-radius: 20px;
  background-color: color-mix(in oklab, var(--brand-gold) 18%, white);
  color: var(--brand-navy-deep);
}

.source-card__external {
  color: var(--muted-foreground);
  transition: color 0.15s ease;
	display:none
	
}

.source-card:hover .source-card__external {
  color: var(--foreground);
}

.source-card__title {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.source-card__text {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.625;
  color: var(--muted-foreground);
}
.source-card ul li{
    font-size: 0.9375rem;
    line-height: 1.625;
    color: var(--muted-foreground);
}
.source-card ul{
	    margin-left: 20px;
}
.source-card ul li a{
    display: flex;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none !important;
	    color: var(--muted-foreground);
}
.source-card ul li a:hover{
    color: var(--brand-gold-deep);
	
}
@media (min-width: 768px) {
  .data-sources__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.final-cta {
  border-top: 1px solid var(--border);
  background-color: var(--background);
  padding: 5rem 0;
}

.final-cta__inner {
  text-align: center;
}

.final-cta__title {
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.11111;
}

.final-cta__text {
  margin: 1rem auto 0;
  max-width: 36rem;
  font-size: 1.125rem;
  line-height: 1.55556;
  color: var(--muted-foreground);
}

.final-cta__actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.final-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.15s ease;
}

.final-cta__link:hover {
  color: var(--foreground);
}

.final-cta__actions .btn {
  padding: 14px 32px;
}

.insights-hero {
  position: relative;
  overflow: hidden;
  background-color: var(--background);
}

.insights-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      700px 380px at 50% -120px,
      color-mix(in oklab, var(--brand-gold) 16%, transparent),
      transparent 60%
    ),
    linear-gradient(180deg, var(--brand-cream) 0%, #ffffff 80%);
}

.insights-hero__inner {
  padding: 5rem 0 2.5rem;
  text-align: center;
}

.insights-hero__title {
  margin-top: 1rem;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--brand-navy-deep);
}

.insights-hero__text {
  margin: 1.25rem auto 0;
  max-width: 39rem;
  font-size: 1.125rem;
  line-height: 1.625;
  color: var(--muted-foreground);
}

.insights-hero__search {
  margin: 2.25rem auto 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 600px;
  border-radius: 9999px;
  border: 1px solid color-mix(in oklab, var(--border) 70%, transparent);
  background-color: #fff;
  padding: 0.5rem;
  box-shadow: 0 18px 40px -24px rgba(15, 23, 42, 0.25);
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
  width: 100%;
}

.insights-hero__search:focus-within {
  border-color: var(--brand-gold);
  box-shadow: 0 18px 40px -18px
    color-mix(in oklab, var(--brand-gold) 55%, transparent);
}

.insights-hero__search-icon {
  display: grid;
  place-items: center;
  height: 2.5rem;
  width: 2.5rem;
  flex-shrink: 0;
  color: var(--muted-foreground);
}

.insights-hero__search-input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  padding: 0;
  font-size: 0.9375rem;
  color: var(--foreground);
}

.insights-hero__search-input:focus {
  outline: none;
}

.insights-hero__search-input::placeholder {
  color: var(--muted-foreground);
}

.insights-hero__search-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: none;
  border-radius: 9999px;
  padding: 10px 18px;
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  background-color: var(--brand-navy-deep);
  color: #fff;
  transition: filter 0.15s ease;
  line-height: 1.42857;
}

.insights-hero__search-submit:hover {
  filter: brightness(1.15);
}

@media (min-width: 640px) {
  .insights-hero__inner {
    padding-top: 6rem;
  }

  .insights-hero__title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .insights-hero__title {
    font-size: 3.75rem;
  }
}

.filter-bar {
  border-bottom: 1px solid color-mix(in oklab, var(--border) 50%, transparent);
}

.filter-bar__scroll {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 26px 8px 26px 8px;
  scrollbar-width: none;
}

.filter-bar__scroll::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  flex-shrink: 0;
  border-radius: 9999px;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.42857;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  background-color: transparent;
  color: var(--brand-navy-deep);
  border: 1.5px solid color-mix(in oklab, var(--brand-navy) 18%, transparent);
  transition:
    background-color 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease;
}

.filter-chip.is-active {
  background-color: var(--brand-navy-deep);
  color: #fff;
  border-color: var(--brand-navy-deep);
  box-shadow: 0 12px 28px -14px
    color-mix(in oklab, var(--brand-navy-deep) 80%, transparent);
}

.insights-list {
  padding: 4rem 0;
}

.load-more-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;

  height: 48px;
  padding: 0 2rem;

  white-space: nowrap;
  cursor: pointer;

  border: 2px solid var(--brand-navy-deep);
  border-radius: 9999px;

  background: transparent;
  color: var(--brand-navy-deep);

  font-size: 14px;
  font-weight: 700;

  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.load-more-btn:hover:not(:disabled) {
  background-color: var(--accent-color, #f5f5f5);
  color: var(--accent-foreground, #111);
}

.load-more-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 1px var(--ring-color, #000);
}

.load-more-btn:disabled {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.5;
}

.load-more-btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  pointer-events: none;
}

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

.advertisement-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.advertisement-divider {
  width: 100%;
  max-width: 200px;
  height: 1px;
  margin: 0 auto 40px;
  background: color-mix(in oklab, var(--brand-navy) 18%, transparent);
}

.advertisement-banner {
  display: flex;
  justify-content: center;
}

.advertisement-banner img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.post-layout {
  padding: 3.5rem 0;
}

.post-layout__grid {
  display: grid;
  gap: 2.5rem;
}

/* breadcrumb */
.post-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-foreground);
  line-height: 1.33333;
}

.post-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.post-breadcrumb a:hover {
  color: var(--foreground);
}

.post-breadcrumb__current {
  font-weight: 600;
  color: var(--brand-navy-deep);
}

.post-category-badge {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: color-mix(in oklab, var(--brand-navy) 14%, white);
  color: var(--brand-navy-deep);
}

.post-title {
  margin-top: 1rem;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--brand-navy-deep);
}

.post-meta {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.post-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.post-lead {
  margin-top: 2rem;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.625;
  color: var(--brand-navy-deep);
}

.post-share {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.post-share__btn {
  display: inline-flex;
  height: 2.5rem;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid color-mix(in oklab, var(--brand-navy) 18%, transparent);
  background: transparent;
  padding: 0 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-navy);
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.post-share__btn:hover {
  background-color: var(--color-slate-50);
}

.post-share__icon {
  display: grid;
  place-items: center;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 9999px;
  border: 1px solid color-mix(in oklab, var(--brand-navy) 18%, transparent);
  background: transparent;
  color: var(--color-slate-600);
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.15s ease,
    background-color 0.15s ease,
    color 0.15s ease;
}

.post-share__icon:hover {
  transform: scale(1.05);
  color: #fff;
}

.post-share__icon[data-share="twitter"]:hover {
  background: rgb(14, 165, 233);
  border-color: rgb(14, 165, 233);
}

.post-share__icon[data-share="facebook"]:hover {
  background: rgb(24, 119, 242);
  border-color: rgb(24, 119, 242);
}

.post-share__icon[data-share="linkedin"]:hover {
  background: rgb(10, 102, 194);
  border-color: rgb(10, 102, 194);
}

.post-share__icon[data-share="whatsapp"]:hover {
  background: rgb(37, 211, 102);
  border-color: rgb(37, 211, 102);
}

.post-feature-image {
  margin: 2.5rem 0 0;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 30px 60px -30px rgba(15, 23, 42, 0.45);
}

.post-feature-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.post-content {
  margin-top: 3rem;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: color-mix(in oklab, var(--foreground) 85%, transparent);
}

.post-content h2 {
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--brand-navy-deep);
  line-height: 1.2;
  padding-top: 1rem;
  margin-bottom: 1.25rem;
}

.post-content h3 {
  margin-top: 1.25rem;
  line-height: 1.2;
  font-size: 1.25rem;
  font-weight: 700;
  padding-top: 0.5rem;
  margin-bottom: 1.25rem;
  color: var(--brand-navy-deep);
}

.post-content p {
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  color: color-mix(in oklab, var(--foreground) 85%, transparent);
}

.post-content h4 {
  margin: 1.25rem 0 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  padding-top: 0.5rem;
  margin-bottom: 1.25rem;
  color: var(--brand-navy-deep);
}

.post-content ul,
.post-content ol {
  margin: 1.25rem 0;
  padding-left: 1.5rem;
}

.post-content li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.post-content a {
  color: var(--brand-gold);
  text-decoration: underline;
}

.post-content strong {
  font-weight: 700;
}

.post-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1rem auto;
  border-radius: 1rem;
}

.post-content blockquote {
  margin: 1rem 0;
  padding-left: 1rem;
  border-left: 4px solid var(--brand-gold);
  font-style: italic;
}

.post-ad {
  display: grid;
  place-items: center;
  width: 100%;
  border-radius: 0.75rem;
  border: 2px dashed color-mix(in oklab, var(--brand-navy) 22%, transparent);
  background-color: color-mix(in oklab, var(--brand-navy) 3%, white);
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.post-ad--inline {
  margin: 2.5rem 0;
}

.post-ad--leaderboard {
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
}

.post-ad__label {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-foreground);
}

.post-ad__slot {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-navy-deep);
}

.post-ad-stack {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.post-related {
  margin-top: 4rem;
}

.post-related__title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--brand-navy-deep);
}

.post-related__grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
}

.related-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  background-color: #fff;
  box-shadow: 0 8px 24px -16px rgba(15, 23, 42, 0.18);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px -22px rgba(15, 23, 42, 0.28);
}

.related-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  width: 100%;
  display: grid;
  place-items: center;
}

.related-card__icon {
  color: rgba(255, 255, 255, 0.9);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.18));
}

.related-card__tag {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  border-radius: 9999px;
  padding: 0.125rem 0.625rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.insights__grid.loading{
	opacity: 0.5;
}
.related-card__tag--navy {
  background-color: color-mix(in oklab, var(--brand-navy) 14%, white);
  color: var(--brand-navy-deep);
}

.related-card__tag--blue {
  background-color: color-mix(in oklab, #2563eb 18%, white);
  color: #1e3a8a;
}

.related-card__tag--gold {
  background-color: color-mix(in oklab, var(--brand-gold) 28%, white);
  color: var(--brand-navy-deep);
}

.related-card__body {
  padding: 1.25rem;
}

.related-card__body h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.375;
  color: var(--brand-navy-deep);
  transition: color 0.3s ease;
}

/* sidebar */
.post-sidebar__sticky {
  position: static;
}

.post-toc {
  border-radius: 1rem;
  border: 1px solid color-mix(in oklab, var(--brand-navy) 12%, transparent);
  background-color: var(--brand-cream);
  padding: 1.5rem;
}

.post-toc__eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--brand-gold-deep);
}

.post-toc__title {
  margin-top: 0.5rem;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--brand-navy-deep);
}

.post-toc__list {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
}

.post-toc__link {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.375;
  font-weight: 500;
  color: color-mix(in oklab, var(--brand-navy-deep) 75%, transparent);
  text-decoration: none;
  transition:
    color 0.15s ease,
    background-color 0.15s ease;
}

.post-toc__link::before {
  content: "";
  margin-top: 0.375rem;
  height: 0.375rem;
  width: 0.375rem;
  flex-shrink: 0;
  border-radius: 9999px;
  background-color: color-mix(in oklab, var(--brand-navy) 30%, transparent);
  transition:
    transform 0.15s ease,
    background-color 0.15s ease;
}

.post-toc__link:hover {
  color: var(--brand-navy-deep);
}

.post-toc__link.is-active {
  font-weight: 700;
  color: var(--brand-gold-deep);
  background-color: color-mix(in oklab, var(--brand-gold) 14%, transparent);
}

.post-toc__link.is-active::before {
  background-color: var(--brand-gold-deep);
  transform: scale(1.3);
}

.post-sidebar__back {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-navy-deep);
  text-decoration: none;
}

.post-sidebar__back:hover {
  opacity: 0.8;
}

@media (min-width: 1024px) {
  .post-layout__grid {
    grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
    gap: 3.5rem;
  }

  .post-sidebar__sticky {
    position: sticky;
    top: 7rem;
  }
}

@media (max-width: 992px) {
  .post-related__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .post-related__grid {
    grid-template-columns: 1fr;
  }

  .post-title {
    font-size: 2.25rem;
  }

  .post-content h2 {
    font-size: 1.5rem;
  }
}

#ez-toc-container {
  border-radius: 1rem;
  border: 1px solid color-mix(in oklab, var(--brand-navy) 12%, transparent);
  background-color: var(--brand-cream);
  padding: 1.5rem;
  box-shadow: none;
}

#ez-toc-container .ez-toc-title-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
  flex-wrap: wrap;
}

#ez-toc-container .ez-toc-title {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--brand-navy-deep);
  margin: 0;
}

#ez-toc-container .ez-toc-title-container::before {
  content: "On this page";
  display: block;
  width: 100%;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--brand-gold-deep);
  margin-bottom: 0.5rem;
}

#ez-toc-container .ez-toc-toggle a {
  color: var(--brand-navy-deep);
  text-decoration: none;
}

#ez-toc-container nav {
  margin-top: 1.25rem;
}

#ez-toc-container .ez-toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

#ez-toc-container .ez-toc-list li {
  margin: 0;
}

#ez-toc-container .ez-toc-list a {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.375;
  font-weight: 500;
  color: color-mix(in oklab, var(--brand-navy-deep) 75%, transparent);
  text-decoration: none;

  transition:
    color 0.15s ease,
    background-color 0.15s ease;
}

#ez-toc-container .ez-toc-list a::before {
  content: "";
  margin-top: 0.375rem;
  height: 0.375rem;
  width: 0.375rem;
  flex-shrink: 0;
  border-radius: 9999px;
  background-color: color-mix(in oklab, var(--brand-navy) 30%, transparent);
  transition:
    transform 0.15s ease,
    background-color 0.15s ease;
}

#ez-toc-container .ez-toc-list a:hover {
  color: var(--brand-navy-deep);
  background-color: color-mix(in oklab, var(--brand-navy) 6%, transparent);
}
@media(min-width:768px){
	#ez-toc-container .ez-toc-list a.active,
#ez-toc-container .ez-toc-list li.active > a {
  font-weight: 700;
  color: var(--brand-gold-deep);
  background-color: color-mix(in oklab, var(--brand-gold) 14%, transparent);
}#ez-toc-container .ez-toc-list a.active::before,
#ez-toc-container .ez-toc-list li.active > a::before {
  background-color: var(--brand-gold-deep);
  transform: scale(1.3);
}
}




#ez-toc-container.ez-toc-grey,
#ez-toc-container .ez-toc-v2_0_72 {
  background-color: var(--brand-cream) !important;
  border-color: color-mix(
    in oklab,
    var(--brand-navy) 12%,
    transparent
  ) !important;
}

.policy-page {
  padding: 4rem 0;
}

.policy-page__header {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.policy-page__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand-gold);
}

.policy-page__title {
  margin-bottom: 16px;
  color: var(--brand-navy-deep);
}

.policy-page__description {
  max-width: 640px;
  margin: 0 auto;
}

.policy-page__content {
  max-width: 1000px;
  margin: 0 auto;
}
.contact-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid color-mix(in oklab, var(--border) 40%, transparent);
  background: linear-gradient(180deg, var(--brand-cream) 0%, #ffffff 100%);
}

.contact-hero__inner {
  padding: 5rem 0 4rem;
  text-align: center;
}

.contact-hero__title {
  margin: 0 auto;
  max-width: 48rem;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--brand-navy-deep);
}

.contact-hero__text {
  margin: 1.25rem auto 0;
  max-width: 42rem;
  font-size: 1.125rem;
  line-height: 1.625;
  color: var(--muted-foreground);
}

.contact-hero__notice {
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 48rem;
  border-radius: 1rem;
  border: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  background-color: var(--brand-cream);
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.contact-hero__notice-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  height: 3rem;
  width: 3rem;
  border-radius: 9999px;
  background-color: color-mix(in oklab, var(--brand-gold) 20%, white);
  color: var(--brand-navy-deep);
}

.contact-hero__notice-text {
  font-size: 0.9375rem;
  line-height: 1.625;
  color: color-mix(in oklab, var(--foreground) 80%, transparent);
}

@media (min-width: 640px) {
  .contact-hero__inner {
    padding: 7rem 0 5rem;
  }

  .contact-hero__title {
    font-size: 3.4rem;
  }

  .contact-hero__notice {
    flex-direction: row;
    text-align: left;
    padding: 1.5rem 2rem;
  }
}
.contact-main {
  padding: 4rem 0;
}

.contact-main__grid {
  display: grid;
  gap: 3.5rem;
}

.contact-form-panel {
  border-radius: 24px;
  border: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  background-color: var(--card);
  box-shadow: 0 2px 24px -8px
    var(
      --tw-shadow-color,
      color-mix(in oklab, var(--brand-navy) 8%, transparent)
    );
  padding: 3rem;
}

.contact-form-panel__placeholder {
  display: grid;
  place-items: center;
  min-height: 320px;
  border: 2px dashed color-mix(in oklab, var(--brand-navy) 20%, transparent);
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted-foreground);
}

/* info column */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-info__head {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-info__icon-wrap {
  display: grid;
  place-items: center;
  height: 2.5rem;
  width: 2.5rem;
  flex-shrink: 0;
  border-radius: 9999px;
  background-color: var(--brand-cream);
  color: var(--brand-gold-deep);
}

.contact-info__heading {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: var(--brand-navy-deep);
}

.contact-info__email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--brand-gold-deep);
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.contact-info__email:hover {
  opacity: 0.8;
}

.contact-info__text {
  font-size: 0.9375rem;
  line-height: 1.625;
  color: var(--muted-foreground);
}

.contact-info__text strong {
  color: color-mix(in oklab, var(--foreground) 90%, transparent);
}

.contact-info__text--spaced {
  margin-top: 0.5rem;
}

/* notice card */
.contact-notice-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-radius: 1.5rem;
  border: 1px solid color-mix(in oklab, var(--border) 40%, transparent);
  background-color: var(--brand-cream);
  padding: 1.5rem;
}

.contact-notice-card__icon-wrap {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 9999px;
  background-color: color-mix(in oklab, var(--brand-gold) 20%, white);
  color: var(--brand-navy-deep);
}

.contact-notice-card__heading {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: var(--brand-navy-deep);
}

.contact-notice-card__text {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.625;
  color: var(--muted-foreground);
}

@media (min-width: 1024px) {
  .contact-main {
    padding: 6rem 0;
  }

  .contact-main__grid {
    grid-template-columns: 3fr 2fr;
    gap: 5rem;
  }
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  align-items: flex-start;
}

.contact-form__group {
  display: flex;
  flex-direction: column;
  /* gap: 0.5rem; */
  width: 100%;
}

.contact-form__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  border: 1px solid color-mix(in oklab, var(--border) 70%, transparent);
  background-color: transparent;
  border-radius: 20px;
  padding: 0.75rem;
  font-size: 0.875rem;
  line-height: 0.875rem;
  color: var(--foreground);
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
  box-shadow: 0 0 #0000;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: var(--muted-foreground);
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: var(--brand-gold-deep);
  box-shadow: 0 0 0 2px
    color-mix(in oklab, var(--brand-gold-deep) 20%, transparent);
}

.contact-form__input,
.contact-form__select {
  height: 3rem;
}

.contact-form__textarea {
  min-height: 118px;
  font-family: inherit;
  resize: vertical;
}

.contact-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.25rem;
  padding-right: 2.5rem;
  color: var(--muted-foreground);
}

.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 3.25rem;
  border: none;
  border-radius: 20px;
  background-color: var(--brand-navy-deep);
  color: var(--brand-cream);
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition:
    opacity 0.15s ease,
    transform 0.15s ease;
}

.contact-form__submit:hover {
  opacity: 0.9;
}

.contact-form__submit:active {
  transform: scale(0.98);
}

.contact-form__submit svg {
  display: inline-block;
}

@media (min-width: 640px) {
  .contact-form__submit {
    width: auto;
    padding: 0 3rem;
  }
}
@media (max-width:767px) {
	.contact-form-panel{
		padding: 2rem;
	}
	.contact-form__submit{
		display: flex;
    width: 100%;
	}
}.contact-form__group--conditional {
  display: flex;
  flex-direction: column;
  /* gap: 0.5rem; */
  animation: slideInDown 0.3s ease-out forwards;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-form__required {
  color: var(--destructive);
}

.contact-form__hint {
  font-size: 0.75rem;
  font-style: italic;
  color: var(--muted-foreground);
  margin-top: 0.5rem;
}
.contact-info__block .contact-info__email,
.contact-info__block .contact-info__text,
.contact-notice-card{

margin-left:3.25em
}
