/* =========================
   ROOT VARIABLES
========================= */

:root {

  --bg-primary: #050505;
  --bg-secondary: #0d0d0d;
  --bg-card: rgba(255,255,255,0.05);

  --text-primary: #ffffff;
  --text-secondary: #b9b9b9;

  --green: #00ff9d;
  --green-dark: #00cc7d;

  --walnut: #6b4f3a;
  --walnut-light: #8b6a50;

  --border: rgba(255,255,255,0.08);

  --glass: rgba(255,255,255,0.04);

  --shadow:
    0 10px 40px rgba(0,0,0,0.4);

  --radius: 22px;

  --transition: 0.3s ease;

}

/* =========================
   RESET
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {

  background:
    radial-gradient(circle at top left, rgba(0,255,157,0.08), transparent 30%),
    radial-gradient(circle at bottom right, rgba(107,79,58,0.2), transparent 40%),
    var(--bg-primary);

  color: var(--text-primary);

  font-family: "Inter", sans-serif;

  overflow-x: hidden;

  position: relative;
}

/* =========================
   CUSTOM SCROLLBAR
========================= */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #080808;
}

::-webkit-scrollbar-thumb {

  background:
    linear-gradient(
      to bottom,
      var(--green),
      var(--walnut)
    );

  border-radius: 20px;
}

/* =========================
   AURORA BACKGROUND
========================= */

.aurora-bg {

  position: fixed;

  inset: 0;

  overflow: hidden;

  z-index: -10;

  background:
    radial-gradient(
      circle at top left,
      #0d0d0d,
      #050505 70%
    );

}

/* =========================
   AURORA BLOBS
========================= */

.aurora {

  position: absolute;

  border-radius: 50%;

  filter: blur(140px);

  opacity: 0.28;

  animation:
    auroraMove 20s infinite alternate ease-in-out;

}

/* GREEN */
.aurora1 {

  width: 500px;
  height: 500px;

  background:
    rgba(0,255,157,0.28);

  top: -100px;
  left: -100px;

}

/* WALNUT */
.aurora2 {

  width: 600px;
  height: 600px;

  background:
    rgba(107,79,58,0.22);

  bottom: -200px;
  right: -150px;

  animation-delay: 5s;

}

/* CYBER GREEN */
.aurora3 {

  width: 450px;
  height: 450px;

  background:
    rgba(0,255,115,0.15);

  top: 40%;
  left: 50%;

  animation-delay: 10s;

}

/* =========================
   ANIMATION
========================= */

@keyframes auroraMove {

  0% {

    transform:
      translate(0,0)
      scale(1);

  }

  50% {

    transform:
      translate(80px,-40px)
      scale(1.15);

  }

  100% {

    transform:
      translate(-50px,60px)
      scale(0.9);

  }

}

/* =========================
   FLOATING PARTICLES
========================= */

.particles {

  position: fixed;

  inset: 0;

  z-index: -5;

  overflow: hidden;

  pointer-events: none;

}

.particles span {

  position: absolute;

  display: block;

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background:
    rgba(0,255,157,0.5);

  animation:
    floatParticle linear infinite;

}

/* RANDOM POSITIONS */

.particles span:nth-child(1){
  left: 10%;
  animation-duration: 16s;
  animation-delay: 0s;
}

.particles span:nth-child(2){
  left: 25%;
  animation-duration: 22s;
  animation-delay: 2s;
}

.particles span:nth-child(3){
  left: 40%;
  animation-duration: 18s;
  animation-delay: 4s;
}

.particles span:nth-child(4){
  left: 55%;
  animation-duration: 25s;
  animation-delay: 1s;
}

.particles span:nth-child(5){
  left: 70%;
  animation-duration: 20s;
  animation-delay: 3s;
}

.particles span:nth-child(6){
  left: 82%;
  animation-duration: 17s;
  animation-delay: 5s;
}

.particles span:nth-child(7){
  left: 92%;
  animation-duration: 21s;
  animation-delay: 1s;
}

.particles span:nth-child(8){
  left: 50%;
  animation-duration: 24s;
  animation-delay: 6s;
}

/* =========================
   FLOAT
========================= */

@keyframes floatParticle {

  from {

    transform:
      translateY(100vh)
      scale(0);

    opacity: 0;

  }

  20% {

    opacity: 1;

  }

  to {

    transform:
      translateY(-10vh)
      scale(1.2);

    opacity: 0;

  }

}

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

.glass {

  background: var(--glass);

  backdrop-filter: blur(20px);

  border:
    1px solid var(--border);

  box-shadow: var(--shadow);

}

/* =========================
   BACKGROUND GRID
========================= */

.background-grid {

  position: fixed;

  width: 100%;
  height: 100%;

  top: 0;
  left: 0;

  background-image:

    linear-gradient(
      rgba(255,255,255,0.03) 1px,
      transparent 1px
    ),

    linear-gradient(
      90deg,
      rgba(255,255,255,0.03) 1px,
      transparent 1px
    );

  background-size: 60px 60px;

  z-index: -3;

}

/* =========================
   GRADIENT ORBS
========================= */

.gradient-orb {

  position: fixed;

  border-radius: 50%;

  filter: blur(120px);

  z-index: -2;

  opacity: 0.5;

  animation: floatOrb 12s infinite ease-in-out;

}

.orb-1 {

  width: 400px;
  height: 400px;

  background: var(--green);

  top: -100px;
  left: -100px;

}

.orb-2 {

  width: 500px;
  height: 500px;

  background: var(--walnut);

  bottom: -200px;
  right: -100px;

}

.orb-3 {

  width: 300px;
  height: 300px;

  background: #006644;

  top: 40%;
  left: 50%;

}

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

.navbar {

  position: fixed;

  top: 20px;
  left: 50%;

  transform: translateX(-50%);

  width: 92%;

  z-index: 9999;

}

/* =========================
   CONTAINER
========================= */

.nav-container {

  height: 80px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 0 30px;

  border-radius: 24px;

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

  backdrop-filter: blur(20px);

  border:
    1px solid rgba(255,255,255,0.08);

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

}

