:root {
  --tbp-blue: #22488f;
  --tbp-pink: #ff2e6f;
  --tbp-sky: #bfeff6;
  --tbp-soft-sky: #ebfbff;
  --tbp-ink: #2a3558;
  --tbp-muted: #7e88a3;
  --tbp-border: #e5edf7;
  --tbp-bg: #ffffff;
  --tbp-shadow: 0 24px 48px rgba(37, 73, 144, 0.08);
  --tbp-motion-fast: 180ms;
  --tbp-motion-base: 320ms;
  --tbp-motion-slow: 640ms;
  --tbp-motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes tbp-fade-up {
  from {
    opacity: 0;
    transform: translate3d(0, 1.5rem, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes tbp-fade-down {
  from {
    opacity: 0;
    transform: translate3d(0, -1rem, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes tbp-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -0.9rem, 0);
  }
}

@keyframes tbp-soft-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(1rem, -0.75rem, 0) scale(1.03);
  }
}

@keyframes tbp-breathe {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

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

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--tbp-ink);
  background: linear-gradient(180deg, #fff 0%, #fdfefe 100%);
  overflow-x: hidden;
}

body.animations-ready [data-animate] {
  opacity: 0;
  transform: translate3d(0, 2rem, 0) scale(0.985);
  transition:
    opacity var(--tbp-motion-slow) var(--tbp-motion-ease) var(--tbp-reveal-delay, 0ms),
    transform var(--tbp-motion-slow) var(--tbp-motion-ease) var(--tbp-reveal-delay, 0ms);
  will-change: opacity, transform;
}

body.animations-ready [data-animate="left"] {
  transform: translate3d(-2rem, 1rem, 0) scale(0.985);
}

body.animations-ready [data-animate="right"] {
  transform: translate3d(2rem, 1rem, 0) scale(0.985);
}

body.animations-ready [data-animate].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.mobile-only {
  display: none !important;
}

.desktop-only {
  display: block !important;
}

section[id],
footer[id],
main[id] {
  scroll-margin-top: 5.5rem;
}

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

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

.container {
  max-width: 1240px;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(34, 72, 143, 0.06);
  animation: tbp-fade-down 520ms var(--tbp-motion-ease) both;
}

.site-header .navbar {
  min-height: 4.35rem;
  padding: 0.35rem 0 0.2rem;
}

.site-header .container {
  display: grid;
  grid-template-columns: auto auto minmax(0, 20rem) minmax(0, 1fr);
  align-items: center;
  column-gap: 1.9rem;
  padding-left: 50px;
  padding-right: 50px;
}

.site-header__badge {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  animation: tbp-fade-up 760ms var(--tbp-motion-ease) both;
}

.site-header__badge-title {
  color: var(--tbp-pink);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.site-header__badge-subtitle {
  margin-top: 0.25rem;
  color: #6b7b9c;
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: lowercase;
}

.site-header__search {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  min-width: 0;
  margin: 0;
}

.site-header__search-field {
  position: relative;
  flex: 1 1 auto;
}

.site-header__search-input {
  width: 100%;
  height: 2.55rem;
  padding: 0.65rem 3rem 0.65rem 0.95rem;
  border: 1px solid rgba(34, 72, 143, 0.14);
  border-radius: 999px;
  background: #fff;
  color: var(--tbp-blue);
  font-size: 0.84rem;
  font-weight: 500;
  box-shadow: 0 10px 22px rgba(34, 72, 143, 0.06);
  transition: border-color var(--tbp-motion-fast) ease, box-shadow var(--tbp-motion-fast) ease;
}

.site-header__search-input:focus {
  outline: none;
  border-color: rgba(34, 72, 143, 0.32);
  box-shadow: 0 12px 26px rgba(34, 72, 143, 0.12);
}

.site-header__search-input::placeholder {
  color: #94a0b8;
  font-weight: 400;
}

.site-header__search-submit {
  position: absolute;
  top: 50%;
  right: 0.4rem;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--tbp-blue);
  color: #fff;
  box-shadow: 0 10px 20px rgba(34, 72, 143, 0.16);
  transform: translateY(-50%);
  transition: transform var(--tbp-motion-fast) ease, background-color var(--tbp-motion-fast) ease, box-shadow var(--tbp-motion-fast) ease;
}

.site-header__search-submit:hover,
.site-header__search-submit:focus {
  background: #173972;
  box-shadow: 0 14px 24px rgba(34, 72, 143, 0.2);
}

.site-header__search-submit i {
  font-size: 0.82rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler {
  justify-self: end;
  padding: 0.2rem 0.35rem;
  color: var(--tbp-blue);
}

.navbar-toggler i {
  display: block;
  font-size: 1.65rem;
  line-height: 1;
}

.brand-mark {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.1rem;
  min-width: 0;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  animation: tbp-fade-up 640ms var(--tbp-motion-ease) both;
}

.brand-mark--image {
  align-items: center;
}

.brand-mark--large {
  font-size: 2rem;
}

.brand-mark__logo {
  display: block;
  width: auto;
  max-width: none;
  height: auto;
}

.brand-mark__themes {
  color: #6aa5d8;
  font-size: 1.15rem;
  font-weight: 300;
}

.brand-mark__by {
  color: var(--tbp-blue);
  font-size: 0.95rem;
  font-weight: 700;
}

.brand-mark__profession {
  color: var(--tbp-blue);
  font-size: 1.65rem;
  font-weight: 700;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.35rem 0;
  font-size: 0.84rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--tbp-blue);
  letter-spacing: 0;
  transition: color var(--tbp-motion-fast) ease, transform var(--tbp-motion-fast) ease;
}

.nav-link:hover,
.nav-link:focus {
  color: #173972;
  transform: translateY(-0.08rem);
}

.nav-link-accent {
  color: var(--tbp-pink);
}

.site-nav {
  margin-left: auto;
  justify-content: flex-end;
  min-width: 0;
  gap: 0.45rem;
}

.site-nav .nav-item {
  position: relative;
}

.site-nav .nav-item--divider::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.24rem;
  width: 1px;
  height: 0.42rem;
  background: #8f9bb4;
  transform: translateY(-50%);
}

.site-nav .nav-item--mega-full.nav-item--divider::after {
  display: none;
}

.nav-link--dropdown i {
  font-size: 0.56rem;
  transform: translateY(-0.02rem);
}

.nav-mega-toggle {
  border: 0;
  background: transparent;
}

.site-header .container {
  position: relative;
}

.navbar-collapse {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-end;
  justify-self: end;
  min-width: 0;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 40;
  display: none;
  width: min(64rem, calc(100vw - 2rem));
  max-height: 50vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(34, 72, 143, 0.08);
  border-radius: 1.2rem;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 56px rgba(32, 63, 126, 0.12);
  scrollbar-gutter: stable;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 0.9rem) scale(0.985);
  transform-origin: top center;
  transition:
    opacity var(--tbp-motion-fast) ease,
    transform var(--tbp-motion-base) var(--tbp-motion-ease),
    visibility 0s linear var(--tbp-motion-fast);
}

