:root {
  --accent-color: #5865F2;
  --accent-lighter: #fff;
  --accent-alt: #fff;

  --accent-hover-color: #4752C4;

  --background: #313338;
  --title-color: #fff;
  --text-color: #BDBDBD;

  --second-color: #2B2D31;

  --third-color: #1e1f22;
}

html,
body {
  background: var(--background);
  text-align: center;
  margin: 0;
  padding: 0;
  color: var(--text-color);
  overflow-x: clip;
}

a {
  color: var(--text-color);
}

a:hover {
  color: var(--accent-color);
}

.link {
  text-decoration: underline;
  color: var(--accent-color);
  font-weight: 500;
}

p {
  font-size: 20px;
  line-height: 1.75;
  letter-spacing: -.02em;
}

.highlight {
  color: var(--accent-color)
}

#main {
  background: var(--second-color);
}

.form {
  text-align: left;
}

form *[type="submit"] {
  outline: none;
  border: none;
  background: #fff;
  padding: 6px 20px;
  border-radius: 6px;
  transition: .1s;
}

form *[type="submit"]:hover {
  background: #e4e4e4;
}

textarea,
input[type=text],
input[type=url],
input[type=email],
input[type=password],
input[type=search],
input[type=tel],
input[type=number] {
  background: hsl(0, 0%, 14%);
  line-height: 2;
  padding: 10px 10px;
  border: 1px solid hsl(0, 0%, 10%);
  border-radius: 10px;
  width: 100%;
  outline: none;
  color: #afafaf;
}

textarea:focus,
input[type=text]:focus,
input[type=url]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=number]:focus {
  background: hsl(0, 0%, 20%);
}



.invalid-feedback {
  color: #dc3545;
  font-size: 0.8rem;
  margin-top: -20px;
  display: none;
  margin-bottom: 20px;
}

label {
  font-size: 0.8rem;
  color: #afafaf;
  margin-left: 5px;
  display: block;
}

.container {
  margin: 0 auto;
  padding: 4%;
}

.x-lg {
  max-width: 1367px;
}

.lg {
  max-width: 1280px;
}

.md {
  max-width: 1024px;
}

.sm {
  max-width: 640px;
}

.x-sm {
  max-width: 480px;
}

.xx-sm {
  max-width: 360px;
}

.centered {
  margin: 0 auto;
}

h1 {
  color: var(--title-color);
  font-size: 72px;
  font-family: 700;
  /* line-height: 69px; */
}

h2,
.fake-h2 {
  color: var(--title-color);
  font-size: 42px;
  font-weight: 700;
}

h3 {
  color: var(--title-color);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5em;
}

section {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
}

section#pricing {
  background: var(--second-color);
}

section#third {
  /* background: var(--accent-color);
    color: var(--accent-alt); */
  min-height: auto;
}

.services {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  margin: 50px auto;
}

.service {
  background: #18181B;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 48px 40px;
  min-width: 300px;
  max-width: 380px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.service:hover {
  transform: translateY(-8px);
  border-color: rgba(88, 101, 242, 0.4);
}

.service h3:first-child {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 1rem 0;
  text-transform: capitalize;
}

.service .price {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 2rem 0;
  letter-spacing: -0.02em;
  line-height: 1;
}

.service .price-period {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 600;
}

.service .features {
  text-align: left;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-grow: 1;
}

.service li {
  list-style: none;
  margin: 1rem 0;
  color: #FFFFFF;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.4;
}

.service li i {
  color: #5865F2;
  font-size: 1rem;
  width: auto;
  margin: 0;
}

.feature-highlight {
  color: #FFFFFF !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em;
}

.service .button-50 {
  width: 100%;
  margin-top: 2rem;
  background: #5865F2;
  border-radius: 12px;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 550;
  transition: all 0.2s ease;
}

.service:hover .button-50 {
  box-shadow: 0 0 15px rgba(88, 101, 242, 0.4);
}

.services .plan-card:nth-child(2) {
  border: 1px solid #5865F2 !important;
  box-shadow: 0 0 25px rgba(88, 101, 242, 0.2);
  transform: scale(1.03);
  z-index: 2;
  position: relative;
}

.services .plan-card:nth-child(2) .button-50 {
  background-color: #5865F2 !important;
  box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card {
  /* background: var(--second-color); */
  padding: 15px;
}

.card p {
  font-size: 16px;
}

.card.xx-sm svg {
  width: 70px;
  height: auto;
  fill: var(--accent-color)
}


#third .container {
  margin: 50px auto;
}

#third h2,
#forth h2 {
  font-weight: 500;
  font-size: 32px;
}

