.webleee-font-sans,
:root {
  --background: #f5f1ee;
  --surface: #ffffff;
  --text-primary: #0f1c3f;
  --text-secondary: #636a7f;
  --accent-blue: #0066FF;
  --border-soft: rgba(15, 28, 63, 0.14);
  --shadow-soft: 0 18px 45px rgba(15, 28, 63, 0.08);
}

.webleee-font-sans {
  font-family: "Figtree", sans-serif;
}

html,
body {
  margin: 0 !important;
  background: var(--background) !important;
  color: var(--text-primary) !important;
  font-family: "Figtree", sans-serif !important;
}

body *:not(svg):not(svg *):not(.material-symbols-outlined):not(.material-symbols-outlined *):not(.material-icons):not(.material-icons *) {
  font-family: "Figtree", sans-serif !important;
}

body :is(.material-symbols-outlined, .material-icons, [class*="material-symbols"], [class*="material-icons"]) {
  font-family: "Material Symbols Outlined" !important;
}

.webleee-header-wrap {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 2000;
  padding: 12px 16px 0;
  pointer-events: none;
}

.webleee-header {
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid transparent;
  border-radius: 16px;
  transition: max-width .3s ease, box-shadow .3s ease, background-color .3s ease, border-color .3s ease, transform .3s ease;
  pointer-events: auto;
}

.webleee-header.is-scrolled {
  max-width: 960px;
  background: color-mix(in srgb, var(--background) 82%, transparent);
  border-color: color-mix(in srgb, var(--border-soft) 65%, white);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.webleee-header.is-open {
  background: color-mix(in srgb, var(--background) 94%, transparent);
  border-color: color-mix(in srgb, var(--border-soft) 65%, white);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.webleee-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 56px;
  padding: 0 16px;
}

.webleee-wordmark {
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
}

.webleee-wordmark svg {
  height: 18px;
  width: auto;
  display: block;
}

.webleee-nav-links,
.webleee-nav-actions {
  display: none;
  align-items: center;
  gap: 10px;
}

.webleee-link,
.webleee-btn {
  text-decoration: none;
  border-radius: 999px;
  font-family: "Figtree", sans-serif;
  font-size: 14px;
  font-weight: 600 !important;
  line-height: 1;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.webleee-link {
  color: var(--text-primary);
  padding: 10px 14px;
}

.webleee-link:hover {
  background: color-mix(in srgb, var(--text-primary) 6%, transparent);
}

.webleee-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px !important;
  padding: 10px 16px !important;
  border: 1px solid color-mix(in srgb, var(--border-soft) 92%, white) !important;
  border-radius: 999px !important;
  color: var(--text-primary);
  background: transparent;
  box-sizing: border-box;
  box-shadow: 0 8px 20px rgba(15, 28, 63, 0.04);
}

.webleee-btn--primary {
  background: var(--accent-blue);
  color: #ffffff !important;
  border-color: var(--accent-blue) !important;
  box-shadow: 0 10px 24px rgba(0, 102, 255, 0.16);
}

.webleee-btn--primary:hover {
  background: #0058e2;
  border-color: #0058e2;
  box-shadow: 0 14px 30px rgba(0, 102, 255, 0.22);
}

.webleee-btn--secondary {
  background: #ffffff;
  color: #000000 !important;
  border-color: color-mix(in srgb, var(--border-soft) 92%, white) !important;
}

.webleee-btn--secondary:hover {
  background: #ffffff;
  border-color: color-mix(in srgb, var(--border-soft) 98%, white);
}

.webleee-btn:hover,
.webleee-link:hover,
.webleee-menu-toggle:hover {
  transform: translateY(-2px) scale(1.01);
}

.webleee-btn:active {
  transform: translateY(0) scale(0.98);
}

.webleee-btn:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--accent-blue) 40%, white);
  outline-offset: 2px;
}

.webleee-menu-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--border-soft) 82%, white);
  background: color-mix(in srgb, var(--background) 92%, transparent);
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease;
}

.webleee-menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text-primary);
  transition: transform .3s ease, opacity .3s ease;
}

.webleee-header.is-open .webleee-menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.webleee-header.is-open .webleee-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.webleee-header.is-open .webleee-menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.webleee-mobile-menu {
  display: block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 16px;
  transform: translateY(-8px);
  transition: max-height .32s ease, opacity .24s ease, transform .24s ease, padding .24s ease;
}

