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

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff7f2;
  overflow-x: hidden;
}

/* =====================================================
    NAVBAR
===================================================== */

.navbar {
  position: sticky !important;
  top: 0;
  z-index: 1030;
  background: rgba(255, 107, 53, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: 0.3s ease;
}

.navbar-brand {
  font-size: 28px;
  letter-spacing: -0.5px;
}

.navbar .nav-link {
  font-size: 18px;
  margin-left: 16px;
  color: rgba(255, 255, 255, 0.95) !important;
  transition: 0.3s ease;
}

.navbar .nav-link:hover {
  color: #fff !important;
  transform: translateY(-1px);
}

/* =====================================================
   NAVBAR AUTH BUTTON
===================================================== */

.navbar-auth {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 25px;
}

.navbar-auth .btn-login,
.navbar-auth .btn-register {
  padding: 9px 20px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* LOGIN */

.navbar-auth .btn-login {
  color: #ff6633;
  background: #fff;
  border: 2px solid #fff;
}

.navbar-auth .btn-login:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-2px);
}

/* DAFTAR */

.navbar-auth .btn-register {
  color: #fff;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.9);
}

.navbar-auth .btn-register:hover {
  background: #fff;
  color: #ff6633;
  transform: translateY(-2px);
}

/* ICON */

.navbar-auth i {
  font-size: 17px;
  vertical-align: middle;
}

/* =====================================================
   MOBILE NAVBAR
===================================================== */

@media (max-width: 991px) {

  .navbar-auth {
    margin-left: 0;
    margin-top: 15px;
    padding-bottom: 10px;

    justify-content: flex-start;
  }

  .navbar-auth .btn-login,
  .navbar-auth .btn-register {
    padding: 8px 18px;
  }

}

/* =====================================================
         HERO
         ===================================================== */

.hero {
  position: relative;
  min-height: 900px;
  padding: 125px 0 0;
  color: #fff;

  background: linear-gradient(135deg, #ff6633 0%, #ff7a2d 45%, #ff9f1c 100%);

  overflow: hidden;
}

/* =====================================================
         DECORATIVE CIRCLES
         ===================================================== */

.hero-circle-one {
  position: absolute;
  width: 290px;
  height: 290px;
  top: -65px;
  left: -45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.11);
  animation: floatingCircle 8s ease-in-out infinite;
  z-index: 1;
}

.hero-circle-two {
  position: absolute;
  width: 180px;
  height: 180px;
  right: 6%;
  bottom: 130px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: floatingCircle 10s ease-in-out infinite reverse;
  z-index: 1;
}

@keyframes floatingCircle {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(25px);
  }

  100% {
    transform: translateY(0);
  }
}

/* =====================================================
         HERO CONTENT
         ===================================================== */

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-title {
  max-width: 850px;
  margin-bottom: 25px;
  font-size: clamp(48px, 5.2vw, 82px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -2px;
}

.hero-description {
  max-width: 850px;
  font-size: 25px;
  line-height: 1.55;
  margin-bottom: 30px;
}

/* =====================================================
         HERO BUTTON
         ===================================================== */

.btn-modern {
  border-radius: 30px;
  padding: 14px 30px;
  font-size: 18px;
  font-weight: 700;
  transition: 0.3s ease;
}

.btn-modern:hover {
  transform: translateY(-3px);
}

/* =====================================================
         HERO GLASS CARD
         ===================================================== */

.hero-glass {
  padding: 35px;
  min-height: 285px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 22px;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow:
    inset 0 0 30px rgba(255, 255, 255, 0.03),
    0 10px 30px rgba(0, 0, 0, 0.04);

  position: relative;
  z-index: 10;
}

.hero-glass i {
  font-size: 76px;
  margin-bottom: 15px;
}

.hero-glass h4 {
  font-size: 29px;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero-glass p {
  font-size: 20px;
  line-height: 1.5;
  margin: 0;
}

/* =====================================================
         STATS
         ===================================================== */

.hero-stats {
  position: relative;
  z-index: 20;
  margin-top: 150px;
  padding-bottom: 55px;
}

.stat-item {
  position: relative;
  text-align: center;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 75px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.35);
}

.stat-number {
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 21px;
  font-weight: 400;
}

/* =====================================================
         WAVES
         ===================================================== */

.waves-container {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 390px;
  overflow: hidden;
  pointer-events: none;
  z-index: 5;
}

.wave {
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 200%;
  height: 100%;
  max-width: none;
}

/*
         Ombak tipis belakang
      */

.wave-back {
  opacity: 0.2;
  animation: waveMoveBack 18s linear infinite;
}

/*
         Ombak tengah
      */

.wave-middle {
  opacity: 0.18;
  animation: waveMoveMiddle 14s linear infinite;
}

/*
         Ombak depan
      */

.wave-front {
  opacity: 0.95;
  animation: waveMoveFront 11s linear infinite;
}

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

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

@keyframes waveMoveMiddle {
  from {
    transform: translateX(-10%);
  }

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

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

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

/* =====================================================
         SECTION
         ===================================================== */

.section-title {
  font-weight: 800;
}

/* =====================================================
         CARD
         ===================================================== */

.card {
  border: none;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
}

.card:hover {
  transform: translateY(-8px);
}

.icon-lg {
  font-size: 48px;
  color: #ff6b35;
}

/* =====================================================
         GLASS
         ===================================================== */

.glass {
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
}

/* =====================================================
         REVEAL
         ===================================================== */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
         PRICING
         ===================================================== */

.pricing-card {
  background: #fff;
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
}

.badge-popular {
  display: inline-block;
  background: #ff9f1c;
  color: #fff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
}

/* Testimoni */

.testimonial {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  height: 100%;
  transition: 0.35s ease;
}

.testimonial:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-img {
  width: 85px;
  height: 85px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #ff9f1c;
  margin-bottom: 18px;
}

.testimonial-stars {
  color: #ff9f1c;
  font-size: 18px;
  margin-bottom: 15px;
}

.testimonial-text {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-name {
  font-weight: 700;
  margin-bottom: 3px;
}

.testimonial-role {
  color: #888;
  font-size: 14px;
}

/* Jarak antar card */
.testimonial-row {
  padding: 10px 5px 20px;
}

/* Carousel indicator */
#testi .carousel-indicators {
  bottom: -45px;
}

#testi .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ff6b35;
}

/* Tombol carousel */
#testi .carousel-control-prev,
#testi .carousel-control-next {
  width: 45px;
  height: 45px;
  top: 50%;
  transform: translateY(-50%);
  background: #ff6b35;
  border-radius: 50%;
  opacity: 1;
}

