.about-section {
  padding: 50px 40px;
}

.about-section .abt-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
}

.about-section .abt-container .left h2 {
  font-size: 36pt;
  line-height: 1.1;
  margin: 0;
}

.about-section .abt-container .left .purple,
.about-section .abt-container .right .purple {
  color: #7d53de;
}

.about-section .abt-container .right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
}

.about-section .abt-container .right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="about-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e0e7ff" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23e0e7ff" opacity="0.3"/><circle cx="50" cy="10" r="0.5" fill="%23e0e7ff" opacity="0.2"/><circle cx="10" cy="60" r="0.5" fill="%23e0e7ff" opacity="0.2"/><circle cx="90" cy="40" r="0.5" fill="%23e0e7ff" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23about-grain)"/></svg>');
  pointer-events: none;
}

.about-section .abt-container .right h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #4a5568;
  margin: 0;
  position: relative;
  z-index: 1;
}

.about-section .abt-container .right .about-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin: 30px 0;
  position: relative;
  z-index: 1;
}

.about-section .abt-container .right .about-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.8);
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  min-width: 140px;
}

.about-section .abt-container .right .about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.about-section .abt-container .right .about-card svg {
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.about-section .abt-container .right .about-card:hover svg {
  transform: scale(1.1);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
}

.about-section .abt-container .right .about-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d3748;
  margin: 0;
}

.about-section .abt-container .right .purple {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 20px 0;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .about-section {
    padding: 30px 20px;
  }

  .about-section .abt-container {
    grid-template-columns: 1fr;
    grid-gap: 30px;
    text-align: center;
  }

  .about-section .abt-container .left h2 {
    font-size: 28pt;
  }

  .about-section .abt-container .right {
    padding: 30px 20px;
    border-radius: 15px;
  }

  .about-section .abt-container .right .about-cards {
    gap: 20px;
    margin: 25px 0;
  }

  .about-section .abt-container .right .about-card {
    padding: 20px 15px;
    min-width: 120px;
  }

  .about-section .abt-container .right h4 {
    font-size: 1.1rem;
  }

  .about-section .abt-container .right .purple {
    font-size: 1.2rem;
    margin: 15px 0;
  }
}

@media screen and (max-width: 480px) {
  .about-section .abt-container .left h2 {
    font-size: 24pt;
  }

  .about-section .abt-container .right {
    padding: 25px 15px;
    border-radius: 12px;
  }

  .about-section .abt-container .right .about-cards {
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
  }

  .about-section .abt-container .right .about-card {
    padding: 18px 12px;
    min-width: 100px;
    border-radius: 12px;
  }

  .about-section .abt-container .right .purple {
    font-size: 1.1rem;
    margin: 12px 0;
  }
}

/* Free Credits Banner Styles */
.free-credits-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(125, 83, 222, 0.1) 0%, rgba(155, 111, 232, 0.15) 100%);
  border-left: 4px solid #7d53de;
  padding: 20px 24px;
  border-radius: 12px;
  margin-top: 24px;
  box-shadow: 0 4px 15px rgba(125, 83, 222, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.free-credits-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.5) 100%);
  pointer-events: none;
}

.free-credits-banner:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(125, 83, 222, 0.15);
}

.free-credits-banner .banner-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #7d53de 0%, #9b6fe8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 12px rgba(125, 83, 222, 0.3);
  animation: pulse-star 2s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes pulse-star {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(125, 83, 222, 0.3);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(125, 83, 222, 0.4);
  }
}

.free-credits-banner .banner-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.free-credits-banner .banner-badge {
  display: inline-block;
  background: #7d53de;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(125, 83, 222, 0.3);
}

.free-credits-banner .banner-text {
  margin: 8px 0 0 0;
  font-size: 15px;
  line-height: 1.5;
  color: #2d3748;
  font-weight: 400;
}

.free-credits-banner .banner-text strong {
  color: #7d53de;
  font-weight: 700;
}

.free-credits-banner .banner-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #7d53de 0%, #9b6fe8 100%);
  color: white;
  padding: 10px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(125, 83, 222, 0.3);
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

.free-credits-banner .banner-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(125, 83, 222, 0.4);
  background: linear-gradient(135deg, #6c4ac5 0%, #8a5dd7 100%);
}

.free-credits-banner .banner-cta svg {
  transition: transform 0.3s ease;
}

.free-credits-banner .banner-cta:hover svg {
  transform: translateX(3px);
}

@media screen and (max-width: 768px) {
  .about-section .abt-container .left {
    text-align: left;
  }

  .free-credits-banner {
    flex-direction: column;
    text-align: center;
    gap: 14px;
    padding: 20px 18px;
    margin-top: 20px;
    border-left: none;
    border-top: 4px solid #7d53de;
  }

  .free-credits-banner .banner-icon {
    width: 44px;
    height: 44px;
  }

  .free-credits-banner .banner-icon svg {
    width: 22px;
    height: 22px;
  }

  .free-credits-banner .banner-badge {
    font-size: 11px;
    padding: 4px 11px;
  }

  .free-credits-banner .banner-text {
    font-size: 14px;
    line-height: 1.6;
  }

  .free-credits-banner .banner-cta {
    width: calc(100% - 40px);
    max-width: 280px;
    justify-content: center;
    padding: 13px 24px;
    font-size: 15px;
    margin: 0 auto;
  }

  .free-credits-banner:hover {
    transform: translateY(-2px);
  }
}

@media screen and (max-width: 480px) {
  .free-credits-banner {
    padding: 18px 16px;
    gap: 12px;
    margin-top: 18px;
    border-radius: 10px;
  }

  .free-credits-banner .banner-icon {
    width: 40px;
    height: 40px;
  }

  .free-credits-banner .banner-icon svg {
    width: 20px;
    height: 20px;
  }

  .free-credits-banner .banner-badge {
    font-size: 10px;
    padding: 4px 10px;
  }

  .free-credits-banner .banner-text {
    font-size: 13px;
    line-height: 1.5;
  }

  .free-credits-banner .banner-cta {
    width: calc(100% - 40px);
    max-width: 260px;
    padding: 12px 20px;
    font-size: 14px;
    margin: 0 auto;
  }

  .free-credits-banner .banner-cta svg {
    width: 14px;
    height: 14px;
  }
}
