/* ================================================================
   JESSY SAFETY INVISIBLE GRILLS
   Homepage Styles — home.css
   ================================================================ */

/* ── Ticker ─────────────────────────────────────────────────────── */
.ticker-wrap {
  background: var(--navy);
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ticker-track {
  display: inline-flex;
  animation: ticker 30s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  padding: 0 2rem;
}
.ticker-item span:last-child {
  width: 4px; height: 4px;
  background: var(--blue-bright);
  border-radius: 50%;
  display: inline-block;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── HERO ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  padding-top: var(--header-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero_bg.jpg') center/cover no-repeat;
  transform: scale(1.05);
  animation: hero-zoom 12s ease-in-out infinite alternate;
}
@keyframes hero-zoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,27,62,.88) 0%,
    rgba(21,101,192,.55) 60%,
    rgba(13,27,62,.75) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 5rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ── Hero Content ───────────────────────────────────────────────── */
.hero-content { max-width: 580px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
  border-radius: var(--r-full);
  padding: 7px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: #4ADE80;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

.hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero-heading .accent { color: var(--blue-bright); }
.hero-heading .light  { color: rgba(255,255,255,.85); font-size: 0.7em; font-weight: 600; }

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,.72);
}
.hero-trust-item span:first-child {
  width: 20px; height: 20px;
  background: rgba(33,150,243,.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--blue-bright);
  flex-shrink: 0;
}

/* ── Hero Visual ────────────────────────────────────────────────── */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-card-float {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--r-xl);
  padding: 2rem;
  max-width: 360px;
  width: 100%;
}
.hero-card-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.hero-feature-list { display: flex; flex-direction: column; gap: 0.85rem; }
.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}
.hero-feature-check {
  width: 22px; height: 22px;
  background: rgba(33,150,243,.3);
  border: 1px solid var(--blue-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--blue-bright);
  flex-shrink: 0;
}
.hero-card-cta {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-card-cta a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue-bright);
  transition: gap var(--tf);
}
.hero-card-cta a:hover { gap: 12px; }

/* ── Hero scroll indicator ──────────────────────────────────────── */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.5);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll-arrow { font-size: 1rem; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── INTRO SECTION ──────────────────────────────────────────────── */
.intro-section { padding: var(--section-py) 0; background: var(--white); }

.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.intro-media { position: relative; }
.intro-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
}
.intro-media-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.intro-media-badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.intro-media-badge span { font-size: 0.75rem; color: rgba(255,255,255,.65); }

.intro-content {}
.intro-content .checklist { margin-bottom: 2rem; margin-top: 1.5rem; }

/* ── APPLICATIONS SECTION ───────────────────────────────────────── */
.apps-section { padding: var(--section-py) 0; background: var(--grey-50); }

.apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.app-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  group: true;
}
.app-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.app-card:hover img { transform: scale(1.07); }
.app-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,62,.85) 0%, rgba(13,27,62,.15) 50%, transparent 100%);
  transition: all var(--t);
}
.app-card:hover .app-card-overlay { background: linear-gradient(to top, rgba(13,27,62,.92) 0%, rgba(21,101,192,.3) 60%, transparent 100%); }
.app-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}
.app-card-body h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.app-card-body p {
  font-size: 0.82rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 0.75rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.app-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue-bright);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--t);
}
.app-card:hover .app-card-link { opacity: 1; transform: translateY(0); }

/* ── WHY SECTION ────────────────────────────────────────────────── */
.why-section { padding: var(--section-py) 0; background: var(--white); }

.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-media img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
}
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
.why-feature {
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-md);
  padding: 1.25rem;
  transition: all var(--t);
}
.why-feature:hover { border-color: var(--blue); background: var(--sky); transform: translateY(-2px); }
.why-feature-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.why-feature h4 { font-size: 0.9rem; margin-bottom: 0.3rem; color: var(--navy); }
.why-feature p  { font-size: 0.82rem; color: var(--grey-500); margin: 0; line-height: 1.5; }

/* ── BEFORE AFTER SECTION ───────────────────────────────────────── */
.ba-section { padding: var(--section-py) 0; background: var(--grey-50); }

.ba-wrapper {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  max-width: 860px;
  margin: 0 auto;
  user-select: none;
  cursor: col-resize;
}
.ba-before,
.ba-after {
  position: relative;
}
.ba-before img,
.ba-after img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.ba-after {
  position: absolute;
  inset: 0;
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0s;
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  background: var(--white);
  box-shadow: 0 0 0 2px rgba(0,0,0,.15);
  cursor: col-resize;
  z-index: 10;
}
.ba-handle-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--navy);
}
.ba-label {
  position: absolute;
  bottom: 1rem;
  padding: 5px 14px;
  background: rgba(0,0,0,.6);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--r-full);
}
.ba-label.before { left: 1rem; }
.ba-label.after  { right: 1rem; }
.ba-caption { text-align: center; margin-top: 1.5rem; }
.ba-caption p { font-size: 0.95rem; color: var(--grey-500); font-style: italic; margin-bottom: 1.5rem; }

/* ── POSTER SECTIONS ────────────────────────────────────────────── */
.poster {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.poster-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}
.poster:hover .poster-bg { transform: scale(1.04); }
.poster-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,62,.90) 0%, rgba(13,27,62,.55) 100%);
}
.poster.overlay-right .poster-overlay {
  background: linear-gradient(-135deg, rgba(13,27,62,.92) 0%, rgba(13,27,62,.45) 100%);
}
.poster-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}
.poster-content .eyebrow { margin-bottom: 1rem; }
.poster-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.poster-desc {
  font-size: 1rem;
  color: rgba(255,255,255,.80);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2rem;
}
.poster-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.poster-tag {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: var(--r-full);
}
.poster-right .poster-content { margin-left: auto; text-align: right; }
.poster-right .poster-desc { margin-left: auto; }
.poster-right .poster-services { justify-content: flex-end; }