#testi .carousel-control-prev {
  left: -55px;
}

#testi .carousel-control-next {
  right: -55px;
}

#testi .carousel-control-prev:hover,
#testi .carousel-control-next:hover {
  background: #ff5722;
}

/* =====================================================
   RESPONSIVE TESTIMONIAL
   ===================================================== */

@media (max-width: 991px) {
  #testi .carousel-control-prev {
    left: -15px;
  }

  #testi .carousel-control-next {
    right: -15px;
  }
}

@media (max-width: 767px) {
  .testimonial {
    padding: 25px;
  }

  .testimonial-img {
    width: 75px;
    height: 75px;
  }

  #testi .carousel-control-prev,
  #testi .carousel-control-next {
    display: none;
  }
}

/* =====================================================
         WHATSAPP
         ===================================================== */

.chat-float {
  position: fixed;
  right: 22px;
  bottom: 22px;

  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  font-size: 30px;

  background: #25d366;
  color: #fff;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);

  z-index: 9999;

  text-decoration: none;

  transition: 0.3s ease;
}

.chat-float:hover {
  color: #fff;
  transform: scale(1.08);
}

/* =====================================================
   KONTAK
   ===================================================== */

.contact-section {
  position: relative;
  overflow: hidden;
  background: #fff;
}

/* Dekorasi lingkaran */
.contact-section::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  top: -120px;
  left: -100px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.07);
}

.contact-section::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -90px;
  bottom: -100px;
  border-radius: 50%;
  background: rgba(255, 159, 28, 0.08);
}

.contact-wrapper {
  position: relative;
  z-index: 2;

  padding: 60px;
  border-radius: 30px;

  background: linear-gradient(135deg, #fff7f2 0%, #ffffff 55%, #fff4e8 100%);

  border: 1px solid rgba(255, 107, 53, 0.12);

  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.1);
}

/* Judul */
.contact-title {
  font-size: 42px;
  font-weight: 800;
  color: #222;
  margin-bottom: 15px;
}

.contact-description {
  max-width: 650px;
  margin: 0 auto 35px;
  color: #666;
  font-size: 17px;
  line-height: 1.7;
}

/* =====================================================
   CONTACT INFO
   ===================================================== */

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;

  padding: 18px 20px;

  background: #fff;
  border-radius: 16px;

  border: 1px solid rgba(0, 0, 0, 0.05);

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);

  transition: 0.3s ease;
}

.contact-item:hover {
  transform: translateX(7px);
  border-color: rgba(255, 107, 53, 0.2);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.08);
}

