/* Page-specific refinements for Hotel. Shared components live in style.css. */

.client-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.client-logo {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  color: #475569;
  background: #fff;
  text-align: center;
  font-weight: 900;
}

.stats-strip {
  display: grid;
  gap: 35px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 0;
  background: radial-gradient(circle at 16% 18%, rgba(var(--brand-rgb), 0.55), transparent 24rem),
    radial-gradient(circle at 88% 18%, rgba(16, 185, 129, 0.38), transparent 22rem),
    #0f172a;
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.stat span {
  color: #fff;
  font-weight: 700;
}

.tour-tabs,
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  justify-content: center;
}

.tab-btn,
.filter-btn {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  color: #475569;
  background: #fff;
  font-weight: 800;
}

.tab-btn.active,
.filter-btn.active,
.tab-btn:hover,
.filter-btn:hover {
  color: #fff;
  border-color: var(--accent);
  background: var(--accent);
}

.tour-panel {
  display: none;
}

.tour-panel.active {
  display: block;
}

.slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.slide {
  display: none;
}

.slide.active {
  display: block;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.integration {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  background: #fff;
  font-weight: 900;
}

.team-card,
.milestone-card {
  overflow: hidden;
}

.team-card img,
.blog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.blog-tools {
  display: grid;
  gap: 14px;
  margin-bottom: 26px;
}

.empty-state {
  display: none;
  padding: 24px;
  text-align: center;
}

.contact-layout {
  display: grid;
  gap: 24px;
}

.office-card {
  display: grid;
  gap: 14px;
}

/* Features page module cards */
.module-card .card-body {
  display: grid;
  gap: 14px;
}

.module-card .card-body>.icon {
  margin-bottom: 2px;
}

.module-card .card-body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 0;
}

.module-card .card-body p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.module-card .check-list {
  margin-top: 4px;
}

.module-card .check-list li {
  font-size: 0.9rem;
}

/* Premium homepage sections */
.trusted-section {
  overflow: hidden;
  padding: 48px 0 24px;
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.78), rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at 50% 0%, rgba(var(--brand-rgb), 0.08), transparent 24rem);
}