#forth p {
  font-size: 16px;
}

@media only screen and (max-width: 640px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 36px;
  }

  h2,
  .fake-h2 {
    font-size: 24px;
  }

  a.cta {
    margin-top: 50px;
  }

  .services {
    flex-direction: row;
    gap: 30px;
  }

  .service {
    max-width: 100%;
  }

  #third h2,
  #forth h2 {
    font-size: 24px;
  }

  #forth p {
    font-size: 16px;
  }
}

@media only screen and (min-width: 641px) and (max-width: 1024px) {
  body {
    font-size: 18px;
  }

  h1 {
    font-size: 48px;
  }

  h2,
  .fake-h2 {
    font-size: 32px;
  }

  a.cta {
    margin-top: 75px;
  }

  .services {
    flex-direction: row;
    gap: 50px;
  }

  .service {
    padding: 30px;
    max-width: 100%;
    margin-bottom: 0;
  }

  #third .container {
    margin: 50px auto;
  }

  #third h2,
  #forth h2 {
    font-size: 28px;
  }

  #forth p {
    font-size: 16px;
  }
}

/* Modern Glassmorphic Button for Pricing */
.button-50 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(88, 101, 242, 0.2);
  position: relative;
  overflow: hidden;
}

.button-50::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s ease;
}

.button-50:hover {
  background: var(--accent-hover-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
}

.button-50:hover::before {
  left: 100%;
}

.button-50:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px rgba(88, 101, 242, 0.3);
}

.button-50:disabled {
  background: #3f3f46;
  color: #a1a1aa;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.button-50-alt {
  background-color: var(--accent-alt);
  color: var(--accent-color);
}


.popup-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  /* display: none; */
}

.popup {
  position: relative;
  background: #313338;
  border-radius: 10px;
  padding: 20px;
  width: 500px;
  text-align: left;
}

@media only screen and (max-width: 640px) {
  .popup {
    width: 80%;
  }
}

.popup h2 {
  font-weight: 700;
  font-size: 24px;
}

.popup .cta {
  padding: 10px 50px;
  margin: 10px 0;
  font-size: 16px;
  background: var(--accent-color);
}

.popup .close,
.popup #close {
  background: var(--accent-color);
  padding: 0;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  position: absolute;
  top: -30px;
  right: -10px;
  border: none;
}

.popup .close i,
.popup #close i {
  color: var(--accent-alt);
  font-size: 1.5rem;
}


