:root {
  --accent: #28a745;
  --accent-dark: #1e7e34;
  --accent-soft: #e8f5ec;
  --accent-soft-2: #d4ecd9;
  --ink: #2b2f33;
  --ink-soft: #5b6168;
  --bg: #f6f8f7;
  --bg-alt: #ffffff;
  --border: #e6ebe8;
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.12);
  --radius: 14px;
  --radius-lg: 22px;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family:
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
  background-color: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  /* margin: 0; */
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--accent);
}

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

.text-accent {
  color: var(--accent) !important;
}

/* ============ TOP BAR ============ */
.topbar {
  background: var(--ink);
  color: #cfd6d2;
  font-size: 0.85rem;
  font-weight: 500;
}
.topbar .container {
  flex-direction: row;
}
.topbar-item {
  color: #e9eeec;
  transition: color 0.2s;
}
.topbar-item:hover {
  color: var(--accent);
}
.topbar-item i {
  color: var(--accent);
  margin-right: 5px;
}
.topbar-social a {
  color: #cfd6d2;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.25s;
}
.topbar-social a:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}
.topbar-follow {
  color: #9aa4a0;
  font-size: 0.8rem;
}

/* ============ NAVBAR ============ */
.bsti-navbar {
  background: var(--bg-alt);
  box-shadow: var(--shadow-sm);
  padding: 0.7rem 0;
  transition: all 0.3s ease;
}
.bsti-navbar.scrolled {
  padding: 0.4rem 0;
  box-shadow: var(--shadow-md);
}
.brand-mark {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  /* background: linear-gradient(135deg, var(--accent), var(--accent-dark)); */
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--ink);
}
.brand-sub {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #a68a19;
}
.bsti-navbar .nav-link {
  font-weight: 600;
  color: var(--ink);
  padding: 0.5rem 0.9rem !important;
  border-radius: 8px;
  transition: color 0.2s;
  position: relative;
}
.bsti-navbar .nav-link:hover,
.bsti-navbar .nav-link.active {
  color: var(--accent);
}
.bsti-navbar .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  border-radius: 3px;
  background: var(--accent);
}
.btn-enroll-nav {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  border: none;
  transition: all 0.25s;
}
.btn-enroll-nav:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  background: #f8f9fa;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(16, 185, 129, 0.08) 1px,
    transparent 0
  );
  background-size: 22px 22px;
  color: var(--ink);
  overflow: hidden;
  padding: 4rem 0 5rem;
}
.hero-glow {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.18) 0%,
    rgba(16, 185, 129, 0.06) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: #ffde59;
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #047857;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 1.4rem;
}
.hero-title {
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1px;
  color: #1a202c;
  margin-bottom: 1.4rem;
}
.hero-text {
  font-size: 1.1rem;
  max-width: 520px;
  color: #4a5568;
  margin-bottom: 2rem;
}
.hero-cta {
  margin-bottom: 2.2rem;
}
.btn-hero-primary {
  background: #10b981;
  border: 2px solid #10b981;
  color: #fff;
  border-radius: 50px;
  padding: 0.75rem 1.9rem;
  font-weight: 600;
  transition: all 0.25s;
}
.btn-hero-primary:hover {
  background: #059669;
  border-color: #059669;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(16, 185, 129, 0.35);
}
.btn-hero-secondary {
  background: #ffde59;
  border: 2px solid #048658;
  color: #048658;
  border-radius: 50px;
  padding: 0.75rem 1.9rem;
  font-weight: 600;
  transition: all 0.25s;
}
.btn-hero-secondary:hover {
  background: #10b981;
  color: #fff;
  transform: translateY(-2px);
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  border-top: 1px solid #e2e8f0;
  padding-top: 1.6rem;
  width: 100%;
}
.hero-stats > div {
  display: flex;
  flex-direction: column;
}
.hero-stats strong {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1a202c;
}
.hero-stats span {
  font-size: 0.82rem;
  color: #718096;
}

/* Hero image (split layout) */
.hero-img-col {
  position: relative;
}
.hero-img-wrap {
  position: relative;
  border-radius: 24px;
  /* overflow: visible; */
  overflow: hidden;
}
.hero-img-wrap > img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(26, 32, 44, 0.18);
  position: relative;
  z-index: 2;
}
.hero-img-blob {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.25),
    rgba(34, 197, 94, 0.12)
  );
  z-index: 1;
}
.hero-img-card {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: #fff;
  border-radius: 16px;
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  box-shadow: 0 16px 40px rgba(26, 32, 44, 0.15);
  z-index: 3;
}
.hero-img-card i {
  font-size: 1.8rem;
  color: #10b981;
}
.hero-img-card strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a202c;
  line-height: 1.2;
}
.hero-img-card span {
  font-size: 0.78rem;
  color: #718096;
}