/* =========================
   LOGO
========================= */

.nav-logo {

  font-size: 1.4rem;

  font-weight: 800;

  text-decoration: none;

  color: white;

  letter-spacing: 1px;

}

/* =========================
   LINKS
========================= */

.nav-links {

  display: flex;

  align-items: center;

  gap: 40px;

}

.nav-links a {

  position: relative;

  text-decoration: none;

  color: rgba(255,255,255,0.7);

  transition: var(--transition);

}

.nav-links a:hover {

  color: white;

}

/* UNDERLINE */

.nav-links a::after {

  content: "";

  position: absolute;

  left: 0;
  bottom: -8px;

  width: 0%;
  height: 2px;

  background: var(--green);

  transition: width 0.3s ease;

}

.nav-links a:hover::after {

  width: 100%;

}

/* =========================
   ACTIONS
========================= */

.nav-actions {

  display: flex;

  align-items: center;

  gap: 18px;

}

.nav-login {

  text-decoration: none;

  color: rgba(255,255,255,0.8);

}

.nav-cta {

  height: 48px;

  padding: 0 24px;

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

  border-radius: 14px;

  text-decoration: none;

  font-weight: 700;

  color: black;

  background:
    linear-gradient(
      135deg,
      #00ff9d,
      #00d97f
    );

  transition: var(--transition);

}

.nav-cta:hover {

  transform:
    translateY(-3px);

  box-shadow:
    0 12px 30px rgba(0,255,157,0.2);

}

/* =========================
   MOBILE TOGGLE
========================= */

.mobile-toggle {

  display: none;

  width: 50px;
  height: 50px;

  border: none;

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

  border-radius: 14px;

  cursor: pointer;

  position: relative;

}

.mobile-toggle span {

  position: absolute;

  left: 12px;

  width: 26px;
  height: 2px;

  background: white;

  transition: 0.3s ease;

}

.mobile-toggle span:nth-child(1){

  top: 16px;

}

.mobile-toggle span:nth-child(2){

  top: 24px;

}

.mobile-toggle span:nth-child(3){

  top: 32px;

}

/* ACTIVE */

.mobile-toggle.active span:nth-child(1){

  transform:
    rotate(45deg);

  top: 24px;

}

.mobile-toggle.active span:nth-child(2){

  opacity: 0;

}

.mobile-toggle.active span:nth-child(3){

  transform:
    rotate(-45deg);

  top: 24px;

}

/* =========================
   MOBILE MENU
========================= */

.mobile-menu {

  position: fixed;

  top: 110px;
  left: 50%;

  transform:
    translateX(-50%)
    translateY(-30px);

  width: 92%;

  padding: 35px;

  border-radius: 30px;

  background:
    rgba(10,10,10,0.95);

  backdrop-filter: blur(25px);

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

  display: flex;

  flex-direction: column;

  gap: 25px;

  opacity: 0;

  pointer-events: none;

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;

  z-index: 9998;

}

/* ACTIVE */

.mobile-menu.active {

  opacity: 1;

  pointer-events: auto;

  transform:
    translateX(-50%)
    translateY(0);

}

/* LINKS */

.mobile-menu a {

  text-decoration: none;

  color: white;

  font-size: 1.1rem;

}

/* BUTTONS */

.mobile-buttons {

  display: flex;

  flex-direction: column;

  gap: 15px;

  margin-top: 20px;

}

.mobile-login,
.mobile-cta {

  height: 55px;

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

  border-radius: 16px;

}

.mobile-login {

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

}

.mobile-cta {

  background:
    linear-gradient(
      135deg,
      #00ff9d,
      #00d97f
    );

  color: black !important;

  font-weight: 700;

}

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

@media(max-width: 950px){

  .nav-links,
  .nav-actions {

    display: none;

  }

  .mobile-toggle {

    display: block;

  }

}


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

.trusted-section {

  width: 92%;

  margin: 120px auto;

  overflow: hidden;

}

/* =========================
   MARQUEE
========================= */

.trusted-marquee {

  width: 100%;

  overflow: hidden;

  position: relative;

  mask-image:
    linear-gradient(
      to right,
      transparent,
      white 10%,
      white 90%,
      transparent
    );

}

.trusted-track {

  display: flex;

  gap: 25px;

  width: max-content;

  animation:
    marqueeMove 28s linear infinite;

}

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

.trusted-item {

  min-width: 240px;

  height: 100px;

  border-radius: 22px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;

  transition: var(--transition);

  cursor: pointer;

  opacity: 0.7;

  filter: grayscale(100%);

}

.trusted-item:hover {

  transform:
    translateY(-8px)
    scale(1.03);

  opacity: 1;

  filter: grayscale(0%);

  border-color:
    rgba(0,255,157,0.25);

  box-shadow:
    0 10px 30px rgba(0,255,157,0.12);

}

.trusted-item i {

  font-size: 2rem;

  color: var(--green);

}

.trusted-item span {

  font-size: 1.1rem;

  font-weight: 700;

  color: white;

}

/* =========================
   MARQUEE ANIMATION
========================= */

@keyframes marqueeMove {

  from {
    transform: translateX(0);
  }

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

}

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

@media(max-width: 768px){

  .trusted-item {

    min-width: 180px;

    height: 85px;

  }

  .trusted-item i {

    font-size: 1.6rem;

  }

  .trusted-item span {

    font-size: 0.95rem;

  }

}

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

.pricing-preview {

  width: 92%;

  margin: 150px auto;

}

/* =========================
   GRID
========================= */

.pricing-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 35px;

}

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

.pricing-card {

  position: relative;

  padding: 45px 35px;

  border-radius: 30px;

  overflow: hidden;

  transition: var(--transition);

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

  border:
    1px solid rgba(255,255,255,0.08);

}

.pricing-card:hover {

  transform:
    translateY(-12px);

  border-color:
    rgba(0,255,157,0.25);

  box-shadow:
    0 15px 45px rgba(0,255,157,0.12);

}

/* =========================
   FEATURED PLAN
========================= */