.webleee-header.is-open .webleee-mobile-menu {
  max-height: 420px;
  opacity: 1;
  padding: 0 16px 16px;
  transform: translateY(0);
}

.webleee-mobile-menu-inner {
  display: grid;
  gap: 12px;
  padding-top: 8px;
}

.webleee-mobile-actions {
  display: grid;
  gap: 10px;
  padding-top: 4px;
}

.webleee-mobile-menu .webleee-link,
.webleee-mobile-actions .webleee-btn {
  justify-content: flex-start;
  width: 100%;
}

.webleee-mobile-menu .webleee-link {
  color: var(--text-primary);
}

body[data-webleee-route] .webleee-nav-links .webleee-link,
body[data-webleee-route] .webleee-mobile-menu .webleee-link {
  font-weight: 600 !important;
}

body[data-webleee-route] .webleee-nav-links .webleee-link.is-active,
body[data-webleee-route] .webleee-mobile-menu .webleee-link.is-active {
  color: var(--text-primary) !important;
  font-weight: 700 !important;
}

.webleee-nav-links .webleee-link.is-active,
.webleee-mobile-menu .webleee-link.is-active {
  color: var(--text-primary) !important;
  font-weight: 700 !important;
}

.webleee-mobile-menu .webleee-link.is-active {
  color: var(--text-primary);
  font-weight: 700 !important;
}

.webleee-mobile-actions .webleee-btn {
  justify-content: center;
}

.webleee-footer-wrap {
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  border-top: 0;
  background: #0f172a;
}

.webleee-footer {
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 24px 36px;
  color: #ffffff;
  font-family: "Figtree", sans-serif;
  display: grid;
  gap: 18px;
}

.webleee-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.15fr;
  gap: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: 34px;
}

.webleee-footer-brand {
  display: grid;
  gap: 12px;
}

.webleee-footer-brand h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.webleee-footer-brand p {
  margin: 0;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.7;
  max-width: 420px;
}

.webleee-footer-pages {
  display: grid;
  gap: 10px;
  align-content: start;
}

.webleee-footer-pages h4,
.webleee-footer-cta h4 {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

.webleee-footer-pages a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.webleee-footer-pages a:hover {
  color: #ffffff;
}

.webleee-footer-cta {
  display: grid;
  align-content: start;
}

.webleee-footer-cta p {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.6;
}

.webleee-footer-cta .webleee-btn {
  width: fit-content;
}

.webleee-footer-support {
  margin-top: 2px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.webleee-footer-support a,
.webleee-footer-support span {
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
}

.webleee-footer-support a:hover {
  color: #ffffff;
}

.webleee-footer-bottom {
  margin-top: 2px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: #ffffff;
  font-size: 13px;
}

#webleee-footer-slot {
  background: #0f172a;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

@media (max-width: 1024px) {
  .webleee-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

body,
html {
  overflow-x: clip;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body[data-webleee-route] :is(.bg-surface-container-lowest, .bg-surface-container-low, .bg-surface-container-high, .bg-surface-container-highest, article, .webleee-faq-item, .premium-card-shadow, .premium-shadow) {
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background-color .28s ease;
}

body[data-webleee-route] :is(.bg-surface-container-lowest, .bg-surface-container-low, .bg-surface-container-high, .bg-surface-container-highest, article, .webleee-faq-item, .premium-card-shadow, .premium-shadow):hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft) !important;
}

.webleee-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .6s ease var(--webleee-reveal-delay, 0ms),
    transform .6s cubic-bezier(.2, .8, .2, 1) var(--webleee-reveal-delay, 0ms),
    box-shadow .25s ease,
    background-color .25s ease,
    border-color .25s ease;
  will-change: opacity, transform;
}

.webleee-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes webleeeScrollFade {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@supports (animation-timeline: view()) {
  body[data-webleee-route][data-webleee-motion="enhanced"] :is(
    main > *,
    main section,
    main article
  ) {
    animation: webleeeScrollFade .82s ease both;
    animation-timeline: view();
    animation-range: entry 0% cover 24%;
  }
}

@keyframes webleeeFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -6px, 0);
  }
}

