@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", "DM Sans", system-ui, sans-serif;
  color: #010F3C;
  background: #ffffff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button {
  cursor: pointer;
  background: none;
  border: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.2;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 800;
  border-radius: 9999px;
  font-size: 0.8125rem;
  padding: 0.75rem 1.75rem;
  transition: all 0.2s ease;
  white-space: nowrap;
  border: none;
}
.btn:active {
  transform: scale(0.97);
}

.btn--sm {
  padding: 0.625rem 1.5rem;
}

.btn--lg {
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
}

.btn--block {
  display: flex;
  width: 100%;
}

.btn--gold {
  background: #F2BA07;
  color: #010F3C;
}
.btn--gold:hover {
  background: #D9A500;
  box-shadow: 0 4px 14px rgba(242, 186, 7, 0.25);
}

.btn--navy {
  background: #010F3C;
  color: #ffffff;
}
.btn--navy:hover {
  background: #021660;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn--ghost {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline {
  background: transparent;
  color: #010F3C;
  border: 2px solid #010F3C;
}
.btn--outline:hover {
  background: #010F3C;
  color: #ffffff;
}

.btn--outline-light {
  background: transparent;
  color: #010F3C;
  border: 1px solid #e5e7eb;
}
.btn--outline-light:hover {
  background: #010F3C;
  color: #ffffff;
  border-color: #010F3C;
}

.btn--danger-soft {
  background: #fee2e2;
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.15);
}
.btn--danger-soft:hover {
  background: rgb(99.3411764706%, 80.8941176471%, 80.8941176471%);
}

.btn--glow {
  animation: glowPulse 2.6s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 8px 2px rgba(242, 186, 7, 0.4), 0 0 20px 6px rgba(242, 186, 7, 0.14);
  }
  50% {
    box-shadow: 0 0 18px 5px rgba(242, 186, 7, 0.65), 0 0 36px 12px rgba(242, 186, 7, 0.25);
  }
}
.badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
}

.badge--gold {
  color: #F2BA07;
  background: #fffbeb;
}

.badge--gold-lg {
  font-size: 0.6875rem;
  padding: 0.375rem 0.75rem;
  color: #F2BA07;
  background: #fffbeb;
}