.btn-accent {
  background: #10b981;
  border: 2px solid #10b981;
  color: #fff;
}
.btn-accent:hover {
  background: #059669;
  border-color: #059669;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(16, 185, 129, 0.35);
}

/* ============ SECTIONS ============ */
.section {
  padding: 5.5rem 0;
}
.section-alt {
  background: var(--bg-alt);
}
.section-head {
  max-width: 680px;
  margin-bottom: 3rem;
}
.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.5px;
  margin-bottom: 0.8rem;
}
.section-sub {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============ COURSE CARDS ============ */
.course-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s;
}
.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-soft-2);
}
.course-img-wrap {
  position: relative;
  height: 190px;
  overflow: hidden;
}
.course-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.course-card:hover .course-img-wrap img {
  transform: scale(1.07);
}
.course-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  letter-spacing: 0.3px;
}
.course-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.course-title {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.course-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.course-meta li {
  display: flex;
  gap: 8px;
  padding: 3px 0;
  align-items: flex-start;
}
.course-meta li i {
  color: var(--accent);
  margin-top: 4px;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.course-meta li strong {
  color: var(--ink);
  font-weight: 600;
}
.course-footer {
  margin-top: auto;
}
.btn-enroll {
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 600;
  border: none;
  border-radius: 10px;
  padding: 0.6rem 1rem;
  width: 100%;
  transition: all 0.25s;
}
.btn-enroll:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* ============ ABOUT ============ */
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.about-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.about-img-badge strong {
  color: var(--accent-dark);
  font-size: 1.2rem;
  font-weight: 800;
}
.about-img-badge span {
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.lead-text {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}
.value-card {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  height: 100%;
  transition: all 0.25s;
}
.section-alt .value-card {
  background: var(--bg);
}
.value-card:hover {
  border-color: var(--accent-soft-2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.value-card i {
  font-size: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
}
.value-card h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.2rem;
}
.value-card p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin: 0;
}

/* ============ GALLERY / VIDEO ============ */
.video-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  height: 240px;
  box-shadow: var(--shadow-sm);
}
.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.video-card:hover img {
  transform: scale(1.08);
}
.video-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.25) 60%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
}
.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(40, 167, 69, 0.5);
}
.video-card:hover .video-play {
  transform: translate(-50%, -50%) scale(1.12);
  background: #fff;
  color: var(--accent);
}
.video-card-title {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  margin: 0;
}
.video-card-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  margin: 0;
}
.social-cta {
  margin-top: 1rem;
}
.btn-social {
  font-weight: 600;
  border-radius: 50px;
  padding: 0.6rem 1.4rem;
  border: none;
  color: #fff;
  transition: all 0.25s;
}
.btn-social:hover {
  transform: translateY(-2px);
  color: #048658;
  box-shadow: var(--shadow-md);
}
.btn-youtube {
  background: #ff0000;
}
.btn-facebook {
  background: #1877f2;
}
.btn-instagram {
  background: #e1306c;
}
.btn-tiktok {
  background: #000;
}
.btn-x {
  background: #000;
  color: #fff;
}

/* ============ CONTACT ============ */
.contact-info {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
}
.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.6rem;
  align-items: flex-start;
}
.contact-item:last-child {
  margin-bottom: 0;
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.2rem;
}
.contact-item p {
  color: var(--ink-soft);
  margin: 0;
}
.contact-item a {
  color: var(--ink-soft);
}
.contact-item a:hover {
  color: var(--accent);
}
.contact-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.25s;
}
.contact-social a:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.map-wrap iframe {
  border: 0;
  width: 100%;
  height: 100%;
}
.contact-form {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.contact-form .form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.contact-form .form-control,
.contact-form .form-select {
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  border-color: var(--border);
  background: var(--bg);
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.15);
}
.form-feedback {
  padding: 0.9rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.92rem;
}
.form-feedback.success {
  background: var(--accent-soft);
  color: var(--accent-dark);
  border: 1px solid var(--accent-soft-2);
}
.form-feedback.error {
  background: #fdeaea;
  color: #c0392b;
}

/* ============ FOOTER ============ */
.bsti-footer {
  background: #1a1f1c;
  color: #b8c0bc;
}
.footer-brand .brand-name {
  color: #10b981;
}
.footer-text {
  font-size: 0.92rem;
  max-width: 320px;
  color: black;
}
.footer-title {
  color: black;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.6rem;
}
.footer-links a {
  color: black;
  font-size: 0.92rem;
  transition:
    color 0.2s,
    padding-left 0.2s;
}
.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}
.footer-contact li {
  display: flex;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: black;
  margin-bottom: 0.8rem;
  align-items: flex-start;
}
.footer-contact i {
  color: var(--accent);
  margin-top: 4px;
}
.footer-contact a {
  color: black;
}
.footer-contact a:hover {
  color: var(--accent);
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  transform: translateY(-3px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: all 0.25s;
}
.footer-social a:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: #7d8783;
}
.footer-tagline {
  color: var(--accent);
  font-weight: 600;
}