.featured-plan {

  position: relative;

  background:
    linear-gradient(
      135deg,
      rgba(0,255,157,0.12),
      rgba(107,79,58,0.15)
    );

  border:
    1px solid rgba(0,255,157,0.25);

  transform: scale(1.05);

  box-shadow:
    0 20px 60px rgba(0,255,157,0.18);

}

.featured-plan:hover {

  transform:
    scale(1.05)
    translateY(-10px);

}

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

.popular-badge {

  position: absolute;

  top: 18px;
  right: 18px;

  background:
    linear-gradient(
      135deg,
      var(--green),
      var(--green-dark)
    );

  color: black;

  padding: 8px 14px;

  border-radius: 999px;

  font-size: 0.72rem;

  font-weight: 800;

  letter-spacing: 1px;

}

/* =========================
   TOP
========================= */

.pricing-top {

  margin-bottom: 30px;

}

.pricing-top h3 {

  font-size: 2rem;

  margin-bottom: 10px;

}

.pricing-top p {

  color: var(--text-secondary);

  line-height: 1.7;

}

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

.pricing-price {

  margin-bottom: 35px;

  font-size: 1.1rem;

  color: var(--text-secondary);

}

.pricing-price span {

  font-size: 4rem;

  font-weight: 900;

  color: var(--green);

}

/* =========================
   FEATURES
========================= */

.pricing-features {

  list-style: none;

  display: flex;
  flex-direction: column;
  gap: 18px;

  margin-bottom: 40px;

}

.pricing-features li {

  display: flex;
  align-items: center;
  gap: 12px;

  color: var(--text-secondary);

}

.pricing-features i {

  color: var(--green);

  font-size: 1.2rem;

}

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

.pricing-btn {

  width: 100%;

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

  padding: 16px;

  border-radius: 16px;

  text-decoration: none;

  font-weight: 700;

  transition: var(--transition);

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

  color: white;

  border:
    1px solid rgba(255,255,255,0.08);

}

.pricing-btn:hover {

  transform: translateY(-4px);

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

}

.featured-btn {

  background:
    linear-gradient(
      135deg,
      var(--green),
      var(--green-dark)
    );

  color: black;

  border: none;

}

.featured-btn:hover {

  box-shadow:
    0 10px 35px rgba(0,255,157,0.3);

}

/* =========================
   GLOW BORDER EFFECT
========================= */

.pricing-card::before {

  content: "";

  position: absolute;

  inset: 0;

  border-radius: inherit;

  padding: 1px;

  background:
    linear-gradient(
      135deg,
      rgba(0,255,157,0.15),
      rgba(255,255,255,0.02),
      rgba(107,79,58,0.2)
    );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;

  mask-composite: exclude;

  pointer-events: none;

}

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

@media(max-width: 1100px){

  .pricing-grid {

    grid-template-columns: 1fr;

  }

  .featured-plan {

    transform: scale(1);

  }

  .featured-plan:hover {

    transform:
      translateY(-10px);

  }

}

@media(max-width: 768px){

  .pricing-card {

    padding: 35px 25px;

  }

  .pricing-top h3 {

    font-size: 1.7rem;

  }

  .pricing-price span {

    font-size: 3rem;

  }

}

/* =========================
   LIVE MARKETPLACE
========================= */

.marketplace-preview {

  width: 92%;

  margin: 160px auto;

}

/* =========================
   GRID
========================= */

.marketplace-grid {

  display: grid;

  grid-template-columns: 1.2fr 1fr;

  gap: 40px;

  margin-top: 70px;

}

/* =========================
   TERMINAL
========================= */

.terminal-window {

  padding: 0;

  overflow: hidden;

  border-radius: 28px;

  border:
    1px solid rgba(255,255,255,0.08);

  background:
    rgba(0,0,0,0.45);

  backdrop-filter: blur(20px);

  box-shadow:
    0 15px 50px rgba(0,0,0,0.4);

}

/* =========================
   TERMINAL HEADER
========================= */

.terminal-header {

  height: 65px;

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

  padding: 0 25px;

  border-bottom:
    1px solid rgba(255,255,255,0.05);

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

}

.terminal-dots {

  display: flex;
  gap: 10px;

}

.terminal-dots span {

  width: 12px;
  height: 12px;

  border-radius: 50%;

}

.terminal-dots span:nth-child(1){
  background: #ff5f56;
}

.terminal-dots span:nth-child(2){
  background: #ffbd2e;
}

.terminal-dots span:nth-child(3){
  background: #27c93f;
}

.terminal-title {

  color: var(--text-secondary);

  font-size: 0.9rem;

  letter-spacing: 1px;

}

/* =========================
   TERMINAL BODY
========================= */

.terminal-body {

  padding: 35px;

  display: flex;
  flex-direction: column;
  gap: 20px;

}

.terminal-line {

  color: #d4d4d4;

  font-size: 1rem;

  font-family: monospace;

  opacity: 0;

  animation:
    fadeTerminal 0.5s forwards;

}

.terminal-line:nth-child(1){
  animation-delay: 0.2s;
}

.terminal-line:nth-child(2){
  animation-delay: 0.4s;
}

.terminal-line:nth-child(3){
  animation-delay: 0.6s;
}

.terminal-line:nth-child(4){
  animation-delay: 0.8s;
}

.terminal-line:nth-child(5){
  animation-delay: 1s;
}

.terminal-line:nth-child(6){
  animation-delay: 1.2s;
}

.green {

  color: var(--green);

  font-weight: bold;

}

.blinking {

  animation:
    blink 1s infinite;

}

/* =========================
   FEED
========================= */

.market-feed {

  display: flex;
  flex-direction: column;
  gap: 25px;

}

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

.feed-card {

  display: flex;
  align-items: center;
  gap: 20px;

  padding: 25px;

  border-radius: 24px;

  transition: var(--transition);

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

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

}

.feed-card:hover {

  transform:
    translateX(10px);

  border-color:
    rgba(0,255,157,0.18);

  box-shadow:
    0 10px 35px rgba(0,255,157,0.08);

}

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