.trusted-shell {
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: 28px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.trusted-copy {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
  text-align: center;
  justify-items: center;
}

.trusted-copy h2 {
  font-size: 42px;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.logo-track {
  width: max-content;
  display: flex;
  gap: 16px;
  animation: logoMarquee 28s linear infinite;
}

.logo-track:hover {
  animation-play-state: paused;
}

.hotel-logo {
  min-width: 170px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 22px;
  color: #64748b;
  background: rgba(255, 255, 255, 0.86);
  filter: grayscale(1);
  font-weight: 900;
  letter-spacing: -0.03em;
  transition: filter 200ms ease, color 200ms ease, transform 200ms ease, border-color 200ms ease;
}

.hotel-logo:hover {
  color: var(--accent);
  filter: grayscale(0);
  transform: translateY(-3px);
  border-color: rgba(var(--brand-rgb), 0.28);
}

.screenshot-grid {
  display: grid;
  gap: 32px;
}

.screenshot-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.screenshot-card .dashboard {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.screenshot-caption {
  display: grid;
  gap: 10px;
  padding: 28px;
}

.why-grid {
  display: grid;
  gap: 32px;
}

.why-card {
  display: grid;
  align-content: space-between;
  gap: 24px;
}

.success-story {
  display: grid;
  gap: 24px;
}

.story-metric {
  display: grid;
  gap: 4px;
  border-left: 3px solid var(--success);
  padding-left: 18px;
}

.story-metric strong {
  color: var(--primary);
  font-size: 2rem;
  line-height: 1;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: clamp(40px, 7vw, 80px);
  color: #fff;
  background:
    radial-gradient(circle at 16% 18%, rgba(var(--brand-rgb), 0.55), transparent 24rem),
    radial-gradient(circle at 88% 18%, rgba(16, 185, 129, 0.38), transparent 22rem),
    #0f172a;
  box-shadow: var(--shadow-strong);
}

.cta-panel h2,
.cta-panel p {
  color: #fff;
}

.cta-panel p {
  color: #cbd5e1;
}

@keyframes logoMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (min-width: 640px) {

  .client-logos,
  .integration-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .stats-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 860px) {
  .screenshot-grid {
    /* grid-template-columns: 1.25fr 0.75fr; */
    grid-template-columns: 1.5fr 0.5fr;
    align-items: stretch;
  }

  .why-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .success-story {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .blog-tools {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr) 390px;
  }
}

/* =========================================================
   FAQ Page
   ========================================================= */

/* Hero */
.faq-hero {
  background:
    radial-gradient(circle at 18% 10%, rgba(var(--brand-rgb), 0.14), transparent 26rem),
    radial-gradient(circle at 82% 6%, rgba(16, 185, 129, 0.10), transparent 24rem),
    linear-gradient(180deg, #ffffff, #f8fafc);
}

.faq-hero-inner {
  display: grid;
  gap: 24px;
  max-width: 760px;
}

.faq-hero-inner .hero-actions {
  margin-top: 8px;
}

/* Screen-reader only label */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Search bar */
.faq-search-section {
  padding: 30px 0 0;
}

.faq-search-wrap {
  display: grid;
  gap: 12px;
  max-width: 680px;
  margin: 0 auto;
}

.faq-search-inner {
  position: relative;
  display: flex;
  align-items: center;
}

.faq-search-icon {
  position: absolute;
  left: 18px;
  width: 20px;
  height: 20px;
  color: var(--muted);
  pointer-events: none;
  flex-shrink: 0;
}

.faq-search-input {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 16px 52px 16px 52px;
  color: var(--text);
  background: #fff;
  font-size: 1rem;
  font-weight: 500;
  outline: none;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.07);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.faq-search-input:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 4px rgba(var(--brand-rgb), 0.12), 0 8px 32px rgba(15, 23, 42, 0.07);
}

.faq-search-input::placeholder {
  color: var(--muted);
}

.faq-search-clear {
  position: absolute;
  right: 14px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--line);
  color: #475569;
  cursor: pointer;
  transition: background 150ms ease;
}

.faq-search-clear:hover {
  background: #cbd5e1;
}

.faq-search-clear svg {
  width: 14px;
  height: 14px;
  pointer-events: none;
}

.faq-search-count {
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  min-height: 1.4em;
}

/* Category tabs */
.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  justify-content: center;
}

.faq-tab {
  min-height: 42px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  color: #475569;
  background: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  transition: color 170ms ease, background 170ms ease, border-color 170ms ease, transform 170ms ease, box-shadow 170ms ease;
}

.faq-tab:hover {
  border-color: rgba(var(--brand-rgb), 0.36);
  color: var(--brand-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(var(--brand-rgb), 0.12);
}

.faq-tab.active {
  color: #fff;
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  box-shadow: 0 10px 28px rgba(var(--brand-rgb), 0.28);
}

/* Accordion cards */
.faq-accordion {
  display: grid;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-card {
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 4px 22px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(14px);
  overflow: hidden;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.faq-card:hover {
  border-color: rgba(var(--brand-rgb), 0.24);
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.10);
  transform: translateY(-2px);
}

.faq-card.is-open {
  border-color: rgba(var(--brand-rgb), 0.38);
  box-shadow: 0 12px 48px rgba(var(--brand-rgb), 0.12);
}

/* Question button */
.faq-card-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  padding: 22px 24px;
  background: transparent;
  text-align: left;
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: color 170ms ease;
}

.faq-card-q:hover {
  color: var(--brand-primary);
}

.faq-card.is-open .faq-card-q {
  color: var(--brand-primary);
}

/* Animated +/× icon */
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand-tint);
  position: relative;
  transition: background 220ms ease, transform 320ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--brand-primary);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 320ms cubic-bezier(0.34, 1.56, 0.64, 1), opacity 220ms ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-card.is-open .faq-icon {
  background: var(--brand-primary);
  transform: rotate(45deg);
}

.faq-card.is-open .faq-icon::before,
.faq-card.is-open .faq-icon::after {
  background: #fff;
}