.contact-icon {
  flex-shrink: 0;

  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background: linear-gradient(135deg, #ff6633, #ff9f1c);

  color: #fff;

  font-size: 25px;
}

.contact-item h6 {
  margin: 0 0 4px;
  font-weight: 700;
  color: #222;
}

.contact-item p {
  margin: 0;
  color: #777;
  font-size: 14px;
}

/* =====================================================
   CONTACT CTA
   ===================================================== */

.contact-cta {
  padding: 35px;

  background: linear-gradient(135deg, #ff6633, #ff9f1c);

  border-radius: 24px;

  color: #fff;

  text-align: center;

  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.22);
}

.contact-cta-icon {
  width: 70px;
  height: 70px;

  margin: 0 auto 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.18);

  font-size: 35px;
}

.contact-cta h4 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-cta p {
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.contact-cta .btn {
  background: #fff;
  color: #ff6633;
  border: none;
}

.contact-cta .btn:hover {
  background: #fff;
  color: #ff5722;
}

/* =====================================================
   PROGRAM BELAJAR / PRICING
   ===================================================== */

.program-section {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.program-section::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  top: -120px;
  right: -80px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.06);
}

.program-section::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  bottom: -80px;
  left: -70px;
  border-radius: 50%;
  background: rgba(255, 159, 28, 0.06);
}

.program-section .container {
  position: relative;
  z-index: 2;
}

/* =====================================================
   PROGRAM CARD
   ===================================================== */

.program-card {
  position: relative;
  height: 100%;
  padding: 35px 30px;

  background: #fff;

  border-radius: 24px;

  border: 1px solid #f0f0f0;

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);

  transition: all 0.35s ease;

  overflow: hidden;
}

.program-card:hover {
  transform: translateY(-10px);

  border-color: rgba(255, 107, 53, 0.25);

  box-shadow: 0 20px 45px rgba(255, 107, 53, 0.12);
}

/* Card Popular */

.program-card.popular {
  border: 2px solid #ff6b35;

  transform: translateY(-8px);
}

.program-card.popular:hover {
  transform: translateY(-15px);
}

/* =====================================================
   PROGRAM ICON
   ===================================================== */

.program-icon {
  width: 65px;
  height: 65px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 22px;

  border-radius: 18px;

  background: linear-gradient(135deg, #ff6633, #ff9f1c);

  color: #fff;

  font-size: 32px;

  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

/* =====================================================
   PROGRAM BADGE
   ===================================================== */

.program-badge {
  position: absolute;

  top: 20px;
  right: 20px;

  padding: 6px 13px;

  border-radius: 30px;

  background: #fff0e8;

  color: #ff6633;

  font-size: 12px;

  font-weight: 700;

  text-transform: uppercase;
}

/* =====================================================
   PROGRAM TITLE
   ===================================================== */

.program-card h4 {
  font-size: 24px;
  font-weight: 800;

  margin-bottom: 10px;

  color: #222;
}

.program-description {
  color: #777;

  font-size: 15px;

  line-height: 1.6;

  min-height: 72px;
}

/* =====================================================
   PRICE
   ===================================================== */

.program-price {
  margin: 22px 0;

  padding: 18px 0;

  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.program-price small {
  color: #888;
  font-size: 13px;
}

.program-price strong {
  display: block;

  margin-top: 3px;

  font-size: 32px;

  font-weight: 800;

  color: #ff6633;
}

.program-price span {
  font-size: 14px;
  color: #888;
}

/* =====================================================
   FEATURE LIST
   ===================================================== */

.program-features {
  padding: 0;

  margin: 0 0 25px;

  list-style: none;

  text-align: left;
}

.program-features li {
  display: flex;

  align-items: flex-start;

  gap: 10px;

  margin-bottom: 12px;

  color: #555;

  font-size: 14px;

  line-height: 1.5;
}

.program-features li i {
  flex-shrink: 0;

  margin-top: 2px;

  color: #ff6b35;

  font-size: 18px;
}

/* =====================================================
   PROGRAM BUTTON
   ===================================================== */

.program-btn {
  width: 100%;

  border-radius: 30px;

  padding: 13px 20px;

  font-weight: 700;

  transition: 0.3s ease;
}

.program-btn:hover {
  transform: translateY(-2px);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 991px) {
  .program-card.popular {
    transform: none;
  }

  .program-card.popular:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 767px) {
  .program-card {
    padding: 30px 25px;
  }

  .program-description {
    min-height: auto;
  }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 767px) {
  .contact-wrapper {
    padding: 35px 20px;
    border-radius: 24px;
  }

  .contact-title {
    font-size: 32px;
  }

  .contact-description {
    font-size: 15px;
  }

  .contact-cta {
    padding: 30px 20px;
  }
}

/* =====================================================
   KEUNGGULAN
   ===================================================== */

.feature-card {
  position: relative;
  height: 100%;

  padding: 30px 25px;

  background: #fff;

  border: 1px solid rgba(0, 0, 0, 0.06);

  border-radius: 22px;

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);

  transition: all 0.35s ease;

  overflow: hidden;
}

.feature-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background: linear-gradient(90deg, #ff6633, #ff9f1c);

  transform: scaleX(0);

  transform-origin: left;

  transition: 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-8px);

  border-color: rgba(255, 107, 53, 0.15);

  box-shadow: 0 18px 40px rgba(255, 107, 53, 0.1);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

/* =====================================================
   ICON
   ===================================================== */

.feature-icon {
  width: 65px;
  height: 65px;

  margin: 0 auto 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  background: rgba(255, 107, 53, 0.1);

  color: #ff6633;

  font-size: 32px;

  transition: all 0.35s ease;
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, #ff6633, #ff9f1c);

  color: #fff;

  transform: scale(1.08) rotate(-3deg);
}

/* =====================================================
   TITLE
   ===================================================== */

.feature-card h5 {
  font-size: 19px;

  font-weight: 800;

  color: #222;

  margin-bottom: 10px;
}

/* =====================================================
   DESCRIPTION
   ===================================================== */

.feature-card p {
  margin: 0;

  color: #777;

  font-size: 14px;

  line-height: 1.7;
}

/* =====================================================
   LABEL ONLINE / OFFLINE
   ===================================================== */

.learning-mode {
  display: flex;

  justify-content: center;

  gap: 7px;

  margin-top: 18px;

  flex-wrap: wrap;
}

.learning-mode span {
  display: inline-flex;

  align-items: center;

  gap: 5px;

  padding: 5px 10px;

  border-radius: 20px;

  background: #fff5ef;

  color: #ff6633;

  font-size: 11px;

  font-weight: 700;
}

/* =====================================================
   HEADER DESCRIPTION
   ===================================================== */

.feature-description {
  max-width: 680px;

  margin: -25px auto 45px;

  color: #777;

  line-height: 1.7;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 767px) {
  .feature-card {
    padding: 28px 22px;
  }

  .feature-description {
    margin-bottom: 30px;
  }
}

/* =====================================================
         FOOTER
         ===================================================== */

.footer {
  position: relative;
  overflow: hidden;

  background: linear-gradient(135deg, #1f1f1f, #2f2f2f);

  color: #fff;
}

.footer::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: rgba(255, 107, 53, 0.18);
  border-radius: 50%;
}

.footer::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 220px;
  height: 220px;
  background: rgba(255, 159, 28, 0.12);
  border-radius: 50%;
}

.footer-links a {
  display: block;
  color: #ddd;
  text-decoration: none;
  margin: 6px 0;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ff9f1c;
  transform: translateX(5px);
}

/* =====================================================
         SOCIAL
         ===================================================== */

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;

  margin-right: 8px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);

  color: #fff;

  font-size: 18px;

  text-decoration: none;

  transition: 0.3s;
}