body[data-webleee-route] :is(.hero-sticky, .webleee-hero-sequence-sticky, .webleee-feature-logo) {
  animation: webleeeFloat 8s ease-in-out infinite;
}

body[data-webleee-route] main :is(img, video, iframe) {
  max-width: 100%;
}

body[data-webleee-route] .webleee-mobile-menu {
  will-change: max-height, opacity, transform;
}

body[data-webleee-route] .webleee-mobile-menu-inner {
  max-height: min(72dvh, 520px);
  overflow-y: auto;
  scrollbar-gutter: stable;
}

body[data-webleee-route] .webleee-faq-answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-4px);
  transition: max-height .34s ease, opacity .24s ease, transform .24s ease;
}

body[data-webleee-route] .webleee-faq-item.is-open .webleee-faq-answer {
  opacity: 1;
  transform: translateY(0);
}

body[data-webleee-route] .webleee-faq-item .webleee-faq-question {
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

body[data-webleee-route] .webleee-faq-item:hover .webleee-faq-question {
  transform: translateY(-1px);
}

body[data-webleee-route] :is(.webleee-btn, .webleee-link, .webleee-menu-toggle) {
  will-change: transform, box-shadow;
}

body[data-webleee-route] :is(.webleee-btn, .webleee-footer-links a, .webleee-link):focus-visible {
  outline: 2px solid color-mix(in srgb, var(--accent-blue) 42%, white);
  outline-offset: 2px;
}

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

  @supports (animation-timeline: view()) {
    body[data-webleee-route][data-webleee-motion="enhanced"] :is(
      main > *,
      main section,
      main article
    ) {
      animation: none !important;
    }
  }

  .webleee-reveal,
  .webleee-reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
  }

  body[data-webleee-route] :is(.hero-sticky, .webleee-hero-sequence-sticky, .webleee-feature-logo) {
    animation: none !important;
  }
}

body[data-webleee-route] {
  background: var(--background) !important;
  color: var(--text-primary) !important;
  font-family: "Figtree", sans-serif !important;
}

body[data-webleee-route] :is(button, .webleee-btn, .font-semibold, [class*="btn"], [type="button"], [type="submit"]) {
  font-weight: 600 !important;
}

body[data-webleee-route] .webleee-btn {
  font-weight: 600 !important;
}

body[data-webleee-route] button.webleee-btn,
body[data-webleee-route] a.webleee-btn {
  font-weight: 600 !important;
}

body[data-webleee-route] :is(h1, h2, h3, h4, h5, h6, .font-headline-xl, .font-headline-md, .font-display-lg, .font-display-lg-mobile) {
  font-family: "Figtree", sans-serif !important;
  font-weight: 700 !important;
  color: var(--text-primary) !important;
}

/* Force all heading text (including nested spans/emphasis) to the brand heading color */
body[data-webleee-route] :is(h1, h2, h3, h4, h5, h6, [role="heading"], .font-headline-xl, .font-headline-md, .font-display-lg, .font-display-lg-mobile),
body[data-webleee-route] :is(h1, h2, h3, h4, h5, h6, [role="heading"], .font-headline-xl, .font-headline-md, .font-display-lg, .font-display-lg-mobile) * {
  color: #0f1c3f !important;
}

body[data-webleee-route] :is(p, li, label, input, textarea, select, a, button, .font-body-md, .font-body-lg) {
  font-family: "Figtree", sans-serif !important;
  font-weight: 400 !important;
  color: var(--text-primary) !important;
}

body[data-webleee-route] :is(.font-medium, [class*="font-medium"]) {
  font-weight: 500 !important;
}

body[data-webleee-route] :is(.font-bold, [class*="font-bold"]) {
  font-weight: 700 !important;
}

body[data-webleee-route] :is(.font-label-sm, [class*="label-sm"]) {
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
}

body[data-webleee-route] main {
  position: relative;
  z-index: 1;
}

body[data-webleee-route]:not([data-webleee-route="/"]) main,
body[data-webleee-route]:not([data-webleee-route="/"]) #main {
  padding-top: 88px;
}

body[data-webleee-route] :is(.text-primary, .text-primary-container) {
  color: var(--accent-blue) !important;
}

body[data-webleee-route] :is(.bg-primary, .bg-primary-container) {
  background-color: var(--accent-blue) !important;
}

