/* ==========================================================================
   ABOUT SECTION - PREMIUM SHOWCASE
   ========================================================================== */
.about {
  position: relative;
  overflow: hidden;
}

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

.about-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 0% 50%, rgba(255, 154, 46, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 60% 60% at 100% 50%, rgba(26, 109, 212, 0.03) 0%, transparent 70%);
}

.about-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.about-blob-1 {
  top: -15%;
  right: -5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 154, 46, 0.07) 0%, transparent 70%);
  animation: about-float 18s ease-in-out infinite;
}

.about-blob-2 {
  bottom: -10%;
  left: -8%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(26, 109, 212, 0.05) 0%, transparent 70%);
  animation: about-float 22s ease-in-out infinite reverse;
}

.about-blob-3 {
  top: 40%;
  left: 30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.04) 0%, transparent 70%);
  animation: about-float 14s ease-in-out infinite 3s;
}

@keyframes about-float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(20px, -25px) scale(1.03);
  }
}

/* ─── Badge ─── */
.about-badge {
  display: inline-block;
  background: rgba(255, 125, 0, 0.08);
  border: 1px solid rgba(255, 125, 0, 0.15);
  color: var(--accent);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* ─── Layout ─── */
.about-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ─── Video Full-Width Showcase ─── */
.about-video-col {
  position: relative;
  width: 100%;
  will-change: transform, opacity;
  transform-origin: center center;
}

.video-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  padding: 6px;
  box-shadow:
    0 20px 60px rgba(26, 39, 68, 0.08),
    0 4px 16px rgba(26, 39, 68, 0.04);
  max-width: 900px;
  margin: 0 auto;
}

.video-glow {
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255, 154, 46, 0.2), rgba(255, 106, 0, 0.08), rgba(26, 109, 212, 0.12));
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
}

.video-frame:hover .video-glow {
  opacity: 1;
}

.video-wrapper {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background-color: #000;
  z-index: 1;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #000;
}

/* ─── Text Card Below Video ─── */
.about-content-col {
  position: relative;
  width: 700px;
  max-width: calc(100% - 40px);
  margin: -100px auto 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 30px 35px;
  box-shadow:
    0 12px 40px rgba(26, 39, 68, 0.08),
    0 4px 16px rgba(26, 39, 68, 0.04);
  z-index: 5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ─── Scroll-reveal animations ─── */
.ac-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.ac-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.ac-reveal.revealed[data-delay="0"] { transition-delay: 0.1s; }
.ac-reveal.revealed[data-delay="1"] { transition-delay: 0.25s; }
.ac-reveal.revealed[data-delay="2"] { transition-delay: 0.4s; }
.ac-reveal.revealed[data-delay="3"] { transition-delay: 0.55s; }

.features-list-modern .ac-reveal {
  transform: translateY(20px) scale(0.97);
}

.features-list-modern .ac-reveal.revealed {
  transform: translateY(0) scale(1);
}

.about-heading.ac-reveal {
  transform: translateY(25px);
  opacity: 0;
}

.about-heading.ac-reveal.revealed {
  transform: translateY(0);
  opacity: 1;
}

.about-buttons.ac-reveal {
  transform: translateY(20px) scale(0.95);
}

.about-buttons.ac-reveal.revealed {
  transform: translateY(0) scale(1);
}

.about-content-col:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 60px rgba(255, 106, 0, 0.10),
    0 4px 16px rgba(26, 39, 68, 0.04);
}