.eyebrow {
  color: #F2BA07;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}

.card {
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.card--padded {
  padding: 1.5rem;
}

.product-card {
  display: block;
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.product-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.product-card__image-wrap {
  height: 12rem;
  background: #f3f4f6;
  overflow: hidden;
}

.product-card--sm .product-card__image-wrap {
  height: 11rem;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__image {
  transform: scale(1.05);
}

.product-card__body {
  padding: 1.25rem;
}

.product-card__title {
  font-weight: 800;
  color: #010F3C;
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

.product-card__desc {
  color: #6b7280;
  font-size: 0.75rem;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card__meta {
  font-size: 0.75rem;
  color: #9ca3af;
}

.product-card__cta {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 800;
  color: #F2BA07;
  transition: gap 0.2s ease;
}

.product-card:hover .product-card__cta {
  gap: 0.5rem;
}

.product-card--rich {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.product-card--rich:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-6px);
}

.product-card--rich .product-card__image-wrap {
  position: relative;
  height: 13rem;
}

.product-card--rich .product-card__image {
  transition: transform 0.7s ease;
}

.product-card--rich:hover .product-card__image {
  transform: scale(1.1);
}

.product-card__scrim {
  position: absolute;
  inset: 0;
  background: rgba(1, 15, 60, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card--rich:hover .product-card__scrim {
  opacity: 1;
}

.product-card__tag-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.5625rem;
  font-weight: 800;
  color: #010F3C;
  background: #F2BA07;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-card__quick-actions {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1rem;
  display: flex;
  gap: 0.5rem;
  transform: translateY(0.5rem);
  opacity: 0;
  transition: all 0.3s ease;
}

.product-card--rich:hover .product-card__quick-actions {
  transform: translateY(0);
  opacity: 1;
}

.product-card__quick-action {
  flex: 1;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 800;
  border-radius: 9999px;
}

.product-card__quick-action--primary {
  background: #F2BA07;
  color: #010F3C;
}

.product-card__quick-action--secondary {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  backdrop-filter: blur(4px);
}

.product-card--rich .product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card--rich .product-card__title {
  font-size: 0.9375rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.product-card--rich .product-card__desc {
  margin-bottom: 1rem;
  flex: 1;
}

.product-card__rating {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 1rem;
}

.product-card__rating-stars {
  display: flex;
  gap: 0.125rem;
  color: #F2BA07;
}

.product-card__rating-value {
  font-size: 0.6875rem;
  color: #9ca3af;
}

.product-card__info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid #f3f4f6;
}

.product-card__info-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.6875rem;
  color: #9ca3af;
}

.product-card__info-meta strong {
  color: #010F3C;
  font-weight: 800;
}

.product-card__info-divider {
  width: 1px;
  height: 0.75rem;
  background: #e5e7eb;
}

.product-card__arrow-btn {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: #fffbeb;
  border: 1px solid rgba(242, 186, 7, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F2BA07;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.product-card--rich:hover .product-card__arrow-btn {
  background: #F2BA07;
  border-color: #F2BA07;
  color: #010F3C;
}

.field {
  margin-bottom: 1rem;
}

.field__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #374151;
  margin-bottom: 0.5rem;
}

.field__required {
  color: #f87171;
}

.field__hint {
  font-weight: 400;
  color: #9ca3af;
}

.input, .select, .textarea {
  width: 100%;
  padding: 0.625rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  font-size: 0.8125rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.input::placeholder, .select::placeholder, .textarea::placeholder {
  color: #d1d5db;
}
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: #F2BA07;
  box-shadow: 0 0 0 3px rgba(242, 186, 7, 0.25);
}

.select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.25rem;
}

.textarea {
  resize: none;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-row input[type=checkbox] {
  margin-top: 0.125rem;
  accent-color: #F2BA07;
}

.checkbox-row__label {
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.5;
}

.pill-group {
  display: flex;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.pill-group__option {
  flex: 1;
  text-align: center;
  padding: 0.625rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #6b7280;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.pill-group__option:hover {
  background: #f9fafb;
}

.pill-group__option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pill-group__option:has(input:checked) {
  background: #F2BA07;
  color: #010F3C;
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.chip {
  padding: 0.375rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 800;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  color: #4b5563;
  cursor: pointer;
  transition: all 0.2s ease;
}
.chip:hover {
  border-color: rgba(242, 186, 7, 0.5);
  color: #F2BA07;
}

.chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.chip:has(input:checked) {
  background: #F2BA07;
  color: #010F3C;
  border-color: #F2BA07;
}

.file-drop {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 2px dashed #e5e7eb;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.file-drop:hover {
  border-color: rgba(242, 186, 7, 0.4);
  background: rgba(255, 251, 235, 0.5);
}

.file-drop__icon {
  color: #9ca3af;
  flex-shrink: 0;
}

.file-drop__text {
  font-size: 0.8125rem;
  color: #9ca3af;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-drop input[type=file] {
  display: none;
}

.field-row {
  display: flex;
  gap: 0.75rem;
}

.field-row .field {
  flex: 1;
  min-width: 80px;
}

.field-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .field-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.breadcrumb {
  background: #f9fafb;
  border-bottom: 1px solid #f3f4f6;
  padding: 0.75rem 1.5rem;
}

.breadcrumb__list {
  max-width: 1280px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #6b7280;
}

.breadcrumb__list a:hover {
  color: #010F3C;
}

.breadcrumb__current {
  color: #010F3C;
  font-weight: 700;
}

.breadcrumb__sep {
  color: #d1d5db;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #9ca3af;
  margin-bottom: 2rem;
}
.back-link:hover {
  color: #010F3C;
}

.section {
  padding-block: 4rem;
}

.section--hero-dark {
  background: #010F3C;
  color: #ffffff;
  padding: 4rem 1.5rem;
  text-align: center;
}

.section--hero-dark--left {
  text-align: left;
}

.section--cream {
  background: #fdf8f0;
  border-top: 1px solid rgba(242, 186, 7, 0.15);
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
}
@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-subtitle {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9375rem;
  max-width: 32rem;
  margin-inline: auto;
}

.container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 1024px) {
  .container {
    padding-inline: 2rem;
  }
}

.container--narrow {
  max-width: 768px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background: #f3f4f6;
  color: #4b5563;
  transition: background 0.2s ease;
}
.icon-btn:hover {
  background: #e5e7eb;
}

.icon-btn--dark {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
.icon-btn--dark:hover {
  background: rgba(255, 255, 255, 0.2);
}

.icon-btn--mobile-only {
  display: flex;
}
@media (min-width: 1024px) {
  .icon-btn--mobile-only {
    display: none;
  }
}

.search-box {
  display: none;
  align-items: center;
  gap: 0.625rem;
  border-radius: 9999px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  padding: 0.625rem 1rem;
  cursor: text;
  transition: all 0.2s ease;
  color: #9ca3af;
}
.search-box:focus-within {
  border-color: #F2BA07;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(242, 186, 7, 0.15);
}

.search-box--desktop {
  width: 100%;
  max-width: 28rem;
}
@media (min-width: 1024px) {
  .search-box--desktop {
    display: flex;
  }
}

.search-box--overlay {
  flex: 1;
  display: flex;
  background: #f9fafb;
}

.search-box--panel {
  display: flex;
  flex: 1;
  min-width: 220px;
}

.search-box__input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  font-size: 0.8125rem;
  color: #374151;
}
.search-box__input::placeholder {
  color: #9ca3af;
}

.topbar {
  display: none;
  background: #010F3C;
}
@media (min-width: 1024px) {
  .topbar {
    display: block;
  }
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.375rem;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.5);
}

.topbar__contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.topbar__link {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  transition: color 0.2s ease;
}
.topbar__link:hover {
  color: #F2BA07;
}

.topbar__social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.topbar__follow {
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.25);
  margin-right: 0.25rem;
}

.topbar__social-link {
  transition: color 0.2s ease;
}
.topbar__social-link:hover {
  color: #F2BA07;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.site-header__top {
  border-bottom: 1px solid #f3f4f6;
  padding-block: 0.75rem;
}

.site-header__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 1rem;
}

.site-header__logo-col {
  display: flex;
  justify-content: flex-start;
}

.site-header__search-col {
  display: flex;
  justify-content: center;
}

.site-header__actions-col {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
}

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

.site-header__cta {
  display: none;
}
@media (min-width: 1024px) {
  .site-header__cta {
    display: inline-flex;
  }
}

.main-nav {
  display: none;
}
@media (min-width: 1024px) {
  .main-nav {
    display: block;
  }
}

.main-nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-nav__item {
  position: relative;
}

.main-nav__trigger {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.875rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
  color: #4b5563;
  transition: color 0.2s ease;
}
.main-nav__trigger svg {
  transition: transform 0.2s ease;
  color: #9ca3af;
}

.main-nav__item:hover .main-nav__trigger {
  color: #010F3C;
}
.main-nav__item:hover .main-nav__trigger svg {
  transform: rotate(180deg);
  color: #F2BA07;
}

.main-nav__underline {
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  border-radius: 9999px;
  background: #F2BA07;
  transform: scaleX(0);
  opacity: 0;
  transition: all 0.2s ease;
}

.main-nav__item:hover .main-nav__underline {
  transform: scaleX(1);
  opacity: 1;
}

.main-nav__divider {
  width: 1px;
  height: 1rem;
  background: #e5e7eb;
  margin-inline: 0.5rem;
  flex-shrink: 0;
}

.main-nav__link {
  padding: 0.875rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #4b5563;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.main-nav__link:hover {
  color: #010F3C;
}

.mega-menu {
  position: absolute;
  top: 100%;
  padding-top: 0.5rem;
  z-index: 200;
  display: none;
  min-width: 20rem;
  max-width: calc(100vw - 40px);
}

.main-nav__item:hover .mega-menu {
  display: block;
}

.mega-menu--left {
  left: 0;
}

.mega-menu--right {
  right: 0;
}

.mega-menu--center {
  left: 50%;
  transform: translateX(-50%);
}

.mega-menu__panel {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid #f3f4f6;
  overflow: hidden;
}

.mega-menu__grid {
  max-height: 420px;
  overflow-y: auto;
  padding: 1.25rem;
  display: grid;
  gap: 1.25rem 1.5rem;
  grid-template-columns: repeat(4, 160px);
}

.mega-menu--cols-1 .mega-menu__grid, .mega-menu--cols-2 .mega-menu__grid {
  grid-template-columns: repeat(2, 160px);
}

.mega-menu__col-title {
  font-size: 0.625rem;
  font-weight: 800;
  color: #010F3C;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.625rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #f3f4f6;
  white-space: nowrap;
}

.mega-menu__links {
  display: flex;
  flex-direction: column;
}

.mega-menu__link {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.78rem;
  color: #6b7280;
  transition: all 0.15s ease;
}
.mega-menu__link:hover {
  color: #010F3C;
  background: #fffbeb;
}

.mega-menu__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #F2BA07;
  opacity: 0;
  transition: opacity 0.15s ease;
  flex-shrink: 0;
}

.mega-menu__link:hover .mega-menu__dot {
  opacity: 1;
}

.mega-menu__footer {
  padding: 0.625rem 1.25rem;
  background: #f9fafb;
  border-top: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mega-menu__footer-text {
  font-size: 0.6875rem;
  color: #9ca3af;
}

.mega-menu__footer-link {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  font-size: 0.6875rem;
  font-weight: 800;
  color: #F2BA07;
}
.mega-menu__footer-link:hover {
  color: #010F3C;
}

.mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
@media (min-width: 1024px) {
  .mobile-backdrop {
    display: none;
  }
}
.mobile-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  width: 88vw;
  max-width: 380px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}
@media (min-width: 1024px) {
  .mobile-drawer {
    display: none;
  }
}
.mobile-drawer.is-open {
  transform: translateX(0);
}

.mobile-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: #010F3C;
  flex-shrink: 0;
}

.mobile-drawer__brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.mobile-drawer__logo-mark {
  width: 2rem;
  height: 2rem;
  background: #F2BA07;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-drawer__brand-text {
  color: #ffffff;
  font-weight: 800;
  font-size: 0.8125rem;
  letter-spacing: -0.01em;
}

.mobile-drawer__brand-accent {
  color: #F2BA07;
}

.mobile-drawer__nav {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-drawer__extra-links {
  border-top: 1px solid #f3f4f6;
  margin-top: 0.25rem;
}

.mobile-drawer__extra-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
  transition: all 0.2s ease;
}
.mobile-drawer__extra-link svg {
  color: #d1d5db;
}
.mobile-drawer__extra-link:hover {
  color: #010F3C;
  background: #f9fafb;
}

.mobile-drawer__footer {
  flex-shrink: 0;
  padding: 1rem;
  border-top: 1px solid #f3f4f6;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: #ffffff;
}

.mobile-accordion {
  border-bottom: 1px solid #f3f4f6;
}

.mobile-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #010F3C;
  text-align: left;
  transition: background 0.2s ease;
}
.mobile-accordion__trigger:hover {
  background: #f9fafb;
}

.mobile-accordion__chevron {
  flex-shrink: 0;
  color: #9ca3af;
  transition: transform 0.3s ease, color 0.3s ease;
  display: flex;
}

.mobile-accordion.is-open .mobile-accordion__chevron {
  transform: rotate(180deg);
  color: #F2BA07;
}

.mobile-accordion__panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.mobile-accordion__cols {
  padding: 0 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-accordion__col-title {
  font-size: 0.625rem;
  font-weight: 800;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0 0.5rem 0.375rem;
}

.mobile-accordion__link-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.125rem;
}

.mobile-accordion__link {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem;
  border-radius: 0.75rem;
  font-size: 0.75rem;
  color: #4b5563;
  transition: all 0.15s ease;
}
.mobile-accordion__link:hover {
  color: #010F3C;
  background: #fffbeb;
}

.mobile-accordion__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #F2BA07;
  flex-shrink: 0;
}

.mobile-search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .mobile-search-overlay {
    display: none !important;
  }
}
.mobile-search-overlay.is-open {
  display: flex;
}