.social-icons a:hover {
  background: #ff6b35;
  transform: translateY(-4px);
}

/* =====================================================
         LOADER
         ===================================================== */

.loader {
  position: fixed;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #fff;

  z-index: 99999;
}

.spinner-grow {
  width: 4rem;
  height: 4rem;
}

/* =====================================================
         RESPONSIVE
         ===================================================== */

@media (max-width: 991px) {
  .hero {
    min-height: 1050px;
    padding-top: 90px;
  }

  .hero-title {
    font-size: 58px;
  }

  .hero-description {
    font-size: 21px;
  }

  .hero-glass {
    margin-top: 30px;
  }

  .hero-stats {
    margin-top: 100px;
  }
}

@media (max-width: 767px) {
  .navbar-brand {
    font-size: 24px;
  }

  .navbar .nav-link {
    margin-left: 0;
  }

  .hero {
    min-height: 1050px;
    padding-top: 70px;
  }

  .hero-title {
    font-size: 43px;
    letter-spacing: -1px;
  }

  .hero-description {
    font-size: 18px;
  }

  .hero-glass {
    min-height: 250px;
    padding: 25px;
  }

  .hero-glass i {
    font-size: 60px;
  }

  .hero-glass h4 {
    font-size: 24px;
  }

  .hero-glass p {
    font-size: 17px;
  }

  .waves-container {
    height: 370px;
  }

  .hero-stats {
    margin-top: 110px;
    padding-bottom: 40px;
  }

  .stat-number {
    font-size: 30px;
  }

  .stat-label {
    font-size: 15px;
  }

  .stat-item:not(:last-child)::after {
    height: 60px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 1100px;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-description {
    font-size: 17px;
  }

  .hero-stats {
    margin-top: 120px;
  }

  .stat-number {
    font-size: 25px;
  }

  .stat-label {
    font-size: 13px;
  }

  .waves-container {
    height: 400px;
  }
}

/* =====================================================
         REDUCE MOTION
         ===================================================== */

@media (prefers-reduced-motion: reduce) {
  .wave,
  .hero-circle-one,
  .hero-circle-two {
    animation: none !important;
  }
}