.about-content-col .about-heading {
  font-size: clamp(1.5rem, 2vw, 1.8rem);
  margin-bottom: 12px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-content-col .about-desc {
  font-size: clamp(1.15rem, 1.5vw, 1.3rem);
  margin-bottom: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.about-content-col .features-list-modern {
  gap: 10px;
  margin-bottom: 20px;
}

.about-content-col .feature-item {
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
}

.about-content-col .feature-item:hover {
  transform: translateX(6px);
}

.about-content-col .feature-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  font-size: 1.1rem;
  border-radius: 10px;
}

.about-content-col .feature-text h4 {
  font-size: 1.25rem;
}

.about-content-col .feature-text p {
  font-size: 1.1rem;
}

.about-content-col .about-buttons {
  gap: 10px;
}

.about-content-col .about-btn {
  padding: 10px 22px;
  font-size: 1.25rem;
}

/* ─── Gradient line below video ─── */
.about-row::after {
  content: '';
  display: block;
  width: 80%;
  max-width: 600px;
  height: 2px;
  margin: 40px auto 0;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}

.about-heading {
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  color: var(--text-primary);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 18px;
  letter-spacing: -0.015em;
}

.about-desc {
  font-size: clamp(1.35rem, 1.1vw, 1.5rem);
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 28px;
}

/* ─── Features ─── */
.features-list-modern {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(26, 109, 212, 0.05);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-item:hover {
  background: #ffffff;
  border-color: rgba(255, 125, 0, 0.1);
  box-shadow: 0 8px 24px rgba(26, 39, 68, 0.05);
  transform: translateX(8px);
}

.feature-item:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(255, 125, 0, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  transition: all 0.4s ease;
}

.feature-item:hover .feature-icon {
  background: var(--accent-gradient);
  color: #fff;
  transform: scale(1.05) rotate(-5deg);
}

.feature-text h4 {
  font-size: 1.5rem;
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 3px;
}

.feature-text p {
  font-size: 1.3rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* ─── Buttons ─── */
.about-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-title);
  font-size: 1.45rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  border: none;
}

.about-btn-outline {
  background: #ffffff;
  border: 1.5px solid rgba(26, 109, 212, 0.12);
  color: var(--text-primary);
  box-shadow: 0 4px 12px rgba(26, 39, 68, 0.02);
}

.about-btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 106, 0, 0.1);
}

.about-btn-outline i {
  transition: transform 0.3s ease;
}

.about-btn-outline:hover i {
  transform: translateX(4px);
}

/* ─── "Selanjutnya tentang kami" prominent CTA ─── */
#btn-about-more {
  background: var(--accent-gradient);
  color: #ffffff;
  font-weight: 700;
  gap: 14px;
  padding: 16px 36px;
  box-shadow: 0 8px 28px var(--accent-glow);
  position: relative;
  overflow: hidden;
  border: none;
  z-index: 1;
}

#btn-about-more::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  z-index: -1;
}

#btn-about-more::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: skewX(-20deg);
  z-index: -1;
  animation: about-btn-shine 3s ease-in-out infinite;
}

@keyframes about-btn-shine {
  0% { left: -75%; }
  30% { left: 125%; }
  100% { left: 125%; }
}

#btn-about-more i {
  font-size: 1.15rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  animation: about-btn-arrow 2s ease-in-out infinite;
}

@keyframes about-btn-arrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

#btn-about-more:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(255, 106, 0, 0.35);
}

#btn-about-more:hover i {
  animation: none;
  transform: translateX(10px) scale(1.2);
}

#btn-about-more:active {
  transform: translateY(-1px);
}

.about-btn-primary {
  background: var(--accent-blue-gradient);
  color: #ffffff;
  box-shadow: 0 6px 20px var(--accent-blue-glow);
}

.about-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px var(--accent-blue-glow);
}

/* ==========================================================================
   STATS SECTION - WAVE CARDS (RESTORED SHAPES)
   ========================================================================== */
.stats-section {
  position: relative;
  padding: 50px 0 80px;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--bg-tertiary);
  z-index: 0;
  opacity: 0.5;
}

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

.stats-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}

.stats-blob-1 {
  top: -20%;
  right: -5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 154, 46, 0.06) 0%, transparent 70%);
  animation: stats-float 15s ease-in-out infinite;
}