.feed-icon {

  width: 70px;
  height: 70px;

  border-radius: 20px;

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

  font-size: 2rem;

  background:
    linear-gradient(
      135deg,
      rgba(0,255,157,0.15),
      rgba(107,79,58,0.15)
    );

  box-shadow:
    inset 0 0 25px rgba(0,255,157,0.1);

}

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

.feed-content h4 {

  margin-bottom: 8px;

  font-size: 1.2rem;

}

.feed-content p {

  color: var(--text-secondary);

  line-height: 1.6;

}

/* =========================
   ANIMATIONS
========================= */

@keyframes fadeTerminal {

  from {

    opacity: 0;
    transform: translateY(10px);

  }

  to {

    opacity: 1;
    transform: translateY(0);

  }

}

@keyframes blink {

  0%,100% {

    opacity: 1;

  }

  50% {

    opacity: 0.3;

  }

}

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

@media(max-width: 1100px){

  .marketplace-grid {

    grid-template-columns: 1fr;

  }

}

@media(max-width: 768px){

  .terminal-body {

    padding: 25px;

  }

  .feed-card {

    flex-direction: column;
    align-items: flex-start;

  }

  .feed-icon {

    width: 60px;
    height: 60px;

    font-size: 1.6rem;

  }

}

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

.stats-section {

  width: 92%;

  margin: 180px auto;

  position: relative;

}

/* =========================
   GRID
========================= */

.stats-grid {

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 30px;

  margin-top: 70px;

}

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

.stat-card {

  position: relative;

  overflow: hidden;

  padding: 45px 30px;

  border-radius: 28px;

  text-align: center;

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

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

  transition: var(--transition);

  backdrop-filter: blur(20px);

}

.stat-card:hover {

  transform:
    translateY(-12px);

  border-color:
    rgba(0,255,157,0.2);

  box-shadow:
    0 20px 60px rgba(0,255,157,0.08);

}

/* =========================
   GLOW
========================= */

.stat-glow {

  position: absolute;

  width: 180px;
  height: 180px;

  background:
    radial-gradient(
      circle,
      rgba(0,255,157,0.18),
      transparent 70%
    );

  top: -70px;
  right: -70px;

  pointer-events: none;

}

/* =========================
   NUMBER
========================= */

.stat-card h3 {

  font-size: 3rem;

  font-weight: 800;

  margin-bottom: 15px;

  background:
    linear-gradient(
      90deg,
      #00ff9d,
      #ffffff
    );

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

}

/* =========================
   LABEL
========================= */

.stat-card p {

  color: var(--text-secondary);

  font-size: 1rem;

  letter-spacing: 0.5px;

}

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

@media(max-width: 1100px){

  .stats-grid {

    grid-template-columns:
      repeat(2, 1fr);

  }

}

@media(max-width: 700px){

  .stats-grid {

    grid-template-columns: 1fr;

  }

  .stat-card {

    padding: 35px 20px;

  }

  .stat-card h3 {

    font-size: 2.4rem;

  }

}

/* =========================
   TESTIMONIALS
========================= */

.testimonials-section {

  width: 92%;

  margin: 180px auto;

  overflow: hidden;

  position: relative;

}

/* =========================
   SLIDER
========================= */

.testimonial-slider {

  margin-top: 70px;

  overflow: hidden;

  position: relative;

}

/* =========================
   TRACK
========================= */

.testimonial-track {

  display: flex;

  gap: 30px;

  width: max-content;

  animation:
    slideTestimonials 30s linear infinite;

}

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

.testimonial-card {

  width: 380px;

  min-height: 240px;

  padding: 35px;

  border-radius: 28px;

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

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

  backdrop-filter: blur(20px);

  transition: var(--transition);

  position: relative;

  overflow: hidden;

}

.testimonial-card:hover {

  transform:
    translateY(-10px);

  border-color:
    rgba(0,255,157,0.15);

  box-shadow:
    0 20px 50px rgba(0,255,157,0.08);

}

/* =========================
   GLOW EFFECT
========================= */

.testimonial-card::before {

  content: "";

  position: absolute;

  width: 160px;
  height: 160px;

  background:
    radial-gradient(
      circle,
      rgba(0,255,157,0.12),
      transparent 70%
    );

  top: -60px;
  right: -60px;

}

/* =========================
   TOP
========================= */

.testimonial-top {

  display: flex;

  align-items: center;

  gap: 18px;

  margin-bottom: 25px;

}

/* =========================
   AVATAR
========================= */

.testimonial-avatar {

  width: 70px;
  height: 70px;

  border-radius: 20px;

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

  font-size: 2rem;

  background:
    linear-gradient(
      135deg,
      rgba(0,255,157,0.15),
      rgba(107,79,58,0.15)
    );

  box-shadow:
    inset 0 0 20px rgba(0,255,157,0.08);

}

/* =========================
   TEXT
========================= */

.testimonial-top h4 {

  font-size: 1.15rem;

  margin-bottom: 5px;

}

.testimonial-top span {

  color: var(--text-secondary);

  font-size: 0.95rem;

}

.testimonial-card p {

  line-height: 1.8;

  color: var(--text-secondary);

  font-size: 1rem;

}

/* =========================
   ANIMATION
========================= */

@keyframes slideTestimonials {

  from {

    transform: translateX(0);

  }

  to {

    transform: translateX(-50%);

  }

}

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

@media(max-width: 768px){

  .testimonial-card {

    width: 300px;

    padding: 28px;

  }

  .testimonial-avatar {

    width: 60px;
    height: 60px;

    font-size: 1.5rem;

  }

}

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

.faq-section {

  width: 92%;

  margin: 180px auto;

}

/* =========================
   CONTAINER
========================= */

.faq-container {

  margin-top: 70px;

  display: flex;

  flex-direction: column;

  gap: 22px;

}

/* =========================
   FAQ ITEM
========================= */

.faq-item {

  border-radius: 24px;

  overflow: hidden;

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

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

  backdrop-filter: blur(20px);

  transition: var(--transition);

}

.faq-item:hover {

  border-color:
    rgba(0,255,157,0.15);

  box-shadow:
    0 15px 40px rgba(0,255,157,0.05);

}