body[data-webleee-route] :is(.webleee-btn--primary, .webleee-btn--primary:hover, .webleee-mobile-actions .webleee-btn--primary, .webleee-nav-actions .webleee-btn--primary) {
  color: #ffffff !important;
}

body[data-webleee-route] :is(a, button, .webleee-btn).bg-primary,
body[data-webleee-route] :is(a, button, .webleee-btn).bg-primary-container {
  color: #ffffff !important;
}

body[data-webleee-route] :is(a, button, .webleee-btn).bg-surface,
body[data-webleee-route] :is(a, button, .webleee-btn).bg-surface-container-lowest,
body[data-webleee-route] :is(a, button, .webleee-btn).bg-surface-container-low,
body[data-webleee-route] :is(a, button, .webleee-btn).bg-surface-container-high,
body[data-webleee-route] :is(a, button, .webleee-btn).bg-surface-container-highest {
  background-color: #ffffff !important;
  color: var(--text-primary) !important;
}

body[data-webleee-route] :is(a, button).bg-white,
body[data-webleee-route] :is(a, button).bg-surface-container-lowest,
body[data-webleee-route] :is(a, button).bg-surface-container-low,
body[data-webleee-route] :is(a, button).bg-surface-container-high,
body[data-webleee-route] :is(a, button).bg-surface-container-highest {
  background-color: #ffffff !important;
  color: #000000 !important;
}

body[data-webleee-route] .text-on-primary,
body[data-webleee-route] .text-on-primary-container {
  color: #ffffff !important;
}

body[data-webleee-route] .text-on-surface,
body[data-webleee-route] .text-on-background {
  color: var(--text-primary) !important;
}

body[data-webleee-route] .text-on-surface-variant,
body[data-webleee-route] .text-on-secondary-container {
  color: var(--text-secondary) !important;
}

body[data-webleee-route] :is(.bg-primary, .bg-primary-container, .bg-on-surface, .framer-sl3uaf) :is(h1, h2, h3, h4, h5, h6, p, li, label, span, a, button, div, strong, em) {
  color: #ffffff !important;
}

body[data-webleee-route] :is(.bg-primary, .bg-primary-container, .bg-on-surface, .framer-sl3uaf) :is(p, li, label, .text-on-surface-variant, .text-on-secondary-container) {
  color: #d0d5e6 !important;
}

body[data-webleee-route] :is(.bg-primary, .bg-primary-container, .bg-on-surface, .framer-sl3uaf) .webleee-btn--secondary {
  background: #ffffff !important;
  color: #000000 !important;
}

body[data-webleee-route] :is(.bg-primary, .bg-primary-container, .bg-on-surface, .framer-sl3uaf) :is(.webleee-btn--primary, .webleee-btn--primary:hover) {
  color: #ffffff !important;
}

body[data-webleee-route] :is(.bg-background, .bg-surface) {
  background-color: var(--background) !important;
}

body[data-webleee-route] .bg-surface-container-lowest {
  background-color: var(--surface) !important;
}

body[data-webleee-route] .bg-surface-container-low {
  background-color: color-mix(in srgb, var(--accent-blue) 5%, var(--background)) !important;
}

body[data-webleee-route] .bg-surface-container-high,
body[data-webleee-route] .bg-surface-container-highest,
body[data-webleee-route] .bg-surface-variant {
  background-color: color-mix(in srgb, var(--background) 88%, var(--text-primary)) !important;
}

body[data-webleee-route] .border-outline-variant,
body[data-webleee-route] .border-surface-variant,
body[data-webleee-route] [class*="border-outline-variant"],
body[data-webleee-route] [class*="border-surface-variant"] {
  border-color: var(--border-soft) !important;
}

body[data-webleee-route] :is(.shadow-sm, .premium-card-shadow, .premium-shadow) {
  box-shadow: var(--shadow-soft) !important;
}

body[data-webleee-route] :is(.rounded-xl, .rounded-2xl, .rounded-3xl, [class*="rounded-[24px]"], [class*="rounded-[32px]"], [class*="rounded-[40px]"]) {
  border-color: rgba(15, 28, 63, 0.12);
}

body[data-webleee-route] a,
body[data-webleee-route] button {
  transition: transform .2s ease, box-shadow .25s ease, background-color .25s ease, border-color .25s ease, color .25s ease;
}