/* ============ ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1199.98px) {
  .hero-img-wrap > img {
    height: 400px;
  }
}

@media (max-width: 991.98px) {
  .bsti-navbar .navbar-nav {
    padding-top: 1rem;
  }
  .bsti-navbar .nav-link.active::after {
    display: none;
  }
  .btn-enroll-nav {
    margin-top: 0.5rem;
    width: 100%;
    text-align: center;
  }
  .hero {
    padding: 3rem 0 4rem;
  }
  .hero-img-col {
    margin-top: 2.5rem;
  }
  .hero-img-wrap > img {
    height: 380px;
  }
  .hero-img-card {
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
  }
  .hero-img-blob {
    display: none;
  }
  .section {
    padding: 4.5rem 0;
  }
}

@media (max-width: 767.98px) {
  .topbar {
    font-size: 0.78rem;
  }
  .topbar-left {
    gap: 0.8rem !important;
  }
  .topbar-follow {
    display: none;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .hero-text {
    font-size: 1rem;
  }
  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }
  .hero-stats {
    gap: 1.2rem;
    justify-content: space-between;
  }
  .hero-stats strong {
    font-size: 1.35rem;
  }
  .hero-img-wrap > img {
    height: 300px;
  }
  .section-title {
    font-size: 1.7rem;
  }
  .section-sub {
    font-size: 0.98rem;
  }
  .about-img-wrap img {
    height: 360px;
  }
  .contact-form,
  .contact-info {
    padding: 1.6rem;
  }
  .map-wrap {
    margin-top: 1.5rem !important;
  }
}

@media (max-width: 575.98px) {
  .section {
    padding: 3rem 0;
  }
  .hero {
    padding: 2.5rem 0 3rem;
  }
  .hero-title {
    font-size: 1.85rem;
    line-height: 1.15;
  }
  .hero-badge {
    font-size: 0.74rem;
    padding: 0.35rem 0.8rem;
  }
  .hero-cta .btn {
    padding: 0.65rem 1.4rem;
    font-size: 0.95rem;
  }
  .hero-stats {
    gap: 1rem;
  }
  .hero-stats strong {
    font-size: 1.2rem;
  }
  .hero-stats span {
    font-size: 0.74rem;
  }
  .hero-img-wrap > img {
    height: 240px;
    border-radius: 18px;
  }
  .hero-img-card {
    padding: 0.7rem 0.85rem;
  }
  .hero-img-card strong {
    font-size: 0.85rem;
  }
  .hero-img-card span {
    font-size: 0.7rem;
  }
  .brand-name {
    font-size: 0.92rem;
  }
  .brand-sub {
    font-size: 0.66rem;
  }
  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .eyebrow {
    font-size: 0.74rem;
  }
  .course-body {
    padding: 1.1rem;
  }
  .course-title {
    font-size: 1.02rem;
  }
  .course-meta {
    font-size: 0.82rem;
  }
  .about-img-wrap img {
    height: 280px;
  }
  .about-img-badge {
    padding: 0.75rem 0.9rem;
    bottom: 12px;
    left: 12px;
  }
  .value-card {
    padding: 0.85rem 0.95rem;
  }
  .value-card h3 {
    font-size: 0.9rem;
  }
  .value-card p {
    font-size: 0.8rem;
  }
  .video-card {
    height: 200px;
  }
  .video-play {
    width: 54px;
    height: 54px;
    font-size: 1.4rem;
  }
  .btn-social {
    padding: 0.55rem 1.1rem;
    font-size: 0.9rem;
  }
  .contact-form,
  .contact-info {
    padding: 1.3rem;
  }
  .contact-item {
    gap: 0.8rem;
    margin-bottom: 1.3rem;
  }
  .contact-icon {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }
  .footer-bottom .container {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
  }
}

@media (max-width: 360px) {
  .topbar-left {
    flex-direction: column;
    gap: 0.3rem !important;
    align-items: flex-start;
  }
  .hero-title {
    font-size: 1.65rem;
  }
  .hero-stats {
    flex-direction: column;
    gap: 0.8rem;
  }
}
/* ////////// */

@media (max-width: 768px) {
  .hero-img-wrap {
    overflow: hidden;
  }

  .hero-img-card {
    left: 50%;
    transform: translateX(-50%);
    max-width: 90%;
  }

  .hero-img-blob {
    display: none;
  }
}