/* =========================
   QUESTION
========================= */

.faq-question {

  width: 100%;

  background: transparent;

  border: none;

  color: white;

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 28px 30px;

  font-size: 1.05rem;

  font-weight: 600;

  cursor: pointer;

}

.faq-question i {

  font-size: 1.4rem;

  color: var(--green);

  transition: transform 0.3s ease;

}

/* =========================
   ANSWER
========================= */

.faq-answer {

  max-height: 0;

  overflow: hidden;

  transition:
    max-height 0.4s ease,
    padding 0.4s ease;

  padding:
    0 30px;

}

.faq-answer p {

  color: var(--text-secondary);

  line-height: 1.8;

  padding-bottom: 28px;

}

/* =========================
   ACTIVE STATE
========================= */

.faq-item.active .faq-answer {

  max-height: 300px;

  padding:
    0 30px;

}

.faq-item.active .faq-question i {

  transform: rotate(45deg);

}

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

@media(max-width: 768px){

  .faq-question {

    padding: 22px;

    font-size: 1rem;

  }

  .faq-answer {

    padding: 0 22px;

  }

}

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

.footer-section {

  width: 100%;

  margin-top: 180px;

  padding:
    0 5% 60px;

  position: relative;

}

/* =========================
   NEWSLETTER
========================= */

.newsletter {

  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 50px;

  padding: 50px;

  border-radius: 35px;

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

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

  backdrop-filter: blur(20px);

  margin-bottom: 100px;

  overflow: hidden;

  position: relative;

}

/* GLOW */
.newsletter::before {

  content: "";

  position: absolute;

  width: 300px;
  height: 300px;

  background:
    radial-gradient(
      circle,
      rgba(0,255,157,0.15),
      transparent 70%
    );

  top: -120px;
  right: -100px;

}

/* =========================
   LEFT
========================= */

.newsletter-left span {

  color: var(--green);

  letter-spacing: 2px;

  font-size: 0.9rem;

}

.newsletter-left h2 {

  font-size: 2.8rem;

  margin:
    15px 0;

}

.newsletter-left p {

  color: var(--text-secondary);

  max-width: 500px;

  line-height: 1.8;

}

/* =========================
   FORM
========================= */

.newsletter-form {

  display: flex;

  align-items: center;

  gap: 15px;

}

.newsletter-form input {

  width: 320px;

  height: 60px;

  padding: 0 20px;

  border-radius: 16px;

  border:
    1px solid rgba(255,255,255,0.08);

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

  color: white;

  font-size: 1rem;

  outline: none;

}

.newsletter-form input::placeholder {

  color: rgba(255,255,255,0.5);

}

.newsletter-form button {

  height: 60px;

  padding:
    0 30px;

  border: none;

  border-radius: 16px;

  background:
    linear-gradient(
      135deg,
      #00ff9d,
      #0cff73
    );

  color: black;

  font-weight: 700;

  cursor: pointer;

  transition: var(--transition);

}

.newsletter-form button:hover {

  transform:
    translateY(-3px);

  box-shadow:
    0 15px 35px rgba(0,255,157,0.2);

}

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

.footer-grid {

  display: grid;

  grid-template-columns:
    1.5fr 1fr 1fr 1fr;

  gap: 60px;

}

/* =========================
   BRAND
========================= */

.footer-logo {

  font-size: 2rem;

  font-weight: 800;

  margin-bottom: 20px;

  color: white;

}

.footer-brand p {

  color: var(--text-secondary);

  line-height: 1.8;

  margin-bottom: 30px;

  max-width: 400px;

}

/* =========================
   SOCIALS
========================= */

.footer-socials {

  display: flex;

  gap: 15px;

}

.footer-socials a {

  width: 50px;
  height: 50px;

  border-radius: 14px;

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

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

  color: white;

  font-size: 1.3rem;

  transition: var(--transition);

}

.footer-socials a:hover {

  background:
    rgba(0,255,157,0.15);

  color: var(--green);

  transform:
    translateY(-5px);

}

/* =========================
   LINKS
========================= */

.footer-links h4 {

  margin-bottom: 25px;

  font-size: 1.1rem;

}

.footer-links {

  display: flex;

  flex-direction: column;

}

.footer-links a {

  color: var(--text-secondary);

  margin-bottom: 14px;

  text-decoration: none;

  transition: var(--transition);

}

.footer-links a:hover {

  color: var(--green);

  transform:
    translateX(5px);

}

/* =========================
   BOTTOM
========================= */

.footer-bottom {

  margin-top: 70px;

  padding-top: 30px;

  border-top:
    1px solid rgba(255,255,255,0.06);

  display: flex;

  justify-content: space-between;

  align-items: center;

  flex-wrap: wrap;

  gap: 20px;

}

.footer-bottom p {

  color: var(--text-secondary);

}

/* =========================
   PAYMENTS
========================= */

.payment-icons {

  display: flex;

  gap: 15px;

}

.payment-icons span {

  padding:
    10px 18px;

  border-radius: 12px;

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

  color: white;

  font-size: 0.9rem;

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

}

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

@media(max-width: 1100px){

  .newsletter {

    flex-direction: column;

    align-items: flex-start;

  }

  .footer-grid {

    grid-template-columns:
      repeat(2,1fr);

  }

}

@media(max-width: 768px){

  .newsletter {

    padding: 35px 25px;

  }

  .newsletter-left h2 {

    font-size: 2rem;

  }

  .newsletter-form {

    width: 100%;

    flex-direction: column;

    align-items: stretch;

  }

  .newsletter-form input {

    width: 100%;

  }

  .footer-grid {

    grid-template-columns: 1fr;

  }

  .footer-bottom {

    flex-direction: column;

    align-items: flex-start;

  }

}


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

@media(max-width: 1100px){

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

}

@media(max-width: 768px){

  .nav-links {
    display: none;
  }

  .hero-left h1 {
    font-size: 3rem;
  }

  .dashboard-content {
    grid-template-columns: 1fr;
  }

  .platform-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .section-header h2,
  .cta h2 {
    font-size: 2.2rem;
  }

}