/* ── SERVICES GRID (homepage) ───────────────────────────────────── */
.services-section { padding: var(--section-py) 0; background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1.5rem;
}

/* Featured card (invisible grills) — spans 2 cols */
.service-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
  transition: all var(--t);
  display: flex;
  flex-direction: column;
}
.service-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-5px); }
.service-card.featured {
  grid-column: span 2;
}
.service-card-media { position: relative; overflow: hidden; }
.service-card-media img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-card:not(.featured) .service-card-media img { height: 220px; }
.service-card.featured .service-card-media img { height: 340px; }
.service-card:hover .service-card-media img { transform: scale(1.06); }
.service-card-media-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--blue);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-full);
}
.service-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card.featured .service-card-body { padding: 2rem; }
.service-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--navy);
}
.service-card.featured .service-card-body h3 { font-size: 1.4rem; }
.service-card-body p {
  font-size: 0.88rem;
  color: var(--grey-500);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.25rem;
}
.service-card.featured .service-card-body p { font-size: 0.95rem; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: gap var(--tf);
  margin-top: auto;
}
.service-card-link:hover { gap: 12px; color: var(--navy); }

/* ── HOW IT WORKS ───────────────────────────────────────────────── */
.how-section { padding: var(--section-py) 0; background: var(--navy); }
.how-section .section-header .section-title { color: var(--white); }
.how-section .section-header .section-lead { color: rgba(255,255,255,.72); }

/* ── GALLERY PREVIEW ────────────────────────────────────────────── */
.gallery-preview { padding: var(--section-py) 0; background: var(--grey-50); }

.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: var(--r-full);
  border: 1px solid var(--grey-200);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--grey-700);
  cursor: pointer;
  transition: all var(--t);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,62,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t);
  color: var(--white);
  font-size: 1.5rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-cta { text-align: center; margin-top: 2.5rem; }

/* ── ABOUT PREVIEW ──────────────────────────────────────────────── */
.about-preview { padding: var(--section-py) 0; background: var(--white); }
.about-preview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-preview-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
}

/* ── TRUST SECTION ──────────────────────────────────────────────── */
.trust-section { padding: var(--section-py) 0; background: var(--sky); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.trust-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--t);
  border: 1px solid var(--sky-dark);
}
.trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue); }
.trust-icon {
  width: 60px; height: 60px;
  background: var(--sky);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.25rem;
}
.trust-card h4 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--navy); }
.trust-card p  { font-size: 0.85rem; color: var(--grey-500); margin: 0; line-height: 1.6; }

/* ── TESTIMONIALS ───────────────────────────────────────────────── */
.testimonials-section { padding: var(--section-py) 0; background: var(--white); }
.testimonials-inner { max-width: 760px; margin: 0 auto; }

/* ── FAQ SECTION ────────────────────────────────────────────────── */
.faq-section { padding: var(--section-py) 0; background: var(--grey-50); }
.faq-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.faq-tab {
  padding: 8px 20px;
  border-radius: var(--r-full);
  border: 1px solid var(--grey-200);
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--grey-700);
  cursor: pointer;
  transition: all var(--t);
}
.faq-tab.active, .faq-tab:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }
.faq-content { max-width: 800px; margin: 0 auto; }
.faq-group { display: none; }
.faq-group.active { display: flex; flex-direction: column; gap: 0.75rem; }

/* ── FINAL CTA ──────────────────────────────────────────────────── */
.final-cta {
  padding: 6rem 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/balcony_grill.jpg') center/cover no-repeat;
  opacity: 0.08;
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 1rem; }
.final-cta p  { color: rgba(255,255,255,.78); font-size: 1.05rem; max-width: 560px; margin: 0 auto 2.5rem; }
.final-cta .btn-group { justify-content: center; }

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { display: none; }
  .hero-inner { padding: 4rem 1.5rem; min-height: auto; }
  .hero { min-height: 90vh; }

  .intro-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .intro-media img { height: 340px; }
  .intro-media-badge { bottom: 1rem; right: 1rem; }

  .apps-grid { grid-template-columns: 1fr 1fr; }

  .why-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-media img { height: 340px; }
  .why-features { grid-template-columns: 1fr 1fr; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card.featured { grid-column: span 2; }

  .trust-grid { grid-template-columns: 1fr 1fr; }

  .about-preview-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-preview-media img { height: 340px; }

  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .hero { min-height: 100svh; }
  .hero-heading { font-size: 2.2rem; }
  .hero-trust { display: none; }

  .apps-grid { grid-template-columns: 1fr 1fr; }
  .app-card img { height: 220px; }
  .app-card-link { opacity: 1; transform: none; }

  .why-features { grid-template-columns: 1fr; }

  .ba-before img, .ba-after img { height: 300px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card.featured { grid-column: span 1; }
  .service-card.featured .service-card-media img { height: 260px; }

  .trust-grid { grid-template-columns: 1fr 1fr; }

  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(5) { grid-column: span 1; }
  .gallery-item-overlay { opacity: 1; }

  .poster { min-height: 320px; }
  .poster-heading { font-size: 1.7rem; }
}

@media (max-width: 480px) {
  .apps-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .hero-badge { font-size: 0.68rem; }
}