.mega-menu.is-open {
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
  transition-delay: 0s;
}

.nav-item--mega-full {
  position: static !important;
}

.mega-menu--full {
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  transform: translateY(0.9rem) scale(0.985);
}

.mega-menu--full.is-open {
  transform: translateY(0) scale(1);
}

.mega-menu__grid {
  display: grid;
  gap: 1rem;
}

.mega-menu__grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mega-menu__grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mega-menu__column {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.mega-menu__label {
  margin: 0 0 0.55rem;
  color: var(--tbp-pink);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mega-menu__links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.3rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mega-menu__links a {
  display: block;
  color: var(--tbp-blue);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.2;
}

.mega-menu__links a:hover,
.mega-menu__links a:focus {
  color: var(--tbp-pink);
}

.mega-menu__links--columns {
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  column-gap: 1.5rem;
  row-gap: 0.45rem;
}

.mega-menu__footer {
  position: sticky;
  bottom: -1.1rem;
  z-index: 2;
  margin-top: 0.8rem;
  padding-top: 0.75rem;
  padding-bottom: 0.2rem;
  border-top: 1px solid rgba(34, 72, 143, 0.08);
  background: rgba(255, 255, 255, 0.98);
}

.mega-menu__more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--tbp-pink);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.mega-menu__more-link:hover,
.mega-menu__more-link:focus {
  color: #f61963;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 2rem 0 2.75rem;
  background: var(--tbp-sky);
}

.hero-section::before {
  content: "";
  position: absolute;
  left: 3.5rem;
  bottom: 3.2rem;
  width: 7.8rem;
  height: 7.8rem;
  border: 1.4rem solid rgba(255, 181, 207, 0.88);
  border-radius: 50%;
}

.hero-section::after {
  content: "";
  position: absolute;
  left: 9.2rem;
  bottom: 1.55rem;
  width: 6.2rem;
  height: 6.2rem;
  border-radius: 50%;
  background: rgba(97, 203, 239, 0.92);
  box-shadow: 7rem -1.25rem 0 -1.65rem rgba(247, 204, 221, 0.96);
}

.hero-section > .container {
  max-width: 1320px;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.hero-panel {
  position: relative;
  min-height: clamp(24rem, 34vw, 31rem);
  padding: 0.75rem 0 0;
  background: transparent;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: 16.5rem;
  padding: 0;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(15rem, 17rem) minmax(0, 1fr);
  column-gap: clamp(2rem, 4vw, 4.25rem);
  align-items: center;
}

.hero-layout__copy,
.hero-layout__visual {
  position: relative;
  z-index: 1;
}

.hero-copy__eyebrow {
  max-width: 16.5rem;
  margin: 0 0 0.65rem;
  font-size: 1.25rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #5778b7;
}

.hero-copy__title {
  max-width: 12.875rem;
  margin: 0 0 2rem;
  color: var(--tbp-blue);
  font-size: 2.48rem;
  font-weight: 800;
  line-height: 0.74;
  text-transform: uppercase;
  letter-spacing: -0.06em;
}

.btn-pill {
  border: 0;
  border-radius: 999px;
  padding: 0.82rem 1.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--tbp-pink);
  box-shadow: 0 12px 28px rgba(255, 46, 111, 0.22);
  transition:
    transform var(--tbp-motion-fast) ease,
    box-shadow var(--tbp-motion-fast) ease,
    background-color var(--tbp-motion-fast) ease,
    filter var(--tbp-motion-fast) ease;
}

.hero-copy__cta {
  width: 16.0625rem;
  min-height: 2.3125rem;
  padding: 0.65rem 1.1rem;
}

.btn-pill:hover,
.btn-pill:focus {
  background: #f61963;
  transform: translateY(-0.14rem);
  box-shadow: 0 16px 32px rgba(255, 46, 111, 0.26);
  filter: saturate(1.05);
}

.hero-visual {
  width: 100%;
  max-width: none;
  height: 100%;
  overflow: hidden;
  margin: 0;
  border-radius: 0;
}

.hero-people-strip {
  display: grid;
  grid-template-columns: repeat(var(--hero-panel-count, 11), minmax(0, 1fr));
  gap: 0.12rem;
  width: 100%;
  min-height: 0;
  height: clamp(19rem, 31vw, 26.5rem);
  background: transparent;
}

.hero-people-strip__item {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  background-color: #eef4fb;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-decoration: none;
  transition: transform var(--tbp-motion-fast) ease, filter var(--tbp-motion-fast) ease;
}

.hero-people-strip__item.is-collage-slice {
  background-position: var(--hero-slice-position) 50%;
  background-size: calc(var(--hero-panel-count, 11) * 100%) 100%;
}

.hero-people-strip__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 18%, rgba(20, 39, 77, 0.74) 100%);
  opacity: 0;
  transition: opacity var(--tbp-motion-fast) ease;
}

.hero-people-strip__label {
  position: absolute;
  top: 50%;
  right: 0.38rem;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 0.18rem;
  color: #fff;
  text-align: right;
  opacity: 0;
  transform: translate(0.35rem, -50%);
  transition: opacity var(--tbp-motion-fast) ease, transform var(--tbp-motion-fast) ease;
}

.hero-people-strip__label-main {
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
}

.hero-people-strip__label-sub {
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
  opacity: 0.95;
}

.hero-people-strip__item:hover,
.hero-people-strip__item:focus {
  transform: translateY(-0.12rem);
  filter: saturate(1.04);
}