@media(max-width: 500px){

  .navbar {
    padding: 15px;
  }

  .hero-left h1 {
    font-size: 2.3rem;
  }

  .dashboard-preview {
    padding: 18px;
  }

}

/* =========================
   MOUSE GLOW
========================= */

.mouse-glow {

  position: fixed;

  width: 350px;
  height: 350px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(0,255,157,0.12),
      transparent 70%
    );

  pointer-events: none;

  z-index: -1;

  transform:
    translate(-50%, -50%);

  transition:
    transform 0.08s linear;

}

/* =========================
   HERO SECTION
========================= */
.hero-section {

  width: 92%;

  margin: 0 auto;

  display: grid;

  grid-template-columns: 1.1fr 1fr;

  align-items: start;

  gap: 80px;

  padding-top: 140px;

  padding-bottom: 40px;

  min-height: unset;

  position: relative;

  z-index: 2;

}

.features-section {

  margin-top: 40px !important;

}

/* =========================
   LEFT
========================= */

.hero-content {

  position: relative;

  z-index: 2;

}

/* BADGE */

.hero-badge {

  display: inline-flex;

  align-items: center;

  gap: 12px;

  padding:
    12px 22px;

  border-radius: 999px;

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

  border:
    1px solid rgba(255,255,255,0.08);

  margin-bottom: 35px;

  color: rgba(255,255,255,0.8);

}

.hero-badge span {

  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: var(--green);

  box-shadow:
    0 0 20px var(--green);

}

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

.hero-content h1 {

  font-size: 5rem;

  line-height: 1.05;

  margin-bottom: 35px;

  font-weight: 800;

  max-width: 850px;

}

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

.hero-content p {

  color: var(--text-secondary);

  font-size: 1.15rem;

  line-height: 1.9;

  max-width: 650px;

  margin-bottom: 45px;

}

/* =========================
   BUTTONS
========================= */

.hero-buttons {

  display: flex;

  gap: 20px;

  margin-bottom: 60px;

}

.hero-primary,
.hero-secondary {

  height: 60px;

  padding:
    0 34px;

  border-radius: 18px;

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

  text-decoration: none;

  font-weight: 700;

  transition: var(--transition);

}

/* PRIMARY */

.hero-primary {

  background:
    linear-gradient(
      135deg,
      #00ff9d,
      #00d97f
    );

  color: black;

}

.hero-primary:hover {

  transform:
    translateY(-4px);

  box-shadow:
    0 18px 40px rgba(0,255,157,0.2);

}

/* SECONDARY */

.hero-secondary {

  border:
    1px solid rgba(255,255,255,0.08);

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

  color: white;

}

.hero-secondary:hover {

  border-color:
    rgba(0,255,157,0.2);

}

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

.hero-stats {

  display: flex;

  gap: 50px;

}

.hero-stat h3 {

  font-size: 2rem;

  margin-bottom: 8px;

  color: white;

}

.hero-stat span {

  color: var(--text-secondary);

}

/* =========================
   RIGHT VISUAL
========================= */

.hero-visual {

  position: relative;

}

/* =========================
   DASHBOARD
========================= */

.dashboard-preview {

  position: relative;

  overflow: hidden;

  border-radius: 35px;

  border:
    1px solid rgba(255,255,255,0.08);

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

  backdrop-filter: blur(20px);

  box-shadow:
    0 20px 70px rgba(0,0,0,0.35);

}

/* TOP */

.dashboard-top {

  height: 70px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 0 25px;

  border-bottom:
    1px solid rgba(255,255,255,0.05);

}

.dashboard-dots {

  display: flex;

  gap: 10px;

}

.dashboard-dots span {

  width: 12px;
  height: 12px;

  border-radius: 50%;

}

.dashboard-dots span:nth-child(1){
  background: #ff5f56;
}

.dashboard-dots span:nth-child(2){
  background: #ffbd2e;
}

.dashboard-dots span:nth-child(3){
  background: #27c93f;
}

.dashboard-title {

  color: var(--text-secondary);

}

/* BODY */

.dashboard-body {

  padding: 30px;

  display: flex;

  flex-direction: column;

  gap: 25px;

}

/* DASHBOARD CARD */

.dashboard-card {

  padding: 28px;

  border-radius: 24px;

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

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

}

.card-top {

  display: flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 15px;

  color: var(--text-secondary);

}

/* LIVE DOT */

.live-dot {

  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: var(--green);

  box-shadow:
    0 0 20px var(--green);

  animation:
    pulse 1.5s infinite;

}

.dashboard-card h4 {

  font-size: 2rem;

  margin-bottom: 10px;

}

/* TERMINAL */

.hero-terminal {

  padding: 25px;

  border-radius: 24px;

  background:
    rgba(0,0,0,0.4);

  font-family: monospace;

  display: flex;

  flex-direction: column;

  gap: 16px;

}

.terminal-line {

  color: #d6d6d6;

}

.terminal-line.green {

  color: var(--green);

}

/* =========================
   FLOATING CARDS
========================= */

.floating-card {

  position: absolute;

  display: flex;

  align-items: center;

  gap: 16px;

  padding: 18px 22px;

  border-radius: 20px;

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

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

  backdrop-filter: blur(20px);

  animation:
    floating 5s infinite ease-in-out;

}

.floating-card span {

  font-size: 1.6rem;

}

.floating-one {

  top: 10%;

  left: -50px;

}

.floating-two {

  bottom: 10%;

  right: -40px;

  animation-delay: 2s;

}

/* =========================
   ANIMATIONS
========================= */

@keyframes pulse {

  0%,100% {

    opacity: 1;

  }

  50% {

    opacity: 0.4;

  }

}

@keyframes floating {

  0%,100% {

    transform:
      translateY(0);

  }

  50% {

    transform:
      translateY(-12px);

  }

}

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

@media(max-width: 1200px){

  .hero-section {

    grid-template-columns: 1fr;

  }

}

