/* ============================================================
   Gavin Coleman — Independent Technology Consultant
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-subtle: #f7f8fb;
  --bg-dark: #0a0e27;
  --bg-dark-2: #0e1336;
  --text: #0a0e27;
  --text-muted: #5b6478;
  --text-light: #a8b0c3;
  --border: #e5e7eb;
  --border-dark: rgba(255, 255, 255, 0.1);
  --accent: #2563eb;
  --accent-2: #6366f1;
  --accent-gold: #f59e0b;
  --gradient-hero: linear-gradient(135deg, #0a0e27 0%, #1a1f4e 50%, #0a0e27 100%);
  --gradient-accent: linear-gradient(135deg, #2563eb 0%, #6366f1 100%);
  --gradient-cta: linear-gradient(135deg, #0a0e27 0%, #2563eb 100%);
  --shadow-sm: 0 1px 2px rgba(10, 14, 39, 0.05);
  --shadow-md: 0 4px 16px rgba(10, 14, 39, 0.08);
  --shadow-lg: 0 20px 60px rgba(10, 14, 39, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --max-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 14, 39, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 600;
}

.nav__brand-mark {
  width: 36px;
  height: 36px;
  background: var(--gradient-accent);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
}

.nav__brand-text {
  font-size: 16px;
  letter-spacing: -0.3px;
}

.nav__links {
  display: flex;
  gap: 36px;
  font-size: 14px;
  font-weight: 500;
}

.nav__links a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
}

.nav__links a:hover {
  color: #fff;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.1px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--small {
  padding: 10px 18px;
  font-size: 14px;
}

.btn--large {
  padding: 18px 34px;
  font-size: 16px;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 40px 80px;
  background: var(--gradient-hero);
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
}

.hero__blob--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #2563eb 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.hero__blob--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #6366f1 0%, transparent 70%);
  bottom: -50px;
  left: -50px;
}

.hero__inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero__title-accent {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

.hero__subtitle {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin-bottom: 40px;
}

.hero__cta {
  display: flex;
  gap: 14px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat__value {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #fff 0%, #a8b0c3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* Hero portrait */
.hero__portrait {
  position: relative;
  justify-self: end;
}

.hero__portrait-frame {
  position: relative;
  width: 380px;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: rotate(1deg);
}

.hero__portrait-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.hero__portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__badge {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: rgba(10, 14, 39, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f59e0b;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero__badge svg {
  color: #f59e0b;
}

/* ============================================================
   Logo / trust bar
   ============================================================ */
.logos {
  padding: 60px 40px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.logos__label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.logos__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.logos__item {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.2px;
}

.logos__divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border);
}

/* ============================================================
   Sections shared
   ============================================================ */
.section {
  padding: 120px 40px;
  position: relative;
}

.section--dark {
  background: var(--bg-dark);
  color: #fff;
}

.section--subtle {
  background: var(--bg-subtle);
}

.section--cta {
  background: var(--gradient-cta);
  color: #fff;
  overflow: hidden;
  padding: 140px 40px;
}

.section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section__header {
  margin-bottom: 80px;
}

.section__header--center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.eyebrow--light {
  color: #60a5fa;
}

.section__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
}

.section__title--light {
  color: #fff;
}

.section__subtitle {
  font-size: 19px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 640px;
}

.section__header--center .section__subtitle {
  margin-left: auto;
  margin-right: auto;
}

.section--dark .section__subtitle {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   About
   ============================================================ */
.about__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: start;
}

.about__photo {
  position: relative;
  position: sticky;
  top: 140px;
}

.about__photo-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  z-index: 2;
}

.about__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__photo-accent {
  position: absolute;
  top: 30px;
  left: 30px;
  right: -30px;
  bottom: -30px;
  border: 2px solid var(--accent);
  border-radius: 24px;
  z-index: 1;
}

.about__content .section__title {
  margin-bottom: 32px;
}

.about__text {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.about__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.highlight {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-subtle);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.highlight__icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: var(--gradient-accent);
  border-radius: 10px;
  color: #fff;
  display: grid;
  place-items: center;
}

.highlight__title {
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 2px;
}

.highlight__desc {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================================
   Services
   ============================================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px 32px 32px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(37, 99, 235, 0.15), transparent 40%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__num {
  position: absolute;
  top: 24px;
  right: 32px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 2px;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-accent);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  margin-bottom: 28px;
  position: relative;
}

.service-card__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  position: relative;
}

.service-card__desc {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  position: relative;
}

.service-card__list {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.service-card__list li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  padding: 6px 0 6px 20px;
  position: relative;
}

.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 10px;
  height: 1px;
  background: var(--accent-2);
}

/* ============================================================
   Case studies
   ============================================================ */
.cases__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.case-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.3);
}

.case-card__tag {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--accent);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.case-card__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.case-card__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.case-card__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.metric__value {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.metric__label {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  font-weight: 500;
}

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial__stars {
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonial__quote {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 28px;
  font-weight: 400;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.testimonial__name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}

.testimonial__role {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============================================================
   Contact / CTA
   ============================================================ */
.contact {
  text-align: center;
  position: relative;
}

.contact__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.contact__blob {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, transparent 70%);
  filter: blur(120px);
  border-radius: 50%;
}

.contact__inner {
  position: relative;
}

.contact__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.contact__title-accent {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

.contact__subtitle {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto 44px;
}

.contact__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact__direct {
  margin-top: 28px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.3px;
}

.contact__direct a {
  color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 2px;
  transition: all 0.2s ease;
}

.contact__direct a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.6);
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: #050814;
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 40px 40px;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px 40px;
  align-items: center;
}

.footer__contact {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 12px;
}

.footer__contact a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}

.footer__contact a:hover {
  color: #fff;
}

.footer__sep {
  margin: 0 12px;
  color: rgba(255, 255, 255, 0.3);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer__mark {
  width: 44px;
  height: 44px;
  background: var(--gradient-accent);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.footer__name {
  font-weight: 600;
  color: #fff;
  font-size: 16px;
}

.footer__tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

.footer__links {
  display: flex;
  gap: 32px;
  justify-content: center;
  font-size: 14px;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: #fff;
}

.footer__copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   Scroll animations
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .hero__eyebrow,
  .hero__cta {
    justify-content: center;
  }

  .hero__cta {
    justify-content: center;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__stats {
    justify-content: center;
  }

  .hero__portrait {
    justify-self: center;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about__photo {
    position: static;
    max-width: 420px;
    margin: 0 auto;
  }

  .services__grid,
  .testimonials__grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 720px) {
  .nav__links {
    display: none;
  }

  .nav__inner {
    padding: 16px 20px;
  }

  .hero {
    padding: 120px 20px 60px;
  }

  .section {
    padding: 80px 20px;
  }

  .hero__portrait-frame {
    width: 300px;
    height: 380px;
  }

  .hero__stats {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat__value {
    font-size: 28px;
  }

  .services__grid,
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

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

  .case-card__metrics {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  .footer__brand,
  .footer__links {
    justify-content: center;
  }

  .hero__badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -24px;
  }
}