.hero-people-strip__item:hover::after,
.hero-people-strip__item:focus::after,
.hero-people-strip__item:hover .hero-people-strip__label,
.hero-people-strip__item:focus .hero-people-strip__label {
  opacity: 1;
}

.hero-people-strip__item:hover .hero-people-strip__label,
.hero-people-strip__item:focus .hero-people-strip__label {
  transform: translate(0, -50%);
}

.hero-visual img {
  width: 100%;
  height: auto;
  object-fit: cover;
  animation: tbp-float 9s ease-in-out infinite;
}

.categories-section {
  position: relative;
  z-index: 2;
  margin-top: -3.75rem;
  height: 31.3125rem;
  padding: 0;
}

.categories-section > .container {
  position: relative;
  max-width: 1319px;
  height: 31.3125rem;
  padding-right: 0;
  padding-left: 0;
}

.category-mosaic {
  position: absolute;
  inset: 0;
  height: 31.3125rem;
  overflow: hidden;
}

.category-mosaic::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2.25rem;
  background:
    radial-gradient(circle at 1.8% 112%, #fff 0 1.2rem, transparent 1.25rem),
    radial-gradient(circle at 5.6% 100%, #fff 0 1.15rem, transparent 1.2rem),
    radial-gradient(circle at 10.3% 112%, #fff 0 1.35rem, transparent 1.4rem),
    radial-gradient(circle at 15.1% 95%, #fff 0 1.05rem, transparent 1.1rem),
    radial-gradient(circle at 19.5% 112%, #fff 0 1.3rem, transparent 1.35rem),
    radial-gradient(circle at 24.3% 98%, #fff 0 1.05rem, transparent 1.1rem),
    radial-gradient(circle at 29.3% 112%, #fff 0 1.35rem, transparent 1.4rem),
    radial-gradient(circle at 34.7% 95%, #fff 0 1.1rem, transparent 1.15rem),
    radial-gradient(circle at 39.6% 112%, #fff 0 1.28rem, transparent 1.33rem),
    radial-gradient(circle at 44.8% 95%, #fff 0 1rem, transparent 1.05rem),
    radial-gradient(circle at 49.8% 112%, #fff 0 1.42rem, transparent 1.47rem),
    radial-gradient(circle at 55.3% 95%, #fff 0 1.05rem, transparent 1.1rem),
    radial-gradient(circle at 60.4% 112%, #fff 0 1.25rem, transparent 1.3rem),
    radial-gradient(circle at 65.4% 98%, #fff 0 1.05rem, transparent 1.1rem),
    radial-gradient(circle at 70.2% 112%, #fff 0 1.4rem, transparent 1.45rem),
    radial-gradient(circle at 75.4% 96%, #fff 0 1.02rem, transparent 1.07rem),
    radial-gradient(circle at 80.2% 112%, #fff 0 1.3rem, transparent 1.35rem),
    radial-gradient(circle at 85.2% 94%, #fff 0 1rem, transparent 1.05rem),
    radial-gradient(circle at 90.3% 112%, #fff 0 1.36rem, transparent 1.41rem),
    radial-gradient(circle at 95% 97%, #fff 0 1rem, transparent 1.05rem),
    linear-gradient(180deg, var(--tbp-sky) 0, var(--tbp-sky) 100%);
  z-index: 0;
}

.category-deco {
  position: absolute;
  display: block;
  pointer-events: none;
  filter: blur(10px);
  opacity: 0.95;
}

.category-deco--cyan {
  top: 4.5rem;
  left: 13.5625rem;
  width: 5.375rem;
  height: 5.375rem;
  background: rgba(126, 222, 244, 0.95);
  filter: blur(12px);
}

.category-deco--pink {
  top: 3.75rem;
  left: 29.5625rem;
  width: 7.1875rem;
  height: 7.25rem;
  background: rgba(255, 176, 196, 0.95);
  filter: blur(14px);
}

.category-deco--white {
  top: 4.125rem;
  left: 60.6875rem;
  width: 5.125rem;
  height: 5.1875rem;
  background: rgba(238, 247, 255, 0.95);
  filter: blur(13px);
}

.category-tile {
  position: absolute;
  display: block;
  overflow: hidden;
  width: 9.8125rem;
  height: 9.8125rem;
  padding: 0;
  color: rgba(255, 255, 255, 0.92);
  z-index: 1;
  text-decoration: none;
  transition: transform 0.18s ease-in-out, box-shadow 0.18s ease-in-out;
}

.category-tile:hover,
.category-tile:focus {
  transform: translateY(-3px);
}

.category-tile__ghost {
  position: absolute;
  top: 0.1875rem;
  left: -0.5rem;
  font-size: 4.375rem;
  font-weight: 300;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.085em;
  opacity: 0.42;
  white-space: nowrap;
}

.category-tile__name {
  position: absolute;
  left: 0.7rem;
  bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  text-align: left;
  letter-spacing: -0.02em;
}

.category-tile--blog {
  left: 3.6875rem;
  top: 1.5rem;
  background: #f9d6db;
  color: #fdf4f6;
}

.category-tile--food {
  left: 13.5rem;
  top: 10.3125rem;
  background: #b4edef;
  color: #f4ffff;
}

.category-tile--education {
  left: 23.3125rem;
  top: 10.3125rem;
  background: #fff2a1;
  color: #fffef0;
}

.category-tile--corporate {
  left: 33.125rem;
  top: 1.5rem;
  background: #e8e8fd;
  color: #f6f5ff;
}

.category-tile--wedding {
  left: 42.9375rem;
  top: 1.5rem;
  background: #f7f7f6;
  color: #fbfbf9;
}

.category-tile--estate {
  left: 52.75rem;
  top: 1.5rem;
  background: #1d428c;
  color: rgba(255, 255, 255, 0.9);
}

.category-tile--commerce {
  left: 42.9375rem;
  top: 10.3125rem;
  background: #81d6ef;
  color: #effdff;
}

.category-tile--directory {
  left: 42.9375rem;
  top: 20.125rem;
  background: #f6a1b9;
  color: #ffe6ee;
}

.category-tile--tech {
  left: 62.5625rem;
  top: 10.3125rem;
  background: #fff2a1;
  color: #fffef0;
}

.category-tile--blog .category-tile__ghost { top: 0.25rem; left: -0.55rem; }
.category-tile--food .category-tile__ghost { top: 0.2rem; left: -0.35rem; }
.category-tile--education .category-tile__ghost { top: 0.28rem; left: -0.1rem; }
.category-tile--corporate .category-tile__ghost { top: -0.15rem; left: -0.55rem; }
.category-tile--wedding .category-tile__ghost { top: 0.3rem; left: -0.55rem; }
.category-tile--estate .category-tile__ghost { top: -0.05rem; left: -0.6rem; opacity: 0.6; }
.category-tile--commerce .category-tile__ghost { top: 0.25rem; left: -0.45rem; }
.category-tile--directory .category-tile__ghost { top: 0.28rem; left: -0.4rem; }
.category-tile--tech .category-tile__ghost { top: 0.32rem; left: -0.45rem; }

.category-tile--blog .category-tile__name { color: #ec3657; }
.category-tile--food .category-tile__name { color: #007686; }
.category-tile--education .category-tile__name { color: #cb6912; }
.category-tile--corporate .category-tile__name { color: #4a57c5; }
.category-tile--wedding .category-tile__name { color: #7b7b7b; }
.category-tile--estate .category-tile__name { color: #ffffff; }
.category-tile--commerce .category-tile__name { color: #143f8e; }
.category-tile--directory .category-tile__name { color: #9b1f47; }
.category-tile--tech .category-tile__name { color: #d77717; }

.category-tile.active .category-tile__ghost,
.category-tile.active .category-tile__name {
  opacity: 1;
}

.stats-strip {
  position: absolute;
  left: 4.4375rem;
  top: 23.4375rem;
  width: 28.5625rem;
  height: 5rem;
}

.stat-card {
  position: relative;
  position: absolute;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
}

.stat-card::after {
  content: "";
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: 0.65;
}

.stat-card__value {
  font-size: 4.125rem;
  line-height: 0.84;
  font-weight: 700;
  color: var(--tbp-blue);
  letter-spacing: -0.085em;
}

.stat-card__label {
  color: var(--tbp-blue);
  font-size: 0.9375rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.stat-card--professions { left: 0; width: 8.125rem; }
.stat-card--categories { left: 10.8125rem; width: 7.625rem; }
.stat-card--types { left: 20.0625rem; width: 7.6875rem; }

.stat-card--accent .stat-card__value,
.stat-card--accent .stat-card__label {
  color: var(--tbp-pink);
}

.stat-card--sky .stat-card__value,
.stat-card--sky .stat-card__label {
  color: #74cce7;
}

.section-intro {
  padding: 0.8rem 0 1.9rem;
}

.section-intro__text {
  max-width: 39rem;
  margin: 0.55rem auto 0;
  color: var(--tbp-muted);
  font-size: 0.7rem;
  line-height: 1.95;
}

.themes-section {
  padding: 0.35rem 0 3.7rem;
}

.theme-card {
  height: 100%;
  transition:
    transform var(--tbp-motion-base) var(--tbp-motion-ease),
    box-shadow var(--tbp-motion-base) ease;
}

.theme-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.theme-card__title {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  text-transform: none;
  color: #222;
}

.theme-card__image {
  width: 100%;
  aspect-ratio: 1.65 / 1;
  object-fit: cover;
  object-position: top center;
  border-radius: 0.2rem;
  box-shadow: var(--tbp-shadow);
  transition: transform var(--tbp-motion-slow) var(--tbp-motion-ease), box-shadow var(--tbp-motion-base) ease;
}

.theme-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 1.05rem 0 1rem;
}

.theme-card__actions .btn {
  min-width: 6.5rem;
  font-size: 0.74rem;
  font-weight: 700;
  border-radius: 0;
  text-transform: capitalize;
  transition:
    transform var(--tbp-motion-fast) ease,
    box-shadow var(--tbp-motion-fast) ease,
    filter var(--tbp-motion-fast) ease;
}

.theme-card__actions .btn-outline-primary,
.theme-card__actions .btn-outline-primary:hover,
.theme-card__actions .btn-outline-primary:focus {
  border-color: #22488f;
  background: #22488f;
  color: #fff;
}

.theme-card__actions .btn-danger,
.theme-card__actions .btn-danger:hover,
.theme-card__actions .btn-danger:focus {
  border-color: #ff2e6f;
  background: #ff2e6f;
  color: #fff;
}

.theme-card__actions .btn-light,
.theme-card__actions .btn-light:hover,
.theme-card__actions .btn-light:focus {
  border-color: #9fd9ef;
  background: #9fd9ef;
  color: #22488f;
}

.theme-card__summary,
.theme-card__features {
  color: var(--tbp-muted);
  font-size: 0.66rem;
  line-height: 1.7;
}

.theme-card__meta-title {
  margin-top: 1.1rem;
  margin-bottom: 0.65rem;
  color: #222;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
}

.theme-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--tbp-border);
}

.theme-card__chips span {
  color: var(--tbp-blue);
  font-size: 0.62rem;
  font-weight: 500;
}

.theme-card__features {
  margin: 0.95rem 0 0;
  padding-left: 1rem;
}

.theme-card:hover,
.theme-card:focus-within {
  transform: translateY(-0.35rem);
}

.theme-card:hover .theme-card__image,
.theme-card:focus-within .theme-card__image {
  transform: scale(1.02);
  box-shadow: 0 28px 54px rgba(37, 73, 144, 0.12);
}

.theme-card__actions .btn:hover,
.theme-card__actions .btn:focus {
  transform: translateY(-0.12rem);
  box-shadow: 0 12px 24px rgba(31, 55, 103, 0.14);
  filter: brightness(0.96);
}

.profession-section {
  padding: 0.4rem 0 4.85rem;
}

.profession-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.profession-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 1rem 1.25rem;
  align-items: center;
  padding: 0.82rem 1.1rem;
  border: 1px solid var(--tbp-border);
  border-radius: 0.35rem;
  background: #fff;
  box-shadow: 0 10px 28px rgba(38, 67, 127, 0.05);
  transition:
    transform var(--tbp-motion-base) var(--tbp-motion-ease),
    box-shadow var(--tbp-motion-base) ease,
    border-color var(--tbp-motion-fast) ease;
}

.profession-svg-icon {
  --profession-icon-size: 2.85rem;
  --profession-icon-radius: 0.95rem;
  --profession-icon-glyph-size: 32px;
  position: relative;
  width: var(--profession-icon-size);
  height: var(--profession-icon-size);
  flex: 0 0 var(--profession-icon-size);
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(18, 53, 111, 0.12);
  border-radius: var(--profession-icon-radius);
  background:
    radial-gradient(circle at 76% 24%, rgba(126, 216, 239, 0.34) 0, rgba(126, 216, 239, 0.08) 24%, transparent 25%),
    radial-gradient(circle at 24% 78%, rgba(248, 123, 176, 0.24) 0, rgba(248, 123, 176, 0.08) 28%, transparent 29%),
    linear-gradient(180deg, #fff8df 0%, #ffffff 100%);
  box-shadow: 0 14px 30px rgba(29, 66, 140, 0.12);
  isolation: isolate;
}

.profession-svg-icon::before {
  content: "";
  position: absolute;
  inset: 0.28rem;
  border: 1px solid rgba(18, 53, 111, 0.08);
  border-radius: calc(var(--profession-icon-radius) - 0.22rem);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.56));
  z-index: 0;
}

.profession-svg-icon__svg {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: var(--profession-icon-glyph-size);
  height: var(--profession-icon-glyph-size);
  color: #173a73;
  transform: translate(-50%, -50%);
  transform-origin: center;
  pointer-events: none;
}

.profession-row__icon {
  --profession-icon-size: 2.95rem;
  --profession-icon-radius: 0.92rem;
  transition: transform var(--tbp-motion-base) var(--tbp-motion-ease), box-shadow var(--tbp-motion-base) ease;
}

.profession-row__icon-image {
  width: 2.45rem;
  height: 2.45rem;
  display: block;
  flex: 0 0 2.45rem;
  border-radius: 0.7rem;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 12px 24px rgba(29, 66, 140, 0.12);
  transition: transform var(--tbp-motion-base) var(--tbp-motion-ease), box-shadow var(--tbp-motion-base) ease;
}

.profession-row__icon--orange { background: linear-gradient(135deg, #ffa04d, #ff5489); }
.profession-row__icon--amber { background: linear-gradient(135deg, #ffd15e, #ff8b5c); }
.profession-row__icon--teal { background: linear-gradient(135deg, #34d3b1, #6ab3ff); }

.profession-row h3 {
  margin: 0 0 0.15rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: #f05586;
}

.profession-row p {
  margin: 0;
  font-size: 0.72rem;
  color: var(--tbp-muted);
}

.profession-row__tag {
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  background: #ded5ff;
  color: #6143bf;
  font-size: 0.66rem;
  font-weight: 600;
}

.profession-row__tag--red { background: #ffd7df; color: #e84f7f; }
.profession-row__tag--green { background: #cdf5ce; color: #2c9a4f; }
.profession-row__tag--gold { background: #ffe9a9; color: #b9841d; }
.profession-row__tag--lime { background: #dbf6a2; color: #689906; }

.profession-row__action {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 0.35rem;
  background: var(--tbp-pink);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    transform var(--tbp-motion-fast) ease,
    background-color var(--tbp-motion-fast) ease,
    box-shadow var(--tbp-motion-fast) ease;
}

.profession-row:hover,
.profession-row:focus-within {
  border-color: rgba(34, 72, 143, 0.16);
  transform: translateY(-0.3rem);
  box-shadow: 0 20px 38px rgba(38, 67, 127, 0.09);
}

.profession-row:hover .profession-row__icon,
.profession-row:hover .profession-row__icon-image,
.profession-row:focus-within .profession-row__icon,
.profession-row:focus-within .profession-row__icon-image {
  transform: scale(1.06);
  box-shadow: 0 14px 28px rgba(34, 72, 143, 0.16);
}

.profession-row__action:hover,
.profession-row__action:focus {
  transform: translateX(0.15rem);
  background: #f61963;
  box-shadow: 0 12px 24px rgba(255, 46, 111, 0.22);
}

.support-section {
  padding: 1.1rem 0 4.85rem;
}

.support-heading {
  margin-bottom: 2.4rem;
}

.support-heading h2 {
  margin: 0;
  color: var(--tbp-blue);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300;
  letter-spacing: -0.05em;
}

.support-heading h2 span {
  font-weight: 600;
}

.support-copy p {
  margin: 0;
  max-width: 17rem;
  font-size: 1.75rem;
  line-height: 1.1;
  color: #ff5a89;
  font-weight: 400;
}

.support-copy h3 {
  margin-top: 1rem;
  color: #212121;
  font-size: 2.25rem;
  font-weight: 700;
  text-transform: uppercase;
}

.support-visual {
  position: relative;
}

.support-visual--screen img {
  max-width: 23rem;
  margin: 0 auto;
  box-shadow: var(--tbp-shadow);
}

.support-visual--screen {
  transform: translateY(2.2rem);
}

.support-visual--person {
  display: flex;
  justify-content: flex-end;
  transform: translate(1.2rem, 2.6rem);
}

.support-visual--person img {
  max-width: 22rem;
}

.packages-section {
  padding: 0 0 4.8rem;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  min-height: 30rem;
  padding: 1.95rem 1.45rem 1.35rem;
  background: linear-gradient(180deg, #fbfcfe, #f2f6fb);
  border: 1px solid var(--tbp-border);
  border-radius: 0;
  transition:
    transform var(--tbp-motion-base) var(--tbp-motion-ease),
    box-shadow var(--tbp-motion-base) ease;
}

.package-card--featured {
  background: linear-gradient(180deg, #dcf7ff, #f1fbff);
}

.package-card--pro {
  background: linear-gradient(180deg, #ffeaf0, #fff4f7);
}

.package-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: #0f8cb8;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-card__logo {
  margin-bottom: 0.75rem;
  color: #ff6d9a;
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.package-card__logo span {
  color: var(--tbp-blue);
  font-weight: 700;
}

.package-card__summary {
  margin-bottom: 0;
  color: var(--tbp-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.package-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-card__list li {
  position: relative;
  padding-left: 1.35rem;
  color: #4a4a4a;
  font-size: 0.76rem;
}

.package-card__list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff7ca3;
  font-weight: 700;
}

.package-card__footer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  margin-bottom: 0.2rem;
}

.package-card__price {
  color: var(--tbp-blue);
  font-size: 2rem;
  font-weight: 700;
}

.package-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
}

.package-card__compare-price {
  color: #8f97a3;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: line-through;
}

.package-card__button {
  display: block;
  width: 100%;
  font-weight: 500;
}

.package-card:hover,
.package-card:focus-within {
  transform: translateY(-0.4rem);
  box-shadow: 0 26px 48px rgba(37, 73, 144, 0.13);
}

.site-footer {
  position: relative;
  padding: 4.8rem 0 2.8rem;
  background:
    radial-gradient(circle at 91% 73%, rgba(117, 213, 239, 0.65) 0 36px, transparent 37px),
    radial-gradient(circle at 83% 82%, rgba(255, 173, 201, 0.8) 0 55px, transparent 56px),
    linear-gradient(180deg, #f8fcff 0%, #f8fcff 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 32px;
  background:
    radial-gradient(circle at 2% 105%, var(--tbp-sky) 0 28px, transparent 29px),
    radial-gradient(circle at 11% 85%, var(--tbp-sky) 0 22px, transparent 23px),
    radial-gradient(circle at 20% 100%, var(--tbp-sky) 0 30px, transparent 31px),
    radial-gradient(circle at 31% 88%, var(--tbp-sky) 0 24px, transparent 25px);
}

.site-footer__about,
.site-footer__copyright {
  color: var(--tbp-muted);
  font-size: 0.78rem;
  line-height: 1.8;
}

.site-footer__title {
  margin: 0 0 1rem;
  color: #5b6e9f;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__links li + li {
  margin-top: 0.35rem;
}

.site-footer__links a {
  color: var(--tbp-muted);
  font-size: 0.78rem;
}

.site-footer__professions-section {
  margin-bottom: 2.35rem;
}

.site-footer__profession-grid {
  column-count: 5;
  column-gap: 1.5rem;
}

.site-footer__profession-grid li {
  break-inside: avoid;
  margin: 0 0 0.2rem;
}

.site-footer__profession-grid li + li {
  margin-top: 0;
}

.site-footer__profession-grid a {
  display: inline-block;
  font-size: 11px;
  line-height: 1.2;
}

.site-footer__social {
  display: flex;
  gap: 0.6rem;
  margin: 1.1rem 0;
}

.site-footer__social a {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--tbp-blue);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  transition:
    transform var(--tbp-motion-fast) ease,
    background-color var(--tbp-motion-fast) ease,
    box-shadow var(--tbp-motion-fast) ease;
}

.site-footer__social a i {
  font-size: 0.95rem;
}

.site-footer__social a:hover,
.site-footer__social a:focus {
  transform: translateY(-0.14rem);
  background: #173972;
  box-shadow: 0 12px 22px rgba(34, 72, 143, 0.18);
}

.mobile-bottom-nav {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
  z-index: 1100;
  display: none;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.45rem;
  padding: 0.55rem;
  border: 1px solid rgba(34, 72, 143, 0.08);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 44px rgba(24, 48, 96, 0.14);
  backdrop-filter: blur(18px);
}

.mobile-bottom-nav__item {
  display: grid;
  justify-items: center;
  gap: 0.24rem;
  padding: 0.55rem 0.25rem 0.45rem;
  border-radius: 1rem;
  color: #6b7b9c;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.mobile-bottom-nav__item i {
  font-size: 1rem;
  line-height: 1;
}

.mobile-bottom-nav__item span {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.mobile-bottom-nav__item.is-active {
  background: linear-gradient(180deg, rgba(34, 72, 143, 0.1), rgba(255, 46, 111, 0.12));
  color: var(--tbp-blue);
}

.mobile-home-hub {
  display: none;
}

.mobile-home-hub__panel {
  border-radius: 1.6rem;
  padding: 1.15rem 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 255, 0.98));
  box-shadow: 0 18px 36px rgba(29, 53, 102, 0.08);
  transition: transform var(--tbp-motion-base) var(--tbp-motion-ease), box-shadow var(--tbp-motion-base) ease;
}

.mobile-home-hub__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.95rem;
}

.mobile-home-hub__eyebrow {
  margin: 0 0 0.28rem;
  color: var(--tbp-pink);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-home-hub__title {
  margin: 0;
  color: var(--tbp-blue);
  font-size: 1.35rem;
  font-weight: 800;
}

.mobile-home-hub__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.mobile-home-hub__action {
  display: grid;
  justify-items: start;
  gap: 0.55rem;
  min-height: 6rem;
  padding: 0.95rem;
  border-radius: 1.15rem;
  background: linear-gradient(180deg, #ffffff, #edf5ff);
  color: var(--tbp-blue);
  box-shadow: inset 0 0 0 1px rgba(34, 72, 143, 0.06);
  transition:
    transform var(--tbp-motion-fast) ease,
    box-shadow var(--tbp-motion-fast) ease,
    background var(--tbp-motion-fast) ease;
}

.mobile-home-hub__action i {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.9rem;
  background: rgba(255, 46, 111, 0.1);
  color: var(--tbp-pink);
  font-size: 1rem;
  transition: transform var(--tbp-motion-fast) ease, background-color var(--tbp-motion-fast) ease;
}

.mobile-home-hub__action span {
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.2;
}

.mobile-home-hub__panel:hover,
.mobile-home-hub__panel:focus-within {
  transform: translateY(-0.2rem);
  box-shadow: 0 22px 40px rgba(29, 53, 102, 0.11);
}

.mobile-home-hub__action:hover,
.mobile-home-hub__action:focus {
  transform: translateY(-0.18rem);
  box-shadow: 0 14px 28px rgba(34, 72, 143, 0.12);
}

.mobile-home-hub__action:hover i,
.mobile-home-hub__action:focus i {
  transform: scale(1.06);
}

.mobile-category-deck {
  display: none;
}

.mobile-category-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: space-between;
  min-height: 9.25rem;
  padding: 1rem;
  border-radius: 1.35rem;
  background: var(--mobile-category-bg);
  color: var(--mobile-category-text);
  box-shadow: 0 18px 36px rgba(36, 65, 126, 0.08);
}

.mobile-category-card__ghost {
  font-size: 2.7rem;
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: -0.08em;
  opacity: 0.28;
  white-space: nowrap;
}

.mobile-category-card__title {
  max-width: 10rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.05;
}

.mobile-category-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mobile-stats-stack {
  display: none;
}

.mobile-stat-card {
  border-radius: 1.25rem;
  padding: 0.95rem 1rem;
  background: linear-gradient(180deg, #ffffff, #f4f8ff);
  box-shadow: inset 0 0 0 1px rgba(34, 72, 143, 0.06);
}

.mobile-stat-card__value {
  color: var(--tbp-blue);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 0.95;
}

.mobile-stat-card__label {
  margin-top: 0.3rem;
  color: #6f7f98;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.support-notification-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: start center;
  padding: 5.5rem 1rem 1rem;
  background: rgba(20, 37, 72, 0.16);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.support-notification-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.support-notification {
  position: relative;
  width: min(32rem, 100%);
  border-radius: 1.35rem;
  padding: 1.35rem 3.2rem 1.25rem 1.35rem;
  background: linear-gradient(180deg, #f2fff8 0%, #dcf8e9 100%);
  box-shadow: 0 22px 44px rgba(38, 67, 127, 0.16);
  transform: translateY(-10px) scale(0.98);
  transition: transform 0.22s ease;
}

.support-notification-overlay.is-visible .support-notification {
  transform: translateY(0) scale(1);
}

.support-notification__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #426b56;
}

.support-notification__eyebrow {
  margin: 0 0 0.35rem;
  color: #2d8a56;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-notification__message {
  color: #1b3324;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}

.support-modal {
  border: 0;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(37, 73, 144, 0.2);
}

.support-modal__header {
  align-items: flex-start;
  padding: 1.35rem 1.35rem 0.9rem;
  background: linear-gradient(180deg, #f3fbff 0%, #ffffff 100%);
}

.support-modal__eyebrow {
  margin: 0 0 0.35rem;
  color: var(--tbp-pink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-modal__title {
  margin: 0;
  color: var(--tbp-blue);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.15;
}

.support-modal__title--package {
  color: #ff6d9a;
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.support-modal__title-prefix {
  color: var(--tbp-blue);
  font-weight: 700;
}

.support-modal__form .form-label {
  color: #4b618d;
  font-size: 0.8rem;
  font-weight: 700;
}

.support-modal__form .form-control {
  min-height: 3rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(34, 72, 143, 0.16);
  padding: 0.75rem 0.9rem;
  color: var(--tbp-ink);
  box-shadow: none;
}

.support-modal__form .form-control:focus {
  border-color: rgba(255, 46, 111, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(255, 46, 111, 0.1);
}

.support-modal__submit {
  min-width: 8rem;
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  body.animations-ready [data-animate],
  body.animations-ready [data-animate="left"],
  body.animations-ready [data-animate="right"] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 991.98px) {
  .site-header .container {
    grid-template-columns: minmax(0, 1fr) auto;
    row-gap: 0.35rem;
    padding-left: 32px;
    padding-right: 32px;
  }

  .site-header__search {
    grid-column: 1 / -1;
    order: 3;
  }

  .navbar-collapse {
    display: block;
    grid-column: 1 / -1;
    order: 4;
    margin-top: 0.25rem;
    padding: 0.55rem 0.95rem 0.5rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(34, 72, 143, 0.08);
    border-radius: 0.85rem;
    box-shadow: 0 18px 36px rgba(32, 63, 126, 0.08);
  }

  .site-header__search {
    width: 100%;
    max-width: none;
    margin: 0 0 0.55rem;
  }

  .site-header__search-submit {
    right: 0.35rem;
  }

  .site-nav {
    flex-direction: column;
    align-items: stretch !important;
    gap: 0;
    width: 100%;
    padding: 0.35rem 0 0;
  }

  .site-nav .nav-item {
    width: 100%;
  }

  .site-nav .nav-item + .nav-item {
    margin-left: 0;
  }

  .site-nav .nav-item--divider::after {
    display: none;
  }

  .site-nav .nav-link {
    justify-content: space-between;
    width: 100%;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(34, 72, 143, 0.1);
    font-size: 0.82rem;
  }

  .mega-menu {
    position: static;
    display: none;
    width: 100%;
    max-height: 50vh;
    overflow-y: auto;
    margin-top: 0.4rem;
    padding: 0.75rem 0 0;
    border: 0;
    border-top: 1px solid rgba(34, 72, 143, 0.08);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .mega-menu.is-open {
    display: block;
  }

  .mega-menu__grid--3,
  .mega-menu__grid--2 {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .mega-menu__links--columns {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 0.35rem;
  }

  .mega-menu__footer {
    bottom: -0.75rem;
    margin-top: 0.75rem;
    padding-top: 0.65rem;
    padding-bottom: 0.1rem;
  }

  .mega-menu__links a {
    font-size: 0.78rem;
    line-height: 1.15;
  }

  .hero-panel {
    min-height: auto;
    padding: 1.35rem 0 0;
  }

  .hero-section > .container {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    row-gap: 1.15rem;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-copy__eyebrow {
    max-width: 18rem;
    font-size: 1rem;
    line-height: 1.12;
  }

  .hero-copy__title {
    max-width: 100%;
    font-size: 2.35rem;
    line-height: 0.86;
    margin-bottom: 1.2rem;
  }

  .hero-copy__cta {
    width: 100%;
    max-width: 17rem;
    min-height: 2.9rem;
    justify-content: center;
  }

  .hero-visual {
    width: 100%;
  }

  .hero-people-strip {
    height: 23rem;
  }

  .category-mosaic {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    height: auto;
    padding-top: 1.9rem;
  }

  .category-mosaic::before {
    height: 2rem;
  }

  .category-deco {
    display: none;
  }

  .category-tile {
    position: relative;
    left: auto !important;
    top: auto !important;
    width: auto;
    min-height: 0;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .category-tile__ghost {
    top: 0.25rem !important;
    left: -0.2rem !important;
    font-size: 3.15rem;
  }

  .category-tile__name {
    left: 0.75rem;
    bottom: 0.7rem;
    font-size: 0.78rem;
  }

  .stats-strip {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    height: auto;
    gap: 0.9rem;
    margin: 1.45rem 0 0;
  }

  .stat-card {
    position: relative;
    left: auto !important;
    width: 100% !important;
    min-width: 0;
  }

  .stat-card__value {
    font-size: 2.9rem;
  }

  .section-intro {
    padding: 1.35rem 0 1.35rem;
  }

  .section-intro__text {
    max-width: none;
    padding: 0 0.35rem;
    font-size: 0.8rem;
    line-height: 1.75;
  }

  .theme-card__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.55rem;
  }

  .theme-card__actions {
    gap: 0.5rem;
    justify-content: flex-start;
  }

  .theme-card__actions .btn {
    flex: 1 1 calc(33.333% - 0.35rem);
    min-width: 0;
  }

  .theme-card__summary,
  .theme-card__features {
    font-size: 0.78rem;
    line-height: 1.7;
  }

  .support-visual--screen,
  .support-visual--person {
    transform: none;
  }

  .profession-row {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding: 1rem;
  }

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

  .profession-row__tag,
  .profession-row__action {
    justify-self: start;
  }

  .support-section {
    padding: 1.5rem 0 4rem;
  }

  .support-copy {
    text-align: center;
  }

  .support-copy p {
    max-width: none;
    margin: 0 auto;
  }

  .support-copy h3 {
    text-align: center;
  }

  .support-visual--screen img,
  .support-visual--person img {
    max-width: 100%;
  }

  .packages-section {
    padding-bottom: 4rem;
  }

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

  .site-footer {
    padding: 4rem 0 2.4rem;
  }

  .support-modal__title {
    font-size: 1.15rem;
  }
}

@media (max-width: 767.98px) {
  body {
    background: linear-gradient(180deg, #edf3ff 0%, #ffffff 24rem);
    padding-bottom: 6.3rem;
  }

  .mobile-only {
    display: block !important;
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-bottom-nav.mobile-only {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    left: 0.6rem;
    right: 0.6rem;
    bottom: calc(0.6rem + env(safe-area-inset-bottom, 0px));
    gap: 0.35rem;
    padding: 0.45rem;
    border-radius: 1.1rem;
  }

  .site-header .container {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    margin-top: 0.5rem;
    padding: 0.55rem 0.75rem;
    border-radius: 1.15rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 32px rgba(25, 48, 93, 0.08);
  }

  .site-header__search {
    flex-direction: row;
    gap: 0.45rem;
  }

  .site-header__search-input {
    height: 2.4rem;
  }

  .site-header__search-submit {
    width: 1.9rem;
    height: 1.9rem;
  }

  .mobile-bottom-nav__item {
    padding: 0.45rem 0.15rem 0.4rem;
    border-radius: 0.85rem;
  }

  .mobile-bottom-nav__item i {
    font-size: 0.95rem;
  }

  .mobile-bottom-nav__item span {
    font-size: 0.6rem;
  }

  .brand-mark__themes {
    font-size: 0.82rem;
  }

  .brand-mark__profession {
    font-size: 1.42rem;
  }

  .brand-mark__by {
    font-size: 0.82rem;
  }

  .hero-section {
    padding: 1.15rem 0 1.5rem;
  }

  .hero-panel {
    padding: 1.15rem 0 0.15rem;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero-copy__title {
    font-size: 2rem;
    line-height: 0.88;
  }

  .hero-copy__eyebrow {
    font-size: 0.92rem;
  }

  .hero-copy__cta {
    max-width: none;
    min-height: 2.75rem;
  }

  .hero-people-strip {
    height: 17rem;
  }

  .hero-people-strip__label {
    right: 0.5rem;
  }

  .hero-people-strip__label-main {
    font-size: 1rem;
  }

  .mobile-home-hub {
    display: block;
    margin-top: -0.2rem;
    padding: 0 0 1rem;
  }

  .categories-section {
    margin-top: 0;
    height: auto;
    padding-bottom: 2rem;
  }

  .categories-section > .container {
    height: auto;
    padding-right: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
    padding-left: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
  }

  .category-mosaic--desktop,
  .stats-strip {
    display: none !important;
  }

  .mobile-category-deck {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .mobile-stats-stack {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 0.9rem;
  }

  .theme-card__title {
    font-size: 1.6rem;
  }

  .theme-card,
  .profession-row,
  .package-card,
  .blog-preview-card {
    border-radius: 1.35rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 36px rgba(25, 48, 93, 0.08);
  }

  .theme-card,
  .profession-row,
  .package-card {
    padding: 1rem;
  }

  .support-copy p {
    font-size: 1.1rem;
  }

  .support-copy h3 {
    font-size: 1.6rem;
  }

  .package-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__about,
  .site-footer__copyright,
  .site-footer__links a {
    font-size: 0.72rem;
  }

  .site-footer__profession-grid {
    column-count: 3;
  }

  .site-footer__profession-grid a {
    font-size: 11px;
  }

  .site-footer .col-6 {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .site-header .navbar {
    min-height: auto;
    padding: 0.45rem 0 0.25rem;
  }

  .site-header .container {
    column-gap: 0.5rem;
    padding-left: 20px;
    padding-right: 20px;
  }

  .navbar-toggler {
    padding: 0.1rem;
  }

  .navbar-toggler i {
    font-size: 1.45rem;
  }

  .brand-mark__themes {
    font-size: 0.74rem;
  }

  .brand-mark__by {
    font-size: 0.72rem;
  }

  .brand-mark__profession {
    font-size: 1.24rem;
  }

  .hero-panel {
    padding: 0.95rem 0 0;
  }

  .hero-copy__eyebrow {
    max-width: 13.5rem;
    font-size: 0.8rem;
  }

  .hero-copy__title {
    max-width: 10.8rem;
    font-size: 1.55rem;
    line-height: 0.92;
  }

  .hero-people-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    height: auto;
    gap: 0.16rem;
  }

  .hero-people-strip__item {
    min-height: 7.4rem;
  }

  .hero-people-strip__item.is-collage-slice {
    background-size: 400% 100%;
  }

  .hero-people-strip__label {
    right: 0.26rem;
    gap: 0.12rem;
  }

  .hero-people-strip__label-main {
    font-size: 0.86rem;
  }

  .hero-people-strip__label-sub {
    font-size: 0.72rem;
  }

  .hero-visual img {
    min-height: 9.5rem;
    object-fit: cover;
  }

  .mobile-home-hub__actions,
  .mobile-category-deck,
  .mobile-stats-stack {
    grid-template-columns: 1fr;
  }

  .theme-card__actions .btn {
    flex: 1 1 100%;
  }

  .profession-row__icon,
  .profession-row__icon-image {
    display: none;
  }

  .package-card__price {
    font-size: 1.8rem;
  }
}