@media(max-width: 768px){

  .hero-content h1 {

    font-size: 3rem;

  }

  .hero-buttons {

    flex-direction: column;

  }

  .hero-stats {

    flex-wrap: wrap;

    gap: 30px;

  }

  .floating-card {

    display: none;

  }

}
.features-section {

  width: 92%;

  margin: 100px auto 0;

  position: relative;

  z-index: 2;

}

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

/* SECTION HEADER */

.features-section .section-header {

  text-align: center;

  max-width: 850px;

  margin: 0 auto 70px;

}

.features-section .section-tag {

  display: inline-block;

  padding: 10px 18px;

  border-radius: 999px;

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

  border: 1px solid rgba(0, 255, 170, 0.18);

  color: #00ffae;

  font-size: 0.85rem;

  font-weight: 700;

  letter-spacing: 2px;

  margin-bottom: 24px;

  text-transform: uppercase;

  backdrop-filter: blur(12px);

}

.features-section .section-header h2 {

  font-size: clamp(2.8rem, 5vw, 5rem);

  line-height: 1.05;

  font-weight: 900;

  margin-bottom: 24px;

  color: #ffffff;

  letter-spacing: -2px;

}

.features-section .section-header p {

  color: rgba(255,255,255,0.72);

  font-size: 1.1rem;

  line-height: 1.8;

  max-width: 760px;

  margin: auto;

}

/* GRID */

.features-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 28px;

}

/* CARD */

.feature-card {

  position: relative;

  overflow: hidden;

  padding: 38px;

  border-radius: 28px;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.05),
      rgba(255,255,255,0.02)
    );

  border: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(18px);

  transition:
    transform 0.35s ease,
    border 0.35s ease,
    box-shadow 0.35s ease;

  min-height: 290px;

}

/* GLOW EFFECT */

.feature-card::before {

  content: "";

  position: absolute;

  inset: 0;

  background:
    radial-gradient(
      circle at top left,
      rgba(0,255,170,0.12),
      transparent 45%
    );

  opacity: 0;

  transition: opacity 0.4s ease;

}

/* HOVER */

.feature-card:hover {

  transform:
    translateY(-10px)
    scale(1.02);

  border-color:
    rgba(0,255,170,0.25);

  box-shadow:
    0 0 35px rgba(0,255,170,0.12);

}

.feature-card:hover::before {

  opacity: 1;

}

/* ICON */

.feature-icon {

  width: 72px;

  height: 72px;

  border-radius: 22px;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 2rem;

  margin-bottom: 28px;

  background:
    linear-gradient(
      135deg,
      rgba(0,255,170,0.14),
      rgba(0,255,170,0.04)
    );

  border:
    1px solid rgba(0,255,170,0.15);

  box-shadow:
    0 0 20px rgba(0,255,170,0.08);

}

/* TITLE */

.feature-card h3 {

  font-size: 1.45rem;

  font-weight: 800;

  color: #ffffff;

  margin-bottom: 18px;

  line-height: 1.3;

}

/* TEXT */

.feature-card p {

  color: rgba(255,255,255,0.68);

  line-height: 1.8;

  font-size: 1rem;

}

/* REVEAL */

.reveal {

  opacity: 0;

  transform: translateY(60px);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;

}

.reveal.active {

  opacity: 1;

  transform: translateY(0);

}

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

@media(max-width: 1200px){

  .features-grid {

    grid-template-columns: repeat(2, 1fr);

  }

}

@media(max-width: 768px){

  .features-section {

    width: 94%;

    margin-top: 60px;

  }

  .features-grid {

    grid-template-columns: 1fr;

    gap: 22px;

  }

  .features-section .section-header {

    margin-bottom: 50px;

  }

  .features-section .section-header h2 {

    font-size: 2.5rem;

  }

  .features-section .section-header p {

    font-size: 1rem;

    line-height: 1.7;

  }

  .feature-card {

    padding: 28px;

    min-height: auto;

  }

  .feature-icon {

    width: 62px;

    height: 62px;

    font-size: 1.7rem;

  }

  .feature-card h3 {

    font-size: 1.3rem;

  }

}

@media(max-width: 500px){

  .features-section .section-header h2 {

    font-size: 2rem;

  }

  .feature-card {

    border-radius: 22px;

    padding: 24px;

  }

}

/* =========================================
   HERO + FEATURES FIX
========================================= */

.hero-section {

  min-height: auto !important;

  align-items: start !important;

  padding-top: 140px !important;

  padding-bottom: 30px !important;

  margin-bottom: 0 !important;

}

.hero-content {

  padding-bottom: 0 !important;

}

.hero-visual {

  margin-bottom: 0 !important;

}

.features-section {

  position: relative;

  z-index: 5;

  width: 92%;

  margin: 40px auto 0 !important;

  padding-top: 0 !important;

}

/* REMOVE MASSIVE EMPTY SPACE */

section {

  margin-bottom: 0;

}

/* FIX REVEAL */

.reveal {

  opacity: 1 !important;

  transform: translateY(0) !important;

}

/* SAFE GRID */

.features-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 28px;

  position: relative;

  z-index: 5;

}

/* FEATURE CARD FIX */

.feature-card {

  opacity: 1 !important;

  visibility: visible !important;

  display: block !important;

}

/* MOBILE */

@media(max-width: 1100px){

  .features-grid {

    grid-template-columns: repeat(2,1fr);

  }

}

@media(max-width: 768px){

  .hero-section {

    grid-template-columns: 1fr;

    gap: 40px;

    padding-top: 120px !important;

  }

  .features-grid {

    grid-template-columns: 1fr;

  }

}
/* =========================================
   GLOBAL SECTION HEADER
========================================= */

.section-header {

  position: relative;

  z-index: 5;

  text-align: center;

  max-width: 900px;

  margin: 0 auto 70px;

}

/* SMALL TAG */

.section-tag {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 10px 20px;

  border-radius: 999px;

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

  border: 1px solid rgba(0,255,157,0.15);

  color: #00ff9d;

  font-size: 0.82rem;

  font-weight: 800;

  letter-spacing: 2px;

  text-transform: uppercase;

  margin-bottom: 28px;

  backdrop-filter: blur(12px);

}

/* TITLE */