body[data-webleee-route] a:hover,
body[data-webleee-route] button:hover {
  transform: translateY(-1px);
}

body[data-webleee-route] :is(a, button).webleee-brand-cta {
  border-radius: 999px !important;
  background: var(--accent-blue) !important;
  border: 1px solid var(--accent-blue) !important;
  color: var(--background) !important;
  box-shadow: 0 16px 30px rgba(0, 102, 255, 0.22) !important;
}

@media (min-width: 768px) {
  .webleee-nav-links,
  .webleee-nav-actions {
    display: inline-flex;
  }

  .webleee-menu-toggle,
  .webleee-mobile-menu {
    display: none !important;
  }

  .webleee-header.is-scrolled .webleee-nav {
    min-height: 50px;
    padding: 0 12px;
  }
}

@media (min-width: 768px) {
  body[data-webleee-route]:not([data-webleee-route="/"]) main,
  body[data-webleee-route]:not([data-webleee-route="/"]) #main {
    padding-top: 96px;
  }
}

@media (max-width: 767px) {
  .webleee-header-wrap {
    padding: 0 12px;
  }

  body,
  html {
    overflow-x: clip;
  }

  body[data-webleee-route] main :is([class*="grid-cols-2"], [class*="grid-cols-3"], [class*="grid-cols-4"]) {
    grid-template-columns: 1fr !important;
  }

  body[data-webleee-route] main :is(.flex-row, [class*="md:flex-row"], [class*="lg:flex-row"]) {
    flex-direction: column !important;
  }

  body[data-webleee-route] :is(.sticky, .hero-sticky, .webleee-time-sticky, .webleee-hero-sequence-sticky) {
    position: static !important;
    top: auto !important;
  }

  body[data-webleee-route] main :is(button, .webleee-btn) {
    max-width: 100%;
  }

  .webleee-footer {
    padding: 44px 18px 18px;
    gap: 16px;
  }

  .webleee-footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .webleee-footer-brand h3 {
    font-size: 26px;
  }

  .webleee-footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .webleee-nav {
    gap: 12px;
    min-height: 54px;
    padding: 0 14px;
  }

  .webleee-mobile-menu {
    padding: 0 14px;
  }

  .webleee-header.is-open .webleee-mobile-menu {
    padding: 0 14px 14px;
  }

  .webleee-mobile-menu-inner {
    max-height: calc(100dvh - 90px);
  }
}

/* Keep universal footer text readable against dark footer background */
#webleee-footer-slot .webleee-footer,
#webleee-footer-slot .webleee-footer *:not(.webleee-btn) {
  color: #ffffff !important;
}

/* Universal blue CTA normalization: match homepage hero button color + typography */
body[data-webleee-route] :is(
  a,
  button,
  input[type="submit"],
  input[type="button"],
  .webleee-btn,
  .webleee-brand-cta,
  .webleee-estimator-cta
):is(
  .webleee-btn--primary,
  .bg-primary,
  .bg-primary-container,
  [class*="bg-brand-blue"],
  [class*="bg-[#0252FF]"],
  [class*="bg-[#0066FF]"],
  [class*="bg-[#0066ff]"],
  [style*="background:#0066ff"],
  [style*="background-color:#0066ff"],
  [style*="background: #0066ff"],
  [style*="background-color: #0066ff"]
) {
  background: #0066ff !important;
  border-color: #0066ff !important;
  color: #ffffff !important;
  font-family: "Figtree", sans-serif !important;
  font-weight: 700 !important;
}

body[data-webleee-route] :is(
  a,
  button,
  input[type="submit"],
  input[type="button"],
  .webleee-btn,
  .webleee-brand-cta,
  .webleee-estimator-cta
):is(
  .webleee-btn--primary,
  .bg-primary,
  .bg-primary-container,
  [class*="bg-brand-blue"],
  [class*="bg-[#0252FF]"],
  [class*="bg-[#0066FF]"],
  [class*="bg-[#0066ff]"],
  [style*="background:#0066ff"],
  [style*="background-color:#0066ff"],
  [style*="background: #0066ff"],
  [style*="background-color: #0066ff"]
) :is(span, strong, em, small, div) {
  color: #ffffff !important;
  font-family: "Figtree", sans-serif !important;
  font-weight: 700 !important;
}