.mobile-search-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.mobile-search-overlay__panel {
  position: relative;
  z-index: 10;
  background: #ffffff;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.mobile-search-overlay__form {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-footer {
  background: #010F3C;
  color: #ffffff;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding-block: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
@media (min-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.site-footer__brand {
  grid-column: span 2;
}
@media (min-width: 1024px) {
  .site-footer__brand {
    grid-column: span 1;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}

.site-footer__tagline {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8125rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 285px;
}

.site-footer__heading {
  font-size: 0.625rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.site-footer__col .site-footer__heading {
  margin-bottom: 1.25rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form__input {
  flex: 1;
  min-width: 0;
  padding: 0.625rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  font-size: 0.8125rem;
  color: #ffffff;
  transition: border-color 0.2s ease;
}
.newsletter-form__input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.newsletter-form__input:focus {
  outline: none;
  border-color: rgba(242, 186, 7, 0.6);
}

.newsletter-form__submit {
  flex-shrink: 0;
  padding: 0.625rem 1rem;
  background: #F2BA07;
  color: #010F3C;
  font-size: 0.8125rem;
  font-weight: 800;
  border-radius: 9999px;
  transition: all 0.2s ease;
}
.newsletter-form__submit:hover {
  background: #D9A500;
  box-shadow: 0 4px 14px rgba(242, 186, 7, 0.25);
}
.newsletter-form__submit:active {
  transform: scale(0.97);
}

.site-footer__socials {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.site-footer__social-link {
  width: 2rem;
  height: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  transition: all 0.2s ease;
}
.site-footer__social-link:hover {
  background: rgba(242, 186, 7, 0.2);
  color: #F2BA07;
  border-color: rgba(242, 186, 7, 0.3);
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.site-footer__links a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s ease;
}
.site-footer__links a:hover {
  color: #ffffff;
}

.site-footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
}
.site-footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}
.site-footer__contact-list svg {
  color: #F2BA07;
  margin-top: 0.125rem;
  flex-shrink: 0;
}
.site-footer__contact-list span, .site-footer__contact-list a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
}
.site-footer__contact-list a:hover {
  color: #ffffff;
}

.site-footer__hours {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.site-footer__hours-title {
  font-size: 0.6875rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.375rem;
}

.site-footer__hours-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.6;
}

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding-block: 1.5rem;
}
@media (min-width: 640px) {
  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.site-footer__copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
}

.site-footer__legal-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.site-footer__legal-links a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
  transition: color 0.2s ease;
}
.site-footer__legal-links a:hover {
  color: rgba(255, 255, 255, 0.5);
}

.section-intro {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 4rem;
}

.section-heading {
  font-size: 2rem;
  font-weight: 800;
  color: #010F3C;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .section-heading {
    font-size: 3rem;
  }
}

.section--navy .section-heading, .hero__title {
  color: #ffffff;
}

.section-heading--left {
  text-align: left;
}

.section-lead {
  color: #6b7280;
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 40rem;
  margin: 1rem auto 0;
}

.section-lead--left {
  margin-inline: 0;
}

.section--offwhite {
  background: #f8f7f5;
}

.section--navy {
  background: #010F3C;
}

.hero {
  position: relative;
  height: 88vh;
  min-height: 580px;
  max-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #010F3C;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero__slide.is-active {
  opacity: 1;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(1, 15, 60, 0.92) 0%, rgba(1, 15, 60, 0.6) 50%, rgba(1, 15, 60, 0.1) 100%);
}

.hero__content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: 4rem;
}

.hero__caption {
  display: none;
  max-width: 42rem;
}
.hero__caption.is-active {
  display: block;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.hero__badge-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: #F2BA07;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.hero__title {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.04;
  margin-bottom: 1.25rem;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
}

.hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 490px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
}

.hero__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}
.hero__dot:hover {
  background: rgba(255, 255, 255, 0.55);
}
.hero__dot.is-active {
  width: 2rem;
  background: #F2BA07;
}

.trust-bar {
  border-bottom: 1px solid #f3f4f6;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 1024px) {
  .trust-bar__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid #f3f4f6;
  border-width: 0 1px 1px 0;
}
.stat-cell:nth-child(2n) {
  border-right: none;
}
@media (min-width: 1024px) {
  .stat-cell {
    border-width: 0 1px 0 0;
  }
  .stat-cell:nth-child(2n) {
    border-right: 1px solid #f3f4f6;
  }
  .stat-cell:last-child {
    border-right: none;
  }
}

.stat-cell__num {
  font-weight: 800;
  color: #010F3C;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  margin-bottom: 0.375rem;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  letter-spacing: -0.03em;
}

.stat-cell__suffix {
  color: #F2BA07;
}

.stat-cell__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.featured-categories__inner {
  text-align: center;
}

.cat-tiles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 1024px) {
  .cat-tiles {
    gap: 3.5rem;
  }
}

.cat-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  width: 6rem;
}

.cat-tile__icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: #f4f6ff;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #010F3C;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.cat-tile__icon svg {
  width: 2rem;
  height: 2rem;
}

.cat-tile:hover .cat-tile__icon {
  border-color: #F2BA07;
  background: #fffbeb;
  color: #F2BA07;
  box-shadow: 0 10px 30px rgba(242, 186, 7, 0.15);
}

.cat-tile__label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #4b5563;
  text-align: center;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.cat-tile:hover .cat-tile__label {
  color: #F2BA07;
}

.featured-products__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.featured-products__controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.carousel-arrow {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 2px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  transition: all 0.2s ease;
}
.carousel-arrow:first-of-type svg {
  transform: rotate(180deg);
}
.carousel-arrow:hover:not(:disabled) {
  border-color: #F2BA07;
  color: #F2BA07;
}
.carousel-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel-arrow--light {
  border-color: #d1d5db;
}

.featured-products__view-all {
  display: none;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #9ca3af;
  margin-left: 0.5rem;
  transition: color 0.2s ease;
}
@media (min-width: 640px) {
  .featured-products__view-all {
    display: flex;
  }
}
.featured-products__view-all:hover {
  color: #010F3C;
}

.featured-carousel__viewport {
  overflow: hidden;
}

.featured-carousel__track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.5s ease-in-out;
}

.featured-carousel__card {
  flex-shrink: 0;
  width: calc(85% - 1.25rem * 3 / 4);
}
@media (min-width: 640px) {
  .featured-carousel__card {
    width: calc(50% - 1.25rem / 2);
  }
}
@media (min-width: 1024px) {
  .featured-carousel__card {
    width: calc(25% - 1.25rem * 3 / 4);
  }
}

.featured-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.featured-carousel__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: #e5e7eb;
  transition: all 0.3s ease;
}
.featured-carousel__dot:hover {
  background: #d1d5db;
}
.featured-carousel__dot.is-active {
  width: 1.5rem;
  background: #F2BA07;
}

.product-card__image-wrap--ratio {
  height: auto;
  aspect-ratio: 4/3;
}

.product-card__title--tight {
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.4;
}

.custom-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .custom-section__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 2rem 0 2.5rem;
}

.checklist__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: #4b5563;
}

.checklist__icon {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: rgba(242, 186, 7, 0.15);
  color: #F2BA07;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.custom-section__media {
  position: relative;
}

.custom-section__image-wrap {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  aspect-ratio: 4/3;
}

.custom-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-section__badge {
  position: absolute;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.custom-section__badge--moq {
  bottom: -1.25rem;
  left: -1.25rem;
  background: #010F3C;
  color: #ffffff;
  padding: 1.25rem;
}

.custom-section__badge-num {
  font-size: 1.875rem;
  font-weight: 800;
  color: #F2BA07;
  margin-bottom: 0.125rem;
}

.custom-section__badge-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.custom-section__badge--rating {
  top: -1.25rem;
  right: -1.25rem;
  background: #ffffff;
  border: 1px solid #f3f4f6;
  padding: 1rem;
}

.custom-section__stars {
  display: flex;
  gap: 0.125rem;
  margin-bottom: 0.25rem;
  color: #F2BA07;
}
.custom-section__stars svg {
  width: 11px;
  height: 11px;
}

.custom-section__rating-num {
  font-size: 0.8125rem;
  font-weight: 800;
  color: #010F3C;
}

.custom-section__rating-label {
  font-size: 0.6875rem;
  color: #9ca3af;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}
.feature-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.feature-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  background: #fffbeb;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F2BA07;
  margin-bottom: 1.25rem;
  transition: all 0.2s ease;
}

.feature-card:hover .feature-card__icon {
  background: #F2BA07;
  color: #ffffff;
}

.feature-card__title {
  font-weight: 800;
  color: #010F3C;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.feature-card__desc {
  color: #6b7280;
  font-size: 0.8125rem;
  line-height: 1.6;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) {
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step__number {
  width: 5rem;
  height: 5rem;
  background: #010F3C;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.step__title {
  font-weight: 800;
  color: #010F3C;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.step__desc {
  color: #6b7280;
  font-size: 0.8125rem;
  line-height: 1.6;
  max-width: 200px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) {
  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .industry-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.industry-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.25rem;
  transition: all 0.2s ease;
  display: block;
}
.industry-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(242, 186, 7, 0.4);
}

.industry-card__icon {
  font-size: 1.875rem;
  display: block;
  margin-bottom: 0.75rem;
}

.industry-card__title {
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 800;
  margin-bottom: 0.375rem;
}

.industry-card__desc {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  line-height: 1.6;
}

.industry-card__cta {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: #F2BA07;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.industry-card:hover .industry-card__cta {
  opacity: 1;
}

.testimonial-carousel {
  max-width: 48rem;
  margin-inline: auto;
}

.testimonial-carousel__track {
  position: relative;
}

.testimonial {
  display: none;
  background: #010F3C;
  border-radius: 1.25rem;
  padding: 2.5rem;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
@media (min-width: 1024px) {
  .testimonial {
    padding: 3.5rem;
  }
}
.testimonial.is-active {
  display: block;
}

.testimonial__quote-mark {
  font-family: Georgia, serif;
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  color: #F2BA07;
  opacity: 0.3;
  margin-bottom: 0.5rem;
  user-select: none;
}

.testimonial__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 2.5rem;
}
@media (min-width: 1024px) {
  .testimonial__text {
    font-size: 1.125rem;
  }
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial__avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #F2BA07;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #010F3C;
  font-size: 0.8125rem;
  font-weight: 800;
  flex-shrink: 0;
}

.testimonial__name {
  font-weight: 800;
  color: #ffffff;
  font-size: 0.9375rem;
}

.testimonial__role {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8125rem;
}

.testimonial__stars {
  margin-left: auto;
  display: flex;
  gap: 0.125rem;
  color: #F2BA07;
}

.testimonial-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dots__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: #d1d5db;
  transition: all 0.3s ease;
}
.testimonial-dots__dot:hover {
  background: #9ca3af;
}
.testimonial-dots__dot.is-active {
  width: 1.5rem;
  background: #F2BA07;
}