.section-header h2 {

  font-size: clamp(2.8rem, 5vw, 5rem);

  line-height: 1.05;

  font-weight: 900;

  letter-spacing: -2px;

  margin-bottom: 24px;

  color: white;

}

/* DESCRIPTION */

.section-header p {

  font-size: 1.08rem;

  line-height: 1.9;

  color: rgba(255,255,255,0.72);

  max-width: 760px;

  margin: 0 auto;

}

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

@media(max-width: 768px){

  .section-header {

    margin-bottom: 50px;

  }

  .section-header h2 {

    font-size: 2.5rem;

  }

  .section-header p {

    font-size: 1rem;

    line-height: 1.8;

  }

}

@media(max-width: 500px){

  .section-header h2 {

    font-size: 2rem;

  }

}

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

.pricing-preview{

    width: 92%;

    margin: 140px auto;

    position: relative;

    z-index: 2;

}

/* SECTION HEADER */

.pricing-preview .section-header{

    text-align: center;

    max-width: 850px;

    margin: 0 auto 70px;

}

.pricing-preview .section-tag{

    display: inline-block;

    padding: 10px 18px;

    border-radius: 999px;

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

    border: 1px solid rgba(0,255,170,0.2);

    color: #00ffae;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 25px;

    text-transform: uppercase;

    backdrop-filter: blur(10px);

}

.pricing-preview .section-header h2{

    font-size: 64px;

    line-height: 1.1;

    font-weight: 800;

    color: #fff;

    margin-bottom: 25px;

}

.pricing-preview .section-header p{

    font-size: 18px;

    line-height: 1.8;

    color: rgba(255,255,255,0.7);

}

/* GRID */

.pricing-grid{

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));

    gap: 35px;

}

/* CARD */

.pricing-card{

    position: relative;

    overflow: hidden;

    padding: 40px;

    border-radius: 30px;

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

    border: 1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(18px);

    transition: 0.4s ease;

    min-height: 620px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

}

/* GLOW EFFECT */

.pricing-card::before{

    content: "";

    position: absolute;

    inset: 0;

    background:
    radial-gradient(
        circle at top right,
        rgba(0,255,170,0.18),
        transparent 40%
    );

    opacity: 0;

    transition: 0.5s ease;

    pointer-events: none;

}

.pricing-card:hover::before{

    opacity: 1;

}

.pricing-card:hover{

    transform: translateY(-10px);

    border-color: rgba(0,255,170,0.35);

    box-shadow:
    0 0 35px rgba(0,255,170,0.08),
    0 20px 60px rgba(0,0,0,0.45);

}

/* FEATURED CARD */

.featured-plan{

    border: 1px solid rgba(0,255,170,0.45);

    background:
    linear-gradient(
        145deg,
        rgba(0,255,170,0.07),
        rgba(255,255,255,0.03)
    );

    box-shadow:
    0 0 50px rgba(0,255,170,0.12);

}

/* BADGE */

.popular-badge{

    position: absolute;

    top: 25px;

    right: 25px;

    padding: 10px 18px;

    border-radius: 999px;

    background: #00ffae;

    color: #000;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;

    box-shadow:
    0 0 20px rgba(0,255,170,0.5);

}

/* TOP */

.pricing-top{

    margin-bottom: 35px;

}

.pricing-icon{

    width: 72px;

    height: 72px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 22px;

    background:
    linear-gradient(
        135deg,
        rgba(0,255,170,0.18),
        rgba(255,255,255,0.03)
    );

    border: 1px solid rgba(255,255,255,0.08);

    font-size: 34px;

    margin-bottom: 28px;

    box-shadow:
    0 10px 35px rgba(0,255,170,0.1);

}

.pricing-top h3{

    font-size: 32px;

    color: #fff;

    margin-bottom: 16px;

    font-weight: 700;

}

.pricing-top p{

    color: rgba(255,255,255,0.68);

    line-height: 1.8;

    font-size: 16px;

}

/* PRICE */

.pricing-price{

    margin-bottom: 35px;

    color: rgba(255,255,255,0.65);

    font-size: 18px;

}

.pricing-price span{

    font-size: 58px;

    font-weight: 800;

    color: #00ffae;

    margin-right: 8px;

    text-shadow:
    0 0 18px rgba(0,255,170,0.25);

}

/* FEATURES */

.pricing-features{

    list-style: none;

    margin-bottom: 40px;

    display: flex;

    flex-direction: column;

    gap: 18px;

}

.pricing-features li{

    display: flex;

    align-items: center;

    gap: 12px;

    color: rgba(255,255,255,0.82);

    font-size: 15px;

    line-height: 1.6;

}

.pricing-features i{

    color: #00ffae;

    font-size: 18px;

}

/* BUTTON */

.pricing-btn{

    width: 100%;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 18px;

    border-radius: 18px;

    background:
    linear-gradient(
        135deg,
        #00ffae,
        #00d68f
    );

    color: #000;

    text-decoration: none;

    font-weight: 700;

    font-size: 16px;

    transition: 0.35s ease;

    box-shadow:
    0 10px 30px rgba(0,255,170,0.2);

}

.pricing-btn:hover{

    transform: translateY(-4px);

    box-shadow:
    0 15px 40px rgba(0,255,170,0.35);

}

.featured-btn{

    background:
    linear-gradient(
        135deg,
        #00ffae,
        #7dffcf
    );

}

/* GLASS */

.glass{

    backdrop-filter: blur(18px);

}

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

@media(max-width: 992px){

    .pricing-preview .section-header h2{

        font-size: 48px;

    }

}

@media(max-width: 768px){

    .pricing-preview{

        width: 94%;

    }

    .pricing-preview .section-header h2{

        font-size: 38px;

    }

    .pricing-preview .section-header p{

        font-size: 16px;

    }

    .pricing-card{

        padding: 30px;

        min-height: auto;

    }

    .pricing-top h3{

        font-size: 28px;

    }

    .pricing-price span{

        font-size: 48px;

    }

}

@media(max-width: 500px){

    .pricing-grid{

        grid-template-columns: 1fr;

    }

}