/* SWITCH STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
:root {
  --white: #212121;
  --gray: #999;
  --lightgray: transparent;
  --darkgreen: var(--accent-color);
  --popular: #ffdd40;
  --starter: #f73859;
  --essential: #00aeef;
  --professional: #ff7f45;
}

.switch-wrapper {
  position: relative;
  display: inline-flex;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 40px;
  border-radius: 40px;
  background: rgba(30, 31, 34, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.switch-wrapper [type="radio"] {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.switch-wrapper [type="radio"]:checked#monthly~label[for="monthly"],
.switch-wrapper [type="radio"]:checked#yearly~label[for="yearly"] {
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.switch-wrapper [type="radio"]:checked#monthly~label[for="monthly"]:hover,
.switch-wrapper [type="radio"]:checked#yearly~label[for="yearly"]:hover {
  background: transparent;
}

.switch-wrapper [type="radio"]:checked#monthly+label[for="yearly"]~.highlighter {
  transform: none;
}

.switch-wrapper [type="radio"]:checked#yearly+label[for="monthly"]~.highlighter {
  transform: translateX(100%);
}

.switch-wrapper label {
  font-size: 14px;
  font-weight: 600;
  z-index: 1;
  min-width: 100px;
  line-height: 38px;
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
  color: #A1A1AA;
}

.switch-wrapper label:hover {
  color: #E2E8F0;
}

.switch-wrapper .highlighter {
  position: absolute;
  top: 6px;
  left: 6px;
  width: calc(50% - 6px);
  height: calc(100% - 12px);
  border-radius: 30px;
  background: var(--accent-color);
  box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
  color: #fff;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.discount-indicator {
  position: absolute;
  left: calc(100% - 10px);
  /* Positioning closer to the 'Yearly' text */
  top: 50%;
  transform: translateY(-20%);
  display: flex;
  align-items: center;
  pointer-events: none;
  z-index: 10;
}

.discount-arrow {
  margin-right: -5px;
  margin-left: -15px;
  color: var(--accent-color);
}

.discount-arrow svg {
  width: 55px;
  /* Seta um pouco menor para precisão */
  height: auto;
  display: block;
  transform: rotate(5deg);
  /* Ajuste de inclinação da seta */
}

.discount-text {
  font-family: inherit;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 1.1rem;
  white-space: nowrap;
  margin-left: 5px;
}

@media only screen and (max-width: 1024px) {
  .discount-indicator {
    left: calc(100% - 15px);
    transform: translateY(-25%) scale(0.85);
    transform-origin: left center;
  }

  .discount-text {
    font-size: 0.95rem;
  }

  .discount-arrow svg {
    width: 45px;
  }
}

@media only screen and (max-width: 480px) {
  .discount-indicator {
    left: calc(100% - 30px);
    transform: translateY(-10%) scale(0.95);
  }

  .discount-text {
    font-size: 0.85rem;
  }

  .discount-arrow svg {
    width: 35px;
  }
}

.first-section {
  position: relative;
  background-color: var(--background);
  background-image:
    radial-gradient(circle at 15% 50%, rgba(88, 101, 242, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 85% 30%, rgba(88, 101, 242, 0.15) 0%, transparent 60%);
  overflow: hidden;
  padding-bottom: 4rem;
}

.first-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
  pointer-events: none;
}

.first-section>div {
  position: relative;
  z-index: 2;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

/* Hero Section */
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  padding-top: 5rem;
  padding-bottom: 2rem;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(88, 101, 242, 0.1);
  border: 1px solid rgba(88, 101, 242, 0.3);
  padding: 8px 20px;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  box-shadow: 0 0 20px rgba(88, 101, 242, 0.15);
  backdrop-filter: blur(10px);
  animation: fadeInDown 0.8s ease-out;
}

.badge-pill .badge-icon {
  font-size: 1.2em;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0;
  animation: fadeInUp 0.8s ease-out 0.1s both;
  color: var(--title-color);
}