.stats-blob-2 {
  bottom: -10%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(26, 109, 212, 0.05) 0%, transparent 70%);
  animation: stats-float 18s ease-in-out infinite reverse;
}

@keyframes stats-float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(20px, -20px) scale(1.03);
  }
}

/* ─── Grid ─── */
.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ─── Card ─── */
.stat-card {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  padding: 28px 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(26, 39, 68, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  animation: floatingWave 6s ease-in-out infinite;
}

.stat-card:nth-child(1) {
  animation-delay: 0s;
  border-radius: 40px 10px 40px 10px;
}

.stat-card:nth-child(1):hover {
  border-radius: 30px 20px 30px 20px;
}

.stat-card:nth-child(2) {
  animation-delay: 1.5s;
  border-radius: 10px 40px 10px 40px;
}

.stat-card:nth-child(2):hover {
  border-radius: 20px 30px 20px 30px;
}

.stat-card:nth-child(3) {
  animation-delay: 3s;
  border-radius: 40px 10px 40px 10px;
}

.stat-card:nth-child(3):hover {
  border-radius: 30px 20px 30px 20px;
}

.stat-card:nth-child(4) {
  animation-delay: 4.5s;
  border-radius: 10px 40px 10px 40px;
}

.stat-card:nth-child(4):hover {
  border-radius: 20px 30px 20px 30px;
}

.stat-card * {
  position: relative;
  z-index: 2;
}

/* Wavy rising background shape */
.stat-card::before {
  content: '';
  position: absolute;
  left: -50%;
  bottom: -155%;
  width: 200%;
  height: 200%;
  border-radius: 42%;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
  transform: rotate(0deg);
  pointer-events: none;
}

.stat-card:hover {
  animation: none;
  transform: translateY(-16px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 40px rgba(26, 39, 68, 0.08);
}

.stat-card:hover::before {
  bottom: -35%;
  transform: rotate(180deg);
}

/* Color-coded waves */
.stat-card:nth-child(1):hover::before {
  background: linear-gradient(135deg, rgba(255, 125, 0, 0.08) 0%, rgba(255, 159, 28, 0.15) 100%);
}

.stat-card:nth-child(1):hover {
  border-color: rgba(255, 125, 0, 0.2);
}

.stat-card:nth-child(2):hover::before {
  background: linear-gradient(135deg, rgba(26, 109, 212, 0.08) 0%, rgba(59, 141, 232, 0.15) 100%);
}

.stat-card:nth-child(2):hover {
  border-color: rgba(26, 109, 212, 0.2);
}

.stat-card:nth-child(3):hover::before {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(52, 211, 153, 0.15) 100%);
}

.stat-card:nth-child(3):hover {
  border-color: rgba(16, 185, 129, 0.2);
}

.stat-card:nth-child(4):hover::before {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(251, 191, 36, 0.15) 100%);
}

.stat-card:nth-child(4):hover {
  border-color: rgba(245, 158, 11, 0.2);
}

/* ─── Icon ─── */
.stat-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 14px;
  background: rgba(255, 125, 0, 0.08);
  color: var(--accent);
  transition: all 0.4s ease;
}

.stat-card:nth-child(2) .stat-icon-box {
  background: rgba(26, 109, 212, 0.08);
  color: var(--accent-blue);
}

.stat-card:nth-child(3) .stat-icon-box {
  background: rgba(16, 185, 129, 0.08);
  color: var(--accent-green);
}

.stat-card:nth-child(4) .stat-icon-box {
  background: rgba(245, 158, 11, 0.08);
  color: var(--accent-amber);
}

.stat-card:hover .stat-icon-box {
  transform: scale(1.08) rotate(-5deg);
}

.stat-card:nth-child(1):hover .stat-icon-box {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 6px 16px var(--accent-glow);
}

.stat-card:nth-child(2):hover .stat-icon-box {
  background: var(--accent-blue-gradient);
  color: #fff;
  box-shadow: 0 6px 16px var(--accent-blue-glow);
}