/* Answer panel */
.faq-card-a {
  padding: 0 24px 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 380ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-card-a:not([hidden]) {
  max-height: 600px;
  /* fallback; JS overrides with exact scrollHeight */
}

.faq-card-a p {
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.8;
  margin: 0;
}

.faq-card-a a {
  color: var(--brand-primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Empty state */
.faq-empty {
  gap: 16px;
  justify-items: center;
  text-align: center;
  padding: 64px 24px;
  color: var(--muted);
}

/* show only when not hidden */
.faq-empty:not([hidden]) {
  display: grid;
}

.faq-empty svg {
  width: 56px;
  height: 56px;
  color: var(--line);
}

.faq-empty h3 {
  color: var(--text);
  margin: 0;
}

.faq-empty p {
  margin: 0;
}

/* FAQ main section spacing */
.faq-main-section {
  padding-top: 0;
}

/* Responsive */
@media (max-width: 640px) {
  .faq-card-q {
    padding: 18px 18px;
    font-size: 0.96rem;
  }

  .faq-card-a {
    padding: 0 18px 18px;
  }

  .faq-tabs {
    gap: 8px;
  }

  .faq-tab {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.84rem;
  }
}

.screenshot-card .dashboard .tour-dash-images img {
  height: auto;
  object-fit: cover;
  object-position: top;
}

/* Product Tour — dashboard screenshot images */
.tour-dash-images {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.tour-dash-images img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  /* box-shadow: 0 4px 24px rgba(0, 0, 0, 0.22); */
}

[data-tour-panel="mobile"] .tour-dash-images {
  padding: 20px;
  display: flex;
  justify-content: center;
}

[data-tour-panel="mobile"] .tour-dash-images img {
  width: auto;
  max-width: 280px;
  height: 520px;
  object-fit: contain;
}


/* =========================================================
   Product section — Laptop & Mobile mockups
   Pixel-scanned coordinates from actual PNG files.
   laptop.png 500x500: screen left=61 top=125 right=436 bot=374
   mobile.png 537x372: screen left=186 top=14 right=350 bot=357
   ========================================================= */

.screenshot-card {
  background: var(--soft);
  overflow: hidden;
}

/* --- Laptop mockup --- */
.sc-laptop-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.sc-laptop-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  z-index: 4;
  pointer-events: none;
  user-select: none;
  display: block;
}

.sc-laptop-screen {
  position: absolute;
  left: 12.2%;
  top: 25%;
  width: 75%;
  height: 49.8%;
  z-index: 2;
  overflow: hidden;
  border-radius: 3px;
  background: #0f172a;
}

.sc-laptop-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* --- Mobile mockup --- */
.sc-mobile-wrap {
  position: relative;
  width: 220px;
  aspect-ratio: 537 / 372;
  margin: 32px auto;
}

.sc-mobile-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  z-index: 4;
  pointer-events: none;
  user-select: none;
  display: block;
}

.sc-mobile-screen {
  position: absolute;
  left: 34.64%;
  top: 3.76%;
  width: 30.54%;
  height: 92.2%;
  z-index: 2;
  overflow: hidden;
  border-radius: 8px;
  background: #0f172a;
}

.sc-mobile-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

@media (max-width: 860px) {
  .sc-laptop-wrap { max-width: 460px; margin-inline: auto; }
  .sc-mobile-wrap { width: 180px; }
}

@media (max-width: 480px) {
  .sc-laptop-wrap { max-width: 100%; }
  .sc-mobile-wrap { width: 150px; margin: 20px auto; }
}


/* =========================================================
   Pricing Page — Hostinger-style cards
   ========================================================= */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

/* Card base */
.pcard {
  position: relative;
  border: 1.5px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(15,23,42,0.07);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.pcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(15,23,42,0.12);
}

/* Featured card */
.pcard-featured {
  border-color: var(--brand-primary);
  box-shadow: 0 16px 56px rgba(var(--brand-rgb), 0.18);
  transform: translateY(-8px);
}

.pcard-featured:hover { transform: translateY(-14px); }

/* Badge */
.pcard-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-hover));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 0 0 14px 0;
  position: absolute;
  top: 0;
  left: 0;
}

/* Card head */
.pcard-head {
  padding: 32px 28px 24px;
  border-bottom: 1px solid var(--line);
}

.pcard-featured .pcard-head { padding-top: 44px; }

.pcard-name {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 8px;
}

.pcard-desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 48px;
}

.pcard-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
}

.pcard-price .price {
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text);
}

.pcard-period {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}

.pcard-cta {
  width: 100%;
  justify-content: center;
  margin-bottom: 10px;
}

.pcard-note {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  margin: 0;
}

/* Feature list */
.pcard-features {
  list-style: none;
  margin: 0;
  padding: 20px 28px 28px;
  display: grid;
  gap: 10px;
}

.pcard-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}

.pcard-features li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}

.pcard-features li.yes::before {
  background-color: rgba(16, 185, 129, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%2310b981' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.pcard-features li.no {
  color: #94a3b8;
}

.pcard-features li.no::before {
  background-color: rgba(148,163,184,0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3 3l6 6M9 3l-6 6' stroke='%2394a3b8' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* Trust strip */
.pricing-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 48px;
  padding: 12px 0;
}

.ptrust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
}

.ptrust-item svg {
  width: 20px;
  height: 20px;
  color: var(--brand-primary);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 960px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }
  .pcard-featured { transform: none; }
  .pcard-featured:hover { transform: translateY(-6px); }
}

@media (max-width: 640px) {
  .pricing-hero { padding: 56px 0 40px; }
  .pcard-head { padding: 28px 20px 20px; }
  .pcard-features { padding: 16px 20px 24px; }
  .pcard-price .price { font-size: 2.2rem; }
  .pricing-trust { gap: 20px 32px; }
}

/* Pricing — original price + discount badge */
.pcard-original {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.88rem;
  color: var(--muted);
}

.pcard-original s {
  text-decoration: line-through;
  color: #94a3b8;
}

.pcard-discount {
  display: inline-flex;
  align-items: center;
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 0.78rem;
  font-weight: 800;
}

/* Vision / Mission bullet list */
.vm-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.vm-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

.vm-list li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-primary);
}

/* First Time Installation row */
.pcard-install {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: rgba(var(--brand-rgb), 0.06);
  border: 1px dashed rgba(var(--brand-rgb), 0.22);
  border-radius: 10px;
  padding: 8px 12px;
  margin-bottom: 16px;
  flex-wrap: nowrap;
}

.pcard-install-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-primary);
  white-space: nowrap;
}

.pcard-install-price {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.pcard-install-price s {
  color: #94a3b8;
  text-decoration: line-through;
}

.pcard-install-price strong {
  color: var(--text);
  font-weight: 800;
}

.pcard-install-price em {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 800;
  color: #059669;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 999px;
  padding: 1px 7px;
}