.text-gradient {
  background: linear-gradient(135deg, #A8B1FF 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #A1A1AA;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* Modifying Button Presets */
.btn-glow {
  background-color: var(--accent-color) !important;
  border: none !important;
  box-shadow: 0 0 20px rgba(88, 101, 242, 0.4) !important;
  border-radius: 8px !important;
  transition: all 0.3s ease !important;
  color: white !important;
  padding: 14px 32px !important;
  font-weight: 600 !important;
}

.btn-glow:hover {
  box-shadow: 0 0 35px rgba(88, 101, 242, 0.6) !important;
  transform: translateY(-2px) !important;
  background-color: var(--accent-hover-color) !important;
}

.btn-glow:active {
  transform: translateY(1px) !important;
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: none !important;
  border-radius: 8px !important;
  backdrop-filter: blur(10px) !important;
  color: white !important;
  transition: all 0.3s ease !important;
  padding: 14px 32px !important;
  font-weight: 600 !important;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  transform: translateY(-2px) !important;
}

.btn-secondary:active {
  transform: translateY(1px) !important;
}

/* Video Container & Hero Player Display */
.video-container-wrapper {
  position: relative;
  margin-top: -1rem;
  padding: 0 1rem;
  z-index: 20;
  perspective: 1200px;
  animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s both;
}

.video-glow-backdrop {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, rgba(88, 101, 242, 0.3) 0%, rgba(88, 101, 242, 0) 70%);
  transform: translate(-50%, -40%);
  filter: blur(80px);
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.video-container {
  border-radius: 16px;
  overflow: hidden;
  background: var(--second-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
  transform: rotateX(5deg) translateY(0);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s ease, border-color 0.6s ease;
  transform-style: preserve-3d;
}

@media (max-width: 768px) {
  .video-container-wrapper {
    perspective: none;
  }

  .video-container {
    transform: none !important;
  }
}

.video-container-wrapper:hover .video-container {
  transform: rotateX(0deg) translateY(-8px);
  border-color: rgba(88, 101, 242, 0.3);
  box-shadow: 0 35px 70px -15px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(88, 101, 242, 0.2), 0 0 60px rgba(88, 101, 242, 0.15);
}

@media (max-width: 768px) {
  .video-container-wrapper:hover .video-container {
    transform: none !important;
  }
}


.museed-player-container {
  margin-top: 3rem;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

/* Feature Cards (Primary) */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.feature-card {
  background: rgba(43, 45, 49, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(88, 101, 242, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(88, 101, 242, 0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(88, 101, 242, 0.25);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4), 0 0 20px rgba(88, 101, 242, 0.1);
}

.feature-card:hover::before,
.feature-card:hover::after {
  opacity: 1;
}

.feature-icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(88, 101, 242, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  border: 1px solid rgba(88, 101, 242, 0.2);
  color: var(--accent-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-icon-wrapper svg {
  fill: var(--accent-color);
  width: 36px;
  height: 36px;
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--accent-color);
  color: white;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 30px rgba(88, 101, 242, 0.3);
  border-color: transparent;
}

.feature-card:hover .feature-icon-wrapper svg {
  fill: white;
}

.feature-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: white;
  margin: 0 0 1rem 0;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 1.05rem;
  color: #A1A1AA;
  margin: 0;
  line-height: 1.6;
}

/* Secondary Features */
.secondary-features {
  padding: 6rem 0;
  position: relative;
  background: linear-gradient(180deg, var(--background) 0%, rgba(43, 45, 49, 0.5) 100%);
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.text-center {
  text-align: center;
}

.subtitle-gray {
  color: #A1A1AA;
  font-size: 1.15rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 1.5rem;
}

.feature-grid-item {
  background: rgba(30, 31, 34, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.feature-grid-item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(88, 101, 242, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
  filter: blur(25px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-grid-item:hover {
  background: rgba(43, 45, 49, 0.8);
  border-color: rgba(88, 101, 242, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-grid-item:hover::after {
  opacity: 1;
}

.feature-grid-item h4 {
  font-size: 1.2rem;
  color: white;
  margin: 0 0 0.8rem 0;
  font-weight: 700;
  display: flex;
  align-items: center;
  letter-spacing: -0.01em;
}

.grid-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(88, 101, 242, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(88, 101, 242, 0.2);
  color: var(--accent-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.grid-icon-wrapper svg {
  fill: var(--accent-color);
  width: 28px;
  height: 28px;
  transition: all 0.4s ease;
}

.feature-grid-item:hover .grid-icon-wrapper {
  background: var(--accent-color);
  color: white;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 30px rgba(88, 101, 242, 0.3);
  border-color: transparent;
}

.feature-grid-item:hover .grid-icon-wrapper svg {
  fill: white;
}

.feature-grid-item p {
  font-size: 1rem;
  color: #A1A1AA;
  margin: 0;
  line-height: 1.7;
}


.text-gradient {
  background: linear-gradient(135deg, white 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}