.cta-banner {
  background: #010F3C;
  position: relative;
  overflow: hidden;
  padding-block: 5rem;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(242, 186, 7, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner__inner {
  max-width: 56rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-banner .section-heading {
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.cta-banner .section-lead {
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2.5rem;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.page-hero {
  background: #010F3C;
  padding: 4rem 1.5rem;
}

.page-hero--center {
  text-align: center;
}

.page-hero__title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
}
@media (min-width: 1024px) {
  .page-hero__title {
    font-size: 3rem;
  }
}

.page-hero__subtitle {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9375rem;
  max-width: 32rem;
  margin-inline: auto;
}

.page-hero--center .page-hero__subtitle {
  margin-inline: auto;
}

.products-page {
  padding-block: 3rem;
}

.products-page__search {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.search-box--panel {
  display: flex;
  flex: 1;
  min-width: 220px;
}

.products-page__layout {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.products-page__sidebar {
  display: none;
  width: 14rem;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .products-page__sidebar {
    display: block;
  }
}

.filter-group {
  margin-bottom: 1.5rem;
}

.filter-group__title {
  font-size: 0.625rem;
  font-weight: 800;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.filter-group__options {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.filter-group__option {
  display: block;
  text-align: left;
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  border-radius: 0.75rem;
  color: #4b5563;
  transition: all 0.15s ease;
}
.filter-group__option:hover {
  background: #f9fafb;
  color: #010F3C;
}
.filter-group__option.is-active {
  background: #F2BA07;
  color: #010F3C;
  font-weight: 700;
}

.products-page__results {
  flex: 1;
  min-width: 0;
}

.products-page__count {
  font-size: 0.8125rem;
  color: #9ca3af;
  margin-bottom: 1.25rem;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1280px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-detail {
  padding-block: 3rem;
}

.pd-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .pd-hero-grid {
    grid-template-columns: 1fr 380px;
  }
}

.pd-hero-main__badge {
  margin-bottom: 0.75rem;
}

.gallery__main-wrap {
  border-radius: 1rem;
  overflow: hidden;
  background: #f3f4f6;
  margin-bottom: 1rem;
  aspect-ratio: 4/3;
}

.gallery__main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery__thumbs {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.gallery__thumb {
  width: 5rem;
  height: 4rem;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 2px solid #f3f4f6;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery__thumb:hover {
  border-color: #d1d5db;
}
.gallery__thumb.is-active {
  border-color: #F2BA07;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.product-detail__title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #010F3C;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .product-detail__title {
    font-size: 2.25rem;
  }
}

.product-detail__rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.product-detail__stars {
  display: flex;
  gap: 0.125rem;
  color: #F2BA07;
}

.pd-rating-link {
  font-size: 0.8125rem;
  color: #F2BA07;
  font-weight: 700;
}
.pd-rating-link:hover {
  text-decoration: underline;
}

.product-detail__desc {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  font-size: 0.9375rem;
}

.spec-panel, .feature-panel {
  margin-bottom: 1.5rem;
}

.spec-panel {
  background: #f8f7f5;
  border-radius: 1rem;
  padding: 1.25rem;
}

.spec-panel__heading {
  font-size: 0.6875rem;
  font-weight: 800;
  color: #010F3C;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
}

.spec__label {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.spec__value {
  font-size: 0.8125rem;
  color: #010F3C;
  font-weight: 800;
}

.pd-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem 1rem;
}
@media (min-width: 640px) {
  .pd-feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pd-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: #4b5563;
}

.pd-feature__icon {
  color: #F2BA07;
  margin-top: 0.125rem;
  flex-shrink: 0;
  display: flex;
}

@media (min-width: 1024px) {
  .pd-hero-sidebar {
    position: sticky;
    top: 6rem;
    height: fit-content;
  }
}

.quote-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote-mini-card {
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.quote-mini-card__header {
  background: #010F3C;
  padding: 1rem 1.25rem;
}

.quote-mini-card__eyebrow {
  color: #F2BA07;
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.125rem;
}

.quote-mini-card__title {
  color: #ffffff;
  font-weight: 800;
  font-size: 1.0625rem;
}

.quote-mini-card__subtitle {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.6875rem;
  margin-top: 0.125rem;
}

.quote-mini-card__form {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.field__label--upper {
  font-size: 0.6875rem;
  font-weight: 800;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.call-card {
  background: #f8f7f5;
  border-radius: 1rem;
  padding: 1.25rem;
}

.call-card__title {
  font-weight: 800;
  color: #010F3C;
  font-size: 0.8125rem;
  margin-bottom: 0.375rem;
}

.call-card__text {
  color: #6b7280;
  font-size: 0.75rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.call-card__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: #010F3C;
  color: #ffffff;
  border-radius: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  transition: background 0.2s ease;
}
.call-card__link:hover {
  background: #021660;
}

.pd-tabs {
  margin-bottom: 4rem;
}

.pd-tabs__bar {
  display: flex;
  gap: 0.25rem;
  border-bottom: 1px solid #f3f4f6;
  margin-bottom: 2rem;
  overflow-x: auto;
}

.pd-tabs__btn {
  padding: 0.75rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 800;
  white-space: nowrap;
  color: #9ca3af;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.2s ease;
}
.pd-tabs__btn:hover {
  color: #4b5563;
}
.pd-tabs__btn.is-active {
  color: #010F3C;
  border-bottom-color: #F2BA07;
}

.pd-tab-panel {
  display: none;
}
.pd-tab-panel.is-active {
  display: block;
}

.pd-overview {
  max-width: 48rem;
}

.pd-overview__heading {
  font-size: 1.5rem;
  font-weight: 800;
  color: #010F3C;
  margin-bottom: 1rem;
}

.pd-overview__desc {
  color: #4b5563;
  line-height: 1.7;
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.pd-stat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .pd-stat-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pd-stat-card {
  padding: 1rem;
  background: #f8f7f5;
  border-radius: 0.75rem;
}

.pd-stat-card__label {
  font-size: 0.6875rem;
  font-weight: 800;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.pd-stat-card__value {
  font-size: 0.875rem;
  font-weight: 800;
  color: #010F3C;
}

.review-summary {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: #f8f7f5;
  border-radius: 1rem;
}
@media (min-width: 640px) {
  .review-summary {
    flex-direction: row;
  }
}

.review-summary__score {
  text-align: center;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .review-summary__score {
    border-right: 1px solid #e5e7eb;
    padding-right: 2rem;
  }
}

.review-summary__avg {
  font-size: 3.75rem;
  font-weight: 800;
  color: #010F3C;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.review-summary__stars {
  display: flex;
  gap: 0.125rem;
  color: #F2BA07;
  justify-content: center;
}

.review-summary__count {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 0.25rem;
}

.review-summary__bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.review-summary__bar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-summary__bar-n {
  font-size: 0.75rem;
  font-weight: 700;
  color: #6b7280;
  width: 1rem;
}

.review-summary__bar-star {
  color: #F2BA07;
  flex-shrink: 0;
  display: flex;
}

.review-summary__bar-track {
  flex: 1;
  height: 0.5rem;
  background: #f3f4f6;
  border-radius: 9999px;
  overflow: hidden;
}

.review-summary__bar-fill {
  height: 100%;
  background: #F2BA07;
  border-radius: 9999px;
}

.review-summary__bar-count {
  font-size: 0.75rem;
  color: #9ca3af;
  width: 1rem;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.review-card {
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.review-card.is-hidden {
  display: none;
}

.review-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-card__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #010F3C;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-card__name {
  font-weight: 800;
  color: #010F3C;
  font-size: 0.8125rem;
  line-height: 1;
  margin-bottom: 0.125rem;
}

.review-card__company {
  font-size: 0.6875rem;
  color: #9ca3af;
}

.review-card__rating {
  text-align: right;
  flex-shrink: 0;
}

.review-card__stars {
  display: flex;
  gap: 0.125rem;
  justify-content: flex-end;
  color: #F2BA07;
}

.star--empty {
  color: #e5e7eb;
}

.review-card__date {
  font-size: 0.6875rem;
  color: #9ca3af;
  margin-top: 0.25rem;
}

.review-card__title {
  font-weight: 800;
  color: #010F3C;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.review-card__body {
  color: #4b5563;
  font-size: 0.8125rem;
  line-height: 1.6;
}

.review-card__verified {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.75rem;
  color: #22c55e;
}

.review-card__verified span {
  font-size: 0.6875rem;
  font-weight: 700;
}

.btn-show-more {
  margin-top: 1.5rem;
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #4b5563;
  transition: all 0.2s ease;
}
.btn-show-more:hover {
  background: #f9fafb;
  border-color: #d1d5db;
}

.quote-popup {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.quote-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.quote-popup__dialog {
  position: relative;
  width: 100%;
  max-width: 32rem;
  background: #ffffff;
  border-radius: 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  max-height: 90vh;
  overflow-y: auto;
}

.quote-popup__header {
  background: #010F3C;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.quote-popup__eyebrow {
  color: #F2BA07;
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.25rem;
}

.quote-popup__title {
  color: #ffffff;
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.2;
}

.quote-popup__product {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.quote-popup__steps {
  display: flex;
  padding: 1.25rem 1.75rem 0;
  gap: 0.5rem;
}

.quote-popup__step {
  flex: 1;
}

.quote-popup__step-bar {
  height: 0.25rem;
  border-radius: 9999px;
  background: #f3f4f6;
  transition: background 0.3s ease;
}

.quote-popup__step.is-active ~ .quote-popup__step .quote-popup__step-bar,
.quote-popup__step.is-active .quote-popup__step-bar {
  background: #F2BA07;
}

.quote-popup__step-label {
  font-size: 0.6875rem;
  margin-top: 0.375rem;
  font-weight: 700;
  color: #9ca3af;
}

.quote-popup__step.is-active .quote-popup__step-label {
  color: #010F3C;
}

.quote-popup__body {
  padding: 1.25rem 1.75rem 1.5rem;
}

.quote-popup__panel {
  display: none;
  flex-direction: column;
  gap: 1rem;
}
.quote-popup__panel.is-active {
  display: flex;
}

.quote-popup__actions {
  display: flex;
  gap: 0.75rem;
}

.quote-popup__success {
  text-align: center;
  padding-block: 2rem;
}

.quote-popup__success-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #f0fdf4;
  color: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.quote-popup__success-icon svg {
  width: 2rem;
  height: 2rem;
}

.quote-popup__success-title {
  font-weight: 800;
  color: #010F3C;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.quote-popup__success-text {
  color: #6b7280;
  font-size: 0.8125rem;
  margin-bottom: 1.5rem;
}

.file-drop--sm {
  padding: 0.625rem 1rem;
}

.related-products__heading {
  font-size: 1.5rem;
  font-weight: 800;
  color: #010F3C;
  margin-bottom: 1.75rem;
}

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

.page-hero--split {
  background: #010F3C;
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

/* .page-hero__split-grid {
  max-width: 44rem;
  position: relative;
  z-index: 1;
} */

.page-hero__split-grid {
  position: relative;
  z-index: 1;
}

.page-hero__title--left {
  color: #ffffff;
  text-align: left;
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 1024px) {
  .page-hero__title--left {
    font-size: 3.25rem;
  }
}

.page-hero__subtitle--left {
  text-align: left;
  margin-inline: 0;
  margin-bottom: 2rem;
  max-width: 34rem;
}

.eyebrow--on-dark {
  color: #F2BA07;
}

.about-stats-bar {
  background: #f4f6ff;
  border-bottom: 1px solid rgba(242, 186, 7, 0.15);
  padding-block: 2.5rem;
}

.about-stats-bar__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .about-stats-bar__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.about-stat {
  text-align: center;
  position: relative;
}

.about-stat__divider {
  display: none;
}
@media (min-width: 1024px) {
  .about-stat__divider {
    display: block;
    position: absolute;
    left: -1rem;
    top: 0.25rem;
    bottom: 0.25rem;
    width: 1px;
    background: rgba(242, 186, 7, 0.25);
  }
}

.about-stat__value {
  font-size: 2.25rem;
  font-weight: 800;
  color: #010F3C;
  margin-bottom: 0.25rem;
}

.about-stat__label {
  font-size: 0.8125rem;
  color: #6b7280;
  font-weight: 500;
}

.about-story__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-story__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about-story__checklist {
  margin-top: 2rem;
}

.about-story__media {
  position: relative;
}

.about-story__image-wrap {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  position: relative;
}

.about-story__image {
  width: 100%;
  height: 31.25rem;
  object-fit: cover;
  display: block;
}

.about-story__badge {
  position: absolute;
  bottom: -1.25rem;
  left: -1.25rem;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  padding: 1.25rem;
  border: 1px solid #f3f4f6;
}

.about-story__badge-stars {
  display: flex;
  gap: 0.25rem;
  color: #F2BA07;
  margin-bottom: 0.25rem;
}

.about-story__badge-rating {
  font-size: 1.25rem;
  font-weight: 800;
  color: #010F3C;
}

.about-story__badge-label {
  font-size: 0.75rem;
  color: #6b7280;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  text-align: center;
}
@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.team-card__avatar {
  width: 6rem;
  height: 6rem;
  background: #010F3C;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 800;
  transition: background 0.3s ease;
}

.team-card:hover .team-card__avatar {
  background: #F2BA07;
}

.team-card__name {
  font-weight: 800;
  color: #010F3C;
  font-size: 0.9375rem;
  margin-bottom: 0.125rem;
}

.team-card__role {
  color: #F2BA07;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.team-card__bio {
  color: #6b7280;
  font-size: 0.8125rem;
  line-height: 1.6;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.timeline-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.timeline-item__year {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 0.8125rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.timeline-item__year--current {
  background: #F2BA07;
  color: #010F3C;
  border: none;
}

.timeline-item__body {
  padding-top: 0.875rem;
}
.timeline-item__body p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  line-height: 1.6;
}

.about-certs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-certs {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.cert-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .cert-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.cert-chip {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.75rem;
  background: #fffbeb;
  border: 1px solid rgba(242, 186, 7, 0.2);
  border-radius: 0.75rem;
}
.cert-chip svg {
  color: #F2BA07;
  margin-top: 0.125rem;
  flex-shrink: 0;
}
.cert-chip span {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #010F3C;
}

.about-certs__image-wrap {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.about-certs__image {
  width: 100%;
  height: 28.125rem;
  object-fit: cover;
  display: block;
}

.about-cta {
  background: #f4f6ff;
  border-top: 1px solid rgba(242, 186, 7, 0.15);
}

.contact-page {
  padding-block: 4rem;
}

.contact-page__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .contact-page__layout {
    grid-template-columns: 1fr 2fr;
  }
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-sidebar__heading {
  font-size: 1.5rem;
  font-weight: 800;
  color: #010F3C;
  margin-bottom: 0.25rem;
}

.contact-sidebar__text {
  color: #6b7280;
  font-size: 0.8125rem;
  line-height: 1.6;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}
.contact-card:hover {
  border-color: rgba(242, 186, 7, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  background: #fffbeb;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F2BA07;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.contact-card:hover .contact-card__icon {
  background: #F2BA07;
  color: #ffffff;
}

.contact-card__label {
  font-size: 0.625rem;
  font-weight: 800;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.125rem;
}

.contact-card__value {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #010F3C;
}

.hours-card {
  padding: 1.25rem;
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.hours-card__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: #F2BA07;
}
.hours-card__title p {
  font-size: 0.8125rem;
  font-weight: 800;
  color: #010F3C;
}

.hours-card__row {
  display: flex;
  justify-content: space-between;
  padding-block: 0.25rem;
  font-size: 0.8125rem;
}
.hours-card__row span {
  color: #6b7280;
}
.hours-card__row strong {
  color: #010F3C;
}

.hours-card__closed {
  color: #9ca3af !important;
}

.chat-card {
  padding: 1.25rem;
  background: #010F3C;
  border-radius: 1rem;
  color: #ffffff;
}
.chat-card svg {
  color: #F2BA07;
  margin-bottom: 0.75rem;
}

.chat-card__title {
  font-weight: 800;
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}

.chat-card__text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8125rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-section {
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
}

.form-section__title {
  font-weight: 800;
  color: #010F3C;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.form-section__num {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #fffbeb;
  color: #F2BA07;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.estimator-page {
  padding-block: 4rem;
}

.estimator-page__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .estimator-page__layout {
    grid-template-columns: 2fr 1fr;
  }
}

.estimate-panel {
  position: sticky;
  top: 6rem;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.estimate-card {
  background: #010F3C;
  border-radius: 1rem;
  padding: 1.5rem;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.estimate-card__title {
  font-weight: 800;
  font-size: 1.0625rem;
  margin-bottom: 0.25rem;
}

.estimate-card__subtitle {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
  margin-bottom: 1.25rem;
}

.estimate-card__totals {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.estimate-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 0.625rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}
.estimate-card__row strong {
  color: #ffffff;
  font-weight: 800;
}

.estimate-card__row--last {
  border-bottom: none;
}

.estimate-card__grand-total {
  font-size: 1.5rem;
  color: #F2BA07 !important;
}

.estimate-card__summary {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.estimate-card__summary-row {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}
.estimate-card__summary-row strong {
  color: #ffffff;
  font-weight: 700;
  text-align: right;
}

.estimate-panel__note {
  font-size: 0.75rem;
  color: #9ca3af;
  line-height: 1.6;
  padding: 0 0.5rem;
}

.page-hero__updated {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
  margin-top: 1rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-block: 4rem;
}
@media (min-width: 1024px) {
  .legal-layout {
    grid-template-columns: 1fr 3fr;
  }
}

.legal-sidebar {
  display: none;
}
@media (min-width: 1024px) {
  .legal-sidebar {
    display: block;
  }
}

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

.legal-sidebar__heading {
  font-size: 0.625rem;
  font-weight: 800;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.legal-toc {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.legal-toc__link {
  display: block;
  padding: 0.375rem 0.75rem;
  border-radius: 0.75rem;
  font-size: 0.8125rem;
  color: #6b7280;
  border-left: 2px solid transparent;
  transition: all 0.15s ease;
}
.legal-toc__link:hover {
  color: #010F3C;
  background: #fffbeb;
  border-left-color: #F2BA07;
}

.legal-sidebar__cta {
  margin-top: 2rem;
  padding: 1rem;
  background: #010F3C;
  border-radius: 1rem;
  color: #ffffff;
}

.legal-sidebar__cta-title {
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.legal-sidebar__cta-text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.6875rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.legal-sidebar__cta-link {
  font-size: 0.6875rem;
  font-weight: 800;
  color: #F2BA07;
}
.legal-sidebar__cta-link:hover {
  color: #ffffff;
}

.legal-content {
  min-width: 0;
}

.legal-card {
  padding: 2rem;
}
@media (min-width: 1024px) {
  .legal-card {
    padding: 3rem;
  }
}

.rich-text {
  color: #4b5563;
  font-size: 0.9375rem;
  line-height: 1.75;
}
.rich-text .cta_sec_rich h2{
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1.25rem;
    font-weight: 800;
    line-height: 1.2;
        border-bottom: none;
    margin: 2rem 0px 0.75rem;
}

.rich-text .cta_sec_rich p{
    color: rgba(255, 255, 255, 0.55);
    /* margin-bottom: 2.5rem; */
        font-size: 0.9375rem;
    line-height: 1.6;
    max-width: 40rem;
    margin: 1rem auto 0;
}


.rich-text h1 {
  margin: 2rem 0 1rem;
  font-size: 2rem;
  line-height: 1.2;
}
.rich-text h1, .rich-text h2 {
  color: #010F3C;
  font-weight: 900;
}
.rich-text h2 {
  border-bottom: 2px solid #f3f4f6;
  margin: 2rem 0 0.75rem;
  padding-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: 1.25;
}
.rich-text h3 {
  color: #010F3C;
  margin: 1.5rem 0 0.5rem;
  font-size: 1.2rem;
  font-weight: 800;
}
.rich-text h4 {
  color: #010F3C;
  margin: 1.25rem 0 0.4rem;
  font-size: 1rem;
  font-weight: 700;
}
.rich-text p {
  margin-bottom: 1rem;
}
.rich-text p:last-child {
  margin-bottom: 0;
}
.rich-text a {
  color: #F2BA07;
  text-underline-offset: 3px;
  font-weight: 600;
  text-decoration: underline;
}
.rich-text a:hover {
  color: #010F3C;
}
.rich-text strong {
  color: #1f2937;
  font-weight: 800;
}
.rich-text em {
  font-style: italic;
}
.rich-text ul {
  margin: 1rem 0 1.25rem;
  padding: 0;
  list-style: none;
}
.rich-text ul > li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  line-height: 1.7;
  position: relative;
}
/* .rich-text ul > li::before {
  content: "";
  background: #F2BA07;
  border-radius: 50%;
  width: 0.45rem;
  height: 0.45rem;
  position: absolute;
  top: 0.62em;
  left: 0;
} */
 .rich-text ul > li::before {
    content: "";
    position: absolute;
    top: 0.55em;
    left: 0;

    width: 12px;
    height: 12px;

    background-color: #F2BA07;

    -webkit-mask: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 11.08V12a10 10 0 11-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E") center / contain no-repeat;

    mask: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 11.08V12a10 10 0 11-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E") center / contain no-repeat;
}
.rich-text ul > li > ul {
  margin: 0.4rem 0;
}
.rich-text ul > li > ul > li::before {
  background: #010F3C;
  width: 0.35rem;
  height: 0.35rem;
}
.rich-text ol {
  counter-reset: rt-counter;
  margin: 1rem 0 1.25rem;
  padding: 0;
  list-style: none;
}
.rich-text ol > li {
  counter-increment: rt-counter;
  margin-bottom: 0.5rem;
  padding-left: 2rem;
  line-height: 1.7;
  position: relative;
}
.rich-text ol > li::before {
  content: counter(rt-counter) ".";
  color: #F2BA07;
  min-width: 1.5rem;
  font-size: 0.875rem;
  font-weight: 900;
  position: absolute;
  top: 0;
  left: 0;
}
.rich-text blockquote {
  color: #374151;
  background: #fffdf2;
  border-left: 4px solid #F2BA07;
  border-radius: 0 0.75rem 0.75rem 0;
  margin: 1.75rem 0;
  padding: 1.25rem 1.5rem 1.25rem 2rem;
  font-style: italic;
  position: relative;
}
.rich-text blockquote::before {
  content: "“";
  color: #F2BA07;
  opacity: 0.35;
  font-family: Georgia, serif;
  font-size: 3.5rem;
  font-style: normal;
  line-height: 1;
  position: absolute;
  top: -0.25rem;
  left: 0.75rem;
}
.rich-text hr {
  border: none;
  border-top: 2px solid #f3f4f6;
  margin: 2rem 0;
}
.rich-text table {
  border-collapse: collapse;
  width: 100%;
  margin: 1.5rem 0;
  font-size: 0.875rem;
}
.rich-text table th {
  color: #ffffff;
  text-align: left;
  background: #010F3C;
  padding: 0.75rem 1rem;
  font-weight: 700;
}
.rich-text table td {
  border-bottom: 1px solid #e5e7eb;
  padding: 0.75rem 1rem;
}
.rich-text table tr:nth-child(2n) td {
  background: #f9fafb;
}
.rich-text code {
  color: #010F3C;
  background: #f3f4f6;
  border-radius: 0.3rem;
  padding: 0.15rem 0.4rem;
  font-family: monospace;
  font-size: 0.85em;
}

.sitemap-page {
  padding-block: 4rem;
}

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

.sitemap-card {
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.sitemap-card__header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sitemap-card__dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: #F2BA07;
  flex-shrink: 0;
}

.sitemap-card__title {
  font-weight: 800;
  color: #010F3C;
  font-size: 0.9375rem;
}

.sitemap-card__list {
  padding: 0.75rem;
}

.sitemap-link {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  transition: background 0.2s ease;
}
.sitemap-link svg {
  color: #F2BA07;
  flex-shrink: 0;
  margin-top: 0.125rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.sitemap-link:hover {
  background: #fffbeb;
}
.sitemap-link:hover svg {
  opacity: 1;
}

.sitemap-link__body {
  min-width: 0;
}

.sitemap-link__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #010F3C;
  transition: color 0.2s ease;
}

.sitemap-link:hover .sitemap-link__label {
  color: #F2BA07;
}

.sitemap-link__desc {
  font-size: 0.6875rem;
  color: #9ca3af;
  line-height: 1.5;
}

.eyebrow--on-dark {
  color: #F2BA07;
}

.faq-search {
  position: relative;
  max-width: 32rem;
  margin: 2rem auto 0;
}

.faq-search__input {
  width: 100%;
  padding: 0.875rem 3rem 0.875rem 1.25rem;
  border-radius: 9999px;
  border: none;
  font-size: 0.875rem;
  color: #374151;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.faq-search__input::placeholder {
  color: #9ca3af;
}
.faq-search__input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(242, 186, 7, 0.4), 0 10px 30px rgba(0, 0, 0, 0.12);
}

.faq-search__icon {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none;
}

.faqs-page {
  padding-block: 3rem;
}

.faqs-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .faqs-layout {
    grid-template-columns: 260px 1fr;
  }
}

.faq-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.faq-nav__heading {
  font-size: 0.625rem;
  font-weight: 800;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  padding-inline: 0.75rem;
}

.faq-nav__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  text-align: left;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #6b7280;
  transition: all 0.2s ease;
}
.faq-nav__item:hover {
  background: #f3f4f6;
  color: #374151;
}
.faq-nav__item.is-active {
  background: #010F3C;
  color: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.faq-nav__icon {
  font-size: 1rem;
}

.faq-nav__label {
  flex: 1;
}

.faq-nav__count {
  font-size: 0.6875rem;
  font-weight: 800;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  background: #f3f4f6;
  color: #9ca3af;
}

.faq-nav__item.is-active .faq-nav__count {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.faq-cta-box {
  margin-top: 1.5rem;
  padding: 1rem;
  background: #fffbeb;
  border: 1px solid rgba(242, 186, 7, 0.2);
  border-radius: 1rem;
}

.faq-cta-box__title {
  font-weight: 800;
  color: #010F3C;
  font-size: 0.8125rem;
  margin-bottom: 0.5rem;
}

.faq-cta-box__text {
  color: #6b7280;
  font-size: 0.75rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.faq-cta-box__link {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: #F2BA07;
}
.faq-cta-box__link:hover {
  color: #010F3C;
}

.faq-panel {
  display: none;
}
.faq-panel.is-active {
  display: block;
}

.faq-panel__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.faq-panel__icon {
  font-size: 1.5rem;
}

.faq-panel__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #010F3C;
}

.faq-panel__meta {
  font-size: 0.8125rem;
  color: #9ca3af;
}

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

.faq-item {
  border-radius: 1rem;
  border: 1px solid #f3f4f6;
  overflow: hidden;
  transition: all 0.2s ease;
}
.faq-item.is-open {
  border-color: rgba(242, 186, 7, 0.4);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  background: #ffffff;
  transition: background 0.2s ease;
}
.faq-item__trigger:hover {
  background: rgba(255, 251, 235, 0.5);
}

.faq-item__toggle {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 0.75rem;
  background: #f3f4f6;
  color: #9ca3af;
  transition: all 0.2s ease;
}

.faq-item.is-open .faq-item__toggle {
  background: #F2BA07;
  color: #010F3C;
}

.faq-item__question {
  font-weight: 800;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #374151;
  transition: color 0.2s ease;
}

.faq-item.is-open .faq-item__question {
  color: #010F3C;
}

.faq-item__panel {
  display: none;
  padding: 0 1.5rem 1.5rem;
  background: #ffffff;
  border-top: 1px solid #f9fafb;
}

.faq-item.is-open .faq-item__panel {
  display: block;
}

.faq-item__answer {
  font-size: 0.8125rem;
  color: #4b5563;
  line-height: 1.7;
  padding-top: 1rem;
  padding-left: 2.5rem;
}

.faq-panel__nav {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f3f4f6;
}

.faq-panel__nav-btn {
  font-size: 0.8125rem;
  font-weight: 800;
  color: #6b7280;
  transition: color 0.2s ease;
}
.faq-panel__nav-btn:hover {
  color: #010F3C;
}

.faq-search-results__count {
  font-size: 0.8125rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.faq-search-results__count strong {
  color: #010F3C;
  font-weight: 800;
}

.faq-search-results__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-search-item {
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  padding: 1rem 1.5rem;
}

.faq-search-item__meta {
  font-size: 0.6875rem;
  color: #9ca3af;
  margin-bottom: 0.375rem;
}

.faq-search-item__q {
  font-weight: 800;
  color: #010F3C;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.faq-search-item__a {
  font-size: 0.8125rem;
  color: #4b5563;
  line-height: 1.6;
}

.faq-search-empty {
  text-align: center;
  padding-block: 4rem;
}

.faq-search-empty__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.faq-search-empty__title {
  font-weight: 800;
  color: #010F3C;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.faq-search-empty__text {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.faq-bottom-cta {
  margin-top: 4rem;
  background: #010F3C;
  border-radius: 1.25rem;
  padding: 2.5rem;
  text-align: center;
}

.faq-bottom-cta__title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.faq-bottom-cta__text {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.875rem;
  margin-bottom: 2rem;
  max-width: 28rem;
  margin-inline: auto;
}

.faq-bottom-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.blog-hero__grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .blog-hero__grid {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.blog-hero__search {
  position: relative;
  width: 100%;
}
@media (min-width: 1024px) {
  .blog-hero__search {
    width: 20rem;
    flex-shrink: 0;
  }
}

.blog-hero__search-input {
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  color: #ffffff;
  font-size: 0.8125rem;
}
.blog-hero__search-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.blog-hero__search-input:focus {
  outline: none;
  border-color: rgba(242, 186, 7, 0.6);
}

.blog-hero__search-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.35);
}

.chip-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.chip-filter {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 800;
  background: #f3f4f6;
  color: #6b7280;
  transition: all 0.2s ease;
}
.chip-filter:hover {
  background: #e5e7eb;
}
.chip-filter.is-active {
  background: #010F3C;
  color: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.blog-page {
  padding-block: 3rem;
}

.blog-featured-wrap {
  margin-bottom: 2.5rem;
}

.blog-card--featured {
  display: block;
  background: #ffffff;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}
.blog-card--featured:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.blog-card--featured__grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .blog-card--featured__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.blog-card__image-wrap--featured {
  height: 16rem;
}
@media (min-width: 1024px) {
  .blog-card__image-wrap--featured {
    height: auto;
  }
}

.blog-card--featured__body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1024px) {
  .blog-card--featured__body {
    padding: 2.5rem;
  }
}

.blog-card__meta-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.blog-card__featured-label {
  font-size: 0.6875rem;
  color: #9ca3af;
  font-weight: 700;
}

.blog-card--featured__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #010F3C;
  line-height: 1.25;
  margin-bottom: 1rem;
  transition: color 0.2s ease;
}
@media (min-width: 1024px) {
  .blog-card--featured__title {
    font-size: 1.875rem;
  }
}

.blog-card--featured:hover .blog-card--featured__title {
  color: #F2BA07;
}

.blog-card--featured__excerpt {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.blog-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.blog-card__image-wrap {
  height: 12rem;
  background: #f3f4f6;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__image {
  transform: scale(1.05);
}

.blog-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__title {
  font-weight: 800;
  color: #010F3C;
  font-size: 0.9375rem;
  line-height: 1.4;
  margin: 0.75rem 0;
  flex: 1;
  transition: color 0.2s ease;
}

.blog-card:hover .blog-card__title {
  color: #F2BA07;
}

.blog-card__excerpt {
  color: #6b7280;
  font-size: 0.8125rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.blog-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.blog-card__avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #010F3C;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.blog-card__avatar--sm {
  width: 1.75rem;
  height: 1.75rem;
  font-size: 0.6875rem;
}

.blog-card__author-name {
  font-weight: 800;
  color: #010F3C;
  font-size: 0.75rem;
  line-height: 1;
}

.blog-card__author-name--sm {
  font-size: 0.6875rem;
}

.blog-card__author-meta {
  font-size: 0.6875rem;
  color: #9ca3af;
  margin-top: 0.125rem;
}

.blog-card__date {
  font-size: 0.6875rem;
  color: #9ca3af;
}

.blog-card__read-link {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 800;
  color: #F2BA07;
}

.blog-empty-state {
  text-align: center;
  padding-block: 5rem;
}

.blog-empty-state__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.blog-empty-state__title {
  font-weight: 800;
  color: #010F3C;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.blog-empty-state__text {
  color: #6b7280;
  font-size: 0.875rem;
}

.blog-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 28rem;
  margin-inline: auto;
}
@media (min-width: 640px) {
  .blog-newsletter-form {
    flex-direction: row;
  }
}

.blog-newsletter-form__input {
  flex: 1;
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 0.8125rem;
}
.blog-newsletter-form__input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.blog-newsletter-form__input:focus {
  outline: none;
  border-color: rgba(242, 186, 7, 0.6);
}

.blog-detail-hero {
  position: relative;
  background: #010F3C;
  overflow: hidden;
}

.blog-detail-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.blog-detail-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #010F3C 0%, rgba(1, 15, 60, 0.8) 55%, rgba(1, 15, 60, 0.6) 100%);
}

.blog-detail-hero__content {
  position: relative;
  padding-block: 4rem;
}
@media (min-width: 1024px) {
  .blog-detail-hero__content {
    padding-block: 5rem;
  }
}

.blog-detail-hero__badge {
  border: 1px solid rgba(242, 186, 7, 0.3);
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
}

.blog-detail-hero__title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  max-width: 48rem;
}
@media (min-width: 1024px) {
  .blog-detail-hero__title {
    font-size: 3rem;
  }
}

.blog-detail-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.blog-detail-hero__avatar {
  width: 2.5rem;
  height: 2.5rem;
  background: #F2BA07;
  color: #010F3C;
  font-size: 0.9375rem;
}

.blog-detail-hero__author-name {
  color: #ffffff;
  font-weight: 800;
  font-size: 0.8125rem;
  line-height: 1;
  margin-bottom: 0.125rem;
}

.blog-detail-hero__author-role {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.6875rem;
}

.blog-detail-hero__divider {
  width: 1px;
  height: 1rem;
  background: rgba(255, 255, 255, 0.2);
}

.blog-detail-hero__meta-text {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
}

.blog-breadcrumb__title {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.blog-detail {
  padding-block: 3rem;
}

.blog-detail__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .blog-detail__layout {
    grid-template-columns: 1fr 300px;
  }
}

.blog-article__feature-image {
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 2.5rem;
  aspect-ratio: 16/7;
}
.blog-article__feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-article__lead {
  font-size: 1.0625rem;
  color: #4b5563;
  line-height: 1.7;
  border-left: 4px solid #F2BA07;
  padding-left: 1.25rem;
  margin-bottom: 2.5rem;
  font-weight: 500;
  font-style: italic;
}

.blog-article__sections {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.blog-article__heading {
  font-size: 1.5rem;
  font-weight: 800;
  color: #010F3C;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-article__body {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.7;
}

.blog-article__tags {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #f3f4f6;
}

.blog-article__tags-label {
  font-size: 0.6875rem;
  font-weight: 800;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.blog-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-tag {
  padding: 0.375rem 0.75rem;
  background: #f3f4f6;
  color: #4b5563;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.blog-author-card {
  margin-top: 2rem;
  background: #010F3C;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.blog-author-card__avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #F2BA07;
  color: #010F3C;
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.blog-author-card__label {
  font-size: 0.625rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.blog-author-card__name {
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 0.125rem;
}

.blog-author-card__role {
  color: #F2BA07;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.blog-author-card__bio {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8125rem;
  line-height: 1.6;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.blog-toc {
  background: #f8f7f5;
  border-radius: 1rem;
  padding: 1.25rem;
}

.blog-toc__label {
  font-size: 0.625rem;
  font-weight: 800;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.blog-toc__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.blog-toc__link {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #6b7280;
  transition: color 0.2s ease;
}

.blog-toc__link:hover {
  color: #010F3C;
}

.blog-toc__num {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5625rem;
  font-weight: 800;
  color: #6b7280;
  flex-shrink: 0;
  margin-top: 0.125rem;
  transition: all 0.2s ease;
}

.blog-toc__link:hover .blog-toc__num {
  background: #F2BA07;
  color: #010F3C;
}

.blog-cta-box {
  background: #F2BA07;
  border-radius: 1rem;
  padding: 1.25rem;
  text-align: center;
}

.blog-cta-box__title {
  font-weight: 800;
  color: #010F3C;
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}

.blog-cta-box__text {
  color: rgba(1, 15, 60, 0.6);
  font-size: 0.75rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.blog-share-box__label {
  font-size: 0.625rem;
  font-weight: 800;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.blog-share-box__buttons {
  display: flex;
  gap: 0.5rem;
}

.blog-share-btn {
  flex: 1;
  padding: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #6b7280;
  background: #f3f4f6;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
}
.blog-share-btn:hover {
  background: #010F3C;
  color: #ffffff;
}

.blog-related {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid #f3f4f6;
}

.blog-related__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.blog-related-card__title {
  font-weight: 800;
  color: #010F3C;
  font-size: 0.875rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.blog-related-card__meta {
  font-size: 0.6875rem;
  color: #9ca3af;
}


.toast-stack {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: calc(100vw - 1.25rem * 2);
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  min-width: 18rem;
  max-width: 24rem;
  padding: 1rem;
  background: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-left: 4px solid #6b7280;
  font-family: "Plus Jakarta Sans", "DM Sans", system-ui, sans-serif;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #1f2937;
  opacity: 0;
  transform: translateX(1rem);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: auto;
}

.toast.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.toast.is-leaving {
  opacity: 0;
  transform: translateX(1rem);
}

.toast__icon {
  flex: 0 0 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
}

.toast__text {
  margin: 0;
  flex: 1;
}

.toast__close {
  flex: 0 0 auto;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 1.125rem;
  line-height: 1;
  color: #6b7280;
  padding: 0;
}

.toast__close:hover {
  color: #1f2937;
}

.toast--success {
  border-left-color: #22c55e;
}

.toast--success .toast__icon {
  background: #22c55e;
}

.toast--error {
  border-left-color: #ef4444;
}

.toast--error .toast__icon {
  background: #ef4444;
}

@media (max-width: 640px) {
  .toast-stack {
    top: auto;
    bottom: 1.25rem;
    left: 1rem;
    right: 1rem;
  }
  .toast {
    min-width: 0;
    max-width: none;
  }
}

.filter-panel {
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 0.75rem;
  padding: 1rem;
  margin-bottom: 1rem;
}

.filter-panel__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.filter-panel__title {
  font-size: 0.625rem;
  font-weight: 800;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.filter-panel__count {
  font-size: 0.625rem;
  font-weight: 700;
  color: #010F3C;
  background: rgba(242, 186, 7, 0.2);
  border-radius: 9999px;
  padding: 0.125rem 0.4rem;
}

.filter-panel__list {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.filter-panel__list--scroll {
  max-height: 15rem;
  overflow-y: auto;
  padding-right: 0.25rem;
  scrollbar-width: thin;
  scrollbar-color: #d1d5db transparent;
}

.filter-panel__list--scroll::-webkit-scrollbar {
  width: 6px;
}

.filter-panel__list--scroll::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 9999px;
}

.filter-panel__list--scroll::-webkit-scrollbar-track {
  background: transparent;
}

.filter-panel__group-title {
  font-size: 0.625rem;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0.75rem 0 0.25rem;
  padding-left: 0.5rem;
}

.filter-panel__group-title:first-child {
  margin-top: 0;
}

.filter-panel__empty {
  font-size: 0.75rem;
  color: #9ca3af;
  line-height: 1.5;
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.375rem 0.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  font-size: 0.8125rem;
  color: #4b5563;
  transition: background 0.15s ease, color 0.15s ease;
}

.filter-check:hover {
  background: #f9fafb;
  color: #010F3C;
}

.filter-check.is-active {
  color: #010F3C;
  font-weight: 600;
}

.filter-check input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.filter-check__box {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  border: 1.5px solid #d1d5db;
  border-radius: 4px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.filter-check__box svg {
  width: 10px;
  height: 10px;
  opacity: 0;
  color: #010F3C;
  transition: opacity 0.15s ease;
}

.filter-check:hover .filter-check__box {
  border-color: #F2BA07;
}

.filter-check input:checked + .filter-check__box {
  background: #F2BA07;
  border-color: #F2BA07;
}

.filter-check input:checked + .filter-check__box svg {
  opacity: 1;
}

.filter-check input:focus-visible + .filter-check__box {
  outline: 2px solid #F2BA07;
  outline-offset: 2px;
}

.filter-check__text {
  flex: 1;
}

.filter-clear {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: color 0.15s ease, background 0.15s ease;
}

.filter-clear:hover {
  background: #f9fafb;
  color: #010F3C;
}

.products-page__sidebar.is-loading {
  opacity: 0.55;
  pointer-events: none;
}