.stat-card:nth-child(3):hover .stat-icon-box {
  background: linear-gradient(135deg, var(--accent-green), var(--accent-green-dark));
  color: #fff;
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.3);
}

.stat-card:nth-child(4):hover .stat-icon-box {
  background: linear-gradient(135deg, var(--accent-amber), var(--accent-amber-dark));
  color: #fff;
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.3);
}

/* ─── Number ─── */
.stat-number-wrap {
  display: flex;
  align-items: flex-start;
  margin-bottom: 4px;
}

.stat-number-wrap h3 {
  font-size: clamp(2.4rem, 3.5vw, 3.2rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.plus-sign {
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-left: 2px;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
  line-height: 1.4;
  margin: 0;
}

/* ─── Floating Wave Animation ─── */
@keyframes floatingWave {

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

  50% {
    transform: translateY(-35px);
  }
}

/* ==========================================================================
   VIDEO PLAYER CONTROLS
   ========================================================================== */
.video-play-btn,
.video-fullscreen-btn,
.video-sound-btn {
  position: absolute;
  z-index: 30;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-wrapper:hover .video-play-btn,
.video-wrapper:hover .video-fullscreen-btn,
.video-wrapper:hover .video-sound-btn {
  opacity: 1;
  pointer-events: auto;
}

.video-wrapper.paused .video-play-btn {
  opacity: 1;
  pointer-events: auto;
}

.video-sound-btn {
  opacity: 1;
  pointer-events: auto;
}

.video-overlay {
  pointer-events: none;
}

.video-play-btn {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(3, 10, 22, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.4rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.video-play-btn:hover {
  background: var(--accent-gradient);
  border-color: transparent;
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 10px 30px var(--accent-glow);
}

.video-fullscreen-btn {
  top: 16px;
  right: 16px;
  background: rgba(3, 10, 22, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.video-fullscreen-btn:hover {
  background: var(--accent-gradient);
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 8px 20px var(--accent-glow);
}

/* ─── Sound Toggle ─── */
.video-sound-btn {
  bottom: 16px;
  right: 16px;
  background: rgba(3, 10, 22, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 38px;
  height: 38px;
  border-radius: 10px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.video-sound-btn:hover {
  background: var(--accent-gradient);
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 8px 20px var(--accent-glow);
}

.video-sound-btn.muted {
  color: rgba(255, 255, 255, 0.5);
}

.video-sound-btn.muted i::before {
  content: '\f6a9';
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .about-content-col {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
    margin: -60px auto 0;
    padding: 24px 26px;
    border-radius: 16px;
  }

  .about-content-col .about-heading {
    font-size: 1.5rem;
  }

  .about-content-col .about-desc {
    font-size: 1.2rem;
  }



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

@media (max-width: 575px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .stat-card {
    padding: 28px 20px 26px;
  }

  .about-content-col {
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
    margin-top: -40px;
    padding: 18px 16px;
    border-radius: 14px;
  }

  .about-content-col .about-heading {
    font-size: 1.25rem;
  }

  .about-content-col .about-desc {
    font-size: 1.1rem;
    margin-bottom: 14px;
  }

  .about-content-col .feature-item {
    padding: 10px 12px;
  }

  .about-content-col .feature-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    font-size: 0.95rem;
  }

  .about-content-col .feature-text h4 {
    font-size: 1.1rem;
  }

  .about-content-col .feature-text p {
    font-size: 0.95rem;
  }

  .about-content-col .about-buttons {
    flex-direction: column;
    width: 100%;
  }

  .about-content-col .about-btn {
    width: 100%;
    justify-content: center;
    padding: 10px 18px;
    font-size: 1.1rem;
  }

  .feature-item::before {
    display: none;
  }

  .video-frame {
    padding: 4px;
    border-radius: 18px;
  }

  .video-wrapper {
    border-radius: 14px;
  }
}