* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, sans-serif;
  background: #070b14;
}

/* HEADER */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(7, 11, 20, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.container {
  max-width: 1280px;
  margin: auto;
  padding: 0 24px;
  height: 64px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 12px;
  font-weight: 700;

  background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

.logo span {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

/* DESKTOP MENU */

.desktop-nav {
  display: flex;
  gap: 32px;
}

.desktop-nav a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.desktop-nav a:hover {
  color: #fff;
}

/* BUTTONS */

.desktop-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.signin-btn {
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  font-size: 14px;
}

.primary-btn {
  background: #f97316;
  border: none;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.primary-btn:hover {
  opacity: 0.9;
}

/* MOBILE BUTTON */

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

/* MOBILE MENU */

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;

  padding: 20px 24px;

  border-top: 1px solid rgba(255, 255, 255, 0.06);

  background: rgba(7, 11, 20, 0.98);
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  padding: 6px 0;
}

.mobile-btn {
  margin-top: 10px;
  width: 100%;
}

.mobile-menu.active {
  display: flex;
}

/* TABLET */

@media (max-width: 992px) {
  .desktop-nav,
  .desktop-buttons {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }
}

/* MOBILE */

@media (max-width: 576px) {
  .container {
    padding: 0 16px;
  }

  .logo span {
    font-size: 16px;
  }

  .logo-icon {
    width: 30px;
    height: 30px;
  }
}
/* HERO SECTION */

```css
/* ==========================
   PREMIUM HERO SECTION
========================== */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;

  background:
    radial-gradient(
      circle at top left,
      rgba(0, 255, 255, 0.08),
      transparent 40%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(59, 130, 246, 0.15),
      transparent 40%
    ),
    #050816;
}

.hero-bg {
  position: absolute;
  inset: 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;

  opacity: 0.4;
}

.hero .hero-container {
  max-width: 1300px;
  margin: auto;

  min-height: 100vh;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;

  padding: 120px 20px 80px;

  position: relative;
  z-index: 2;
}

/* CONTENT */

.hero-content {
  color: white;
}

.hero-badge {
  display: inline-block;

  padding: 10px 18px;

  border-radius: 50px;

  border: 1px solid rgba(0, 255, 255, 0.25);

  background: rgba(0, 255, 255, 0.08);

  color: #22d3ee;

  font-size: 13px;
  letter-spacing: 1px;
}

.hero-content h1 {
  margin-top: 25px;

  font-size: clamp(42px, 6vw, 72px);

  line-height: 1.1;
  font-weight: 800;

  max-width: 700px;
}

.hero-content p {
  margin-top: 25px;

  color: #94a3b8;

  font-size: 18px;

  line-height: 1.8;

  max-width: 600px;
}

/* BUTTONS */

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 35px;
}

.btn-primary {
  padding: 15px 32px;

  border-radius: 12px;

  text-decoration: none;
  color: white;

  font-weight: 600;

  background: linear-gradient(135deg, #06b6d4, #3b82f6);

  box-shadow: 0 0 30px rgba(6, 182, 212, 0.35);
}

.btn-secondary {
  padding: 15px 32px;

  border-radius: 12px;

  text-decoration: none;

  color: white;

  border: 1px solid rgba(255, 255, 255, 0.12);

  background: rgba(255, 255, 255, 0.04);

  backdrop-filter: blur(20px);
}

/* STATS */

.hero-stats {
  display: flex;
  gap: 50px;

  margin-top: 50px;
}

.hero-stats h3 {
  color: white;
  font-size: 32px;
}

.hero-stats span {
  color: #94a3b8;
  font-size: 14px;
}

/* DASHBOARD CARD */

.hero-image {
  display: flex;
  justify-content: center;
}

.dashboard-card {
  width: 420px;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(20px);

  border-radius: 30px;

  padding: 40px;

  text-align: center;

  box-shadow: 0 0 60px rgba(6, 182, 212, 0.12);
}

.voice-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  margin: auto;
  box-shadow: 0 0 40px rgba(34, 211, 238, 0.5);
}

.voice-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dashboard-card h3 {
  margin-top: 25px;
  color: white;
}

.dashboard-card p {
  color: #94a3b8;
  margin-top: 8px;
}

.wave {
  margin-top: 30px;

  display: flex;
  justify-content: center;
  gap: 8px;
}

.wave span {
  width: 6px;
  height: 40px;

  border-radius: 10px;

  background: #22d3ee;

  animation: wave 1.2s infinite ease-in-out;
}

.wave span:nth-child(2) {
  animation-delay: 0.2s;
}

.wave span:nth-child(3) {
  animation-delay: 0.4s;
}

.wave span:nth-child(4) {
  animation-delay: 0.6s;
}

.wave span:nth-child(5) {
  animation-delay: 0.8s;
}

/* ANIMATION */

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes wave {
  0%,
  100% {
    height: 20px;
  }

  50% {
    height: 50px;
  }
}

/* TABLET */

@media (max-width: 992px) {
  .hero .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .dashboard-card {
    width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-stats {
    gap: 25px;
    flex-wrap: wrap;
  }
}
.hero-section {
  padding: 120px 20px 80px;
  background: linear-gradient(180deg, #070b14 0%, #0a1020 100%);
}

.hero-container {
  max-width: 1280px;
  margin: auto;
}

.hero-content {
  text-align: center;
  margin-bottom: 60px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 25px;

  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.3);

  color: #22d3ee;
  font-size: 12px;
  letter-spacing: 2px;
}

.hero-content h1 {
  color: white;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 25px;
}

.hero-content p {
  max-width: 700px;
  margin: auto;
  color: #8b95a9;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 35px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 32px;

  border-radius: 10px;

  background: #1e2a40;
  border: 1px solid rgba(255, 255, 255, 0.1);

  color: white;
  text-decoration: none;

  transition: 0.3s;
}

.hero-btn:hover {
  opacity: 0.9;
}

/* IMAGE GRID */

.hero-grid {
  max-width: 900px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.hero-image {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* STATS */

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;

  margin-top: 60px;
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  color: white;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
}

.stat-item span {
  color: #8b95a9;
  font-size: 14px;
}

/* TABLET */

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats {
    gap: 40px;
  }
}

/* MOBILE */

@media (max-width: 576px) {
  .hero-section {
    padding: 100px 15px 60px;
  }

  .hero-content h1 br {
    display: none;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 25px;
  }

  .stat-item h3 {
    font-size: 24px;
  }
}

.premium-features {
  position: relative;
  padding: 120px 20px;
  background: #08111f;
  overflow: hidden;
}
.pre-container {
  max-width: 1280px;
  margin: auto;
  padding: 0 24px;
  align-items: center;
  justify-content: space-between;
}

.premium-features::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);

  background-size: 50px 50px;
}

.section-title {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 70px;
  position: relative;
  z-index: 2;
}

.section-badge {
  display: inline-block;
  padding: 10px 18px;

  border-radius: 50px;

  color: #22d3ee;

  border: 1px solid rgba(34, 211, 238, 0.2);

  background: rgba(34, 211, 238, 0.08);

  font-size: 13px;
  letter-spacing: 1px;
}

.section-title h2 {
  color: #fff;
  font-size: clamp(36px, 5vw, 54px);
  margin: 20px 0;
  font-weight: 800;
}

.section-title p {
  color: #94a3b8;
  font-size: 18px;
  line-height: 1.8;
}

.features-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.feature-card {
  position: relative;

  background: rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(20px);

  border-radius: 24px;

  padding: 30px;

  transition: 0.4s;
}

.feature-card:hover {
  transform: translateY(-10px);

  border-color: rgba(34, 211, 238, 0.3);

  box-shadow: 0 0 30px rgba(34, 211, 238, 0.15);
}

.feature-icon {
  width: 60px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  margin-bottom: 20px;

  background: linear-gradient(
    135deg,
    rgba(34, 211, 238, 0.15),
    rgba(59, 130, 246, 0.15)
  );

  border: 1px solid rgba(34, 211, 238, 0.2);
}

.feature-icon i {
  color: #22d3ee;
  font-size: 24px;
}

.feature-card h3 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 18px;
}

.feature-card p {
  color: #94a3b8;
  line-height: 1.8;
  font-size: 14px;
}

/* Floating Animation */

.feature-card:nth-child(odd) {
  animation: floatCard 5s ease-in-out infinite;
}

.feature-card:nth-child(even) {
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* Tablet */

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */

@media (max-width: 576px) {
  .premium-features {
    padding: 40px 15px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .section-title p {
    font-size: 16px;
  }
}

.premium-process {
  padding: 120px 20px;

  background: #050816;

  position: relative;
  overflow: hidden;
}

.works-container {
  max-width: 1280px;
  margin: auto;
  padding: 0 24px;
  align-items: center;
  justify-content: space-between;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;

  margin-top: 70px;
}

.process-card {
  position: relative;

  background: rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(20px);

  border-radius: 24px;

  padding: 35px;

  overflow: hidden;

  transition: 0.4s;
}

.process-card:hover {
  transform: translateY(-10px);

  border-color: rgba(249, 115, 22, 0.4);

  box-shadow: 0 0 40px rgba(249, 115, 22, 0.15);
}

.step-number {
  position: absolute;

  top: 15px;
  right: 20px;

  font-size: 60px;
  font-weight: 900;

  color: rgba(255, 255, 255, 0.04);
}

.process-icon {
  width: 70px;
  height: 70px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 20px;

  margin-bottom: 25px;

  background: linear-gradient(
    135deg,
    rgba(249, 115, 22, 0.15),
    rgba(255, 80, 80, 0.1)
  );

  border: 1px solid rgba(249, 115, 22, 0.2);
}

.process-icon i {
  color: #fb923c;
  font-size: 28px;
}

.process-card h3 {
  color: white;
  margin-bottom: 12px;

  font-size: 20px;
}

.process-card p {
  color: #94a3b8;
  line-height: 1.8;
  font-size: 14px;
}

/* Tablet */

@media (max-width: 992px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */

@media (max-width: 576px) {
  .premium-process {
    padding: 80px 15px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }
}

```css
/* ==========================
   PREMIUM USE CASES
========================== */

.premium-usecases {
  padding: 120px 20px;

  background: #08111f;

  position: relative;
  overflow: hidden;
}

.usecase-container {
  max-width: 1280px;
  margin: auto;
  padding: 0 24px;
  align-items: center;
  justify-content: space-between;
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 25px;

  margin-top: 70px;
}

.usecase-card {
  position: relative;

  padding: 30px;

  border-radius: 24px;

  background: rgba(255, 255, 255, 0.03);

  backdrop-filter: blur(20px);

  transition: 0.4s;

  overflow: hidden;
}

.usecase-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 0 35px rgba(255, 255, 255, 0.08);
}

.usecase-icon {
  width: 70px;
  height: 70px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  margin-bottom: 20px;

  font-size: 28px;
}

.usecase-card h3 {
  color: white;
  font-size: 20px;

  margin-bottom: 10px;
}

.usecase-card p {
  color: #94a3b8;

  line-height: 1.8;
}

/* Cyan */

.cyan {
  border: 1px solid rgba(34, 211, 238, 0.2);
}

.cyan .usecase-icon {
  background: rgba(34, 211, 238, 0.12);
  color: #22d3ee;
}

/* Purple */

.purple {
  border: 1px solid rgba(168, 85, 247, 0.2);
}

.purple .usecase-icon {
  background: rgba(168, 85, 247, 0.12);
  color: #a855f7;
}

/* Green */

.green {
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.green .usecase-icon {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
}

/* Orange */

.orange {
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.orange .usecase-icon {
  background: rgba(249, 115, 22, 0.12);
  color: #f97316;
}

/* Pink */

.pink {
  border: 1px solid rgba(236, 72, 153, 0.2);
}

.pink .usecase-icon {
  background: rgba(236, 72, 153, 0.12);
  color: #ec4899;
}

/* Blue */

.blue {
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.blue .usecase-icon {
  background: rgba(59, 130, 246, 0.12);
  color: #3b82f6;
}

/* Yellow */

.yellow {
  border: 1px solid rgba(234, 179, 8, 0.2);
}

.yellow .usecase-icon {
  background: rgba(234, 179, 8, 0.12);
  color: #eab308;
}

/* Lime */

.lime {
  border: 1px solid rgba(132, 204, 22, 0.2);
}

.lime .usecase-icon {
  background: rgba(132, 204, 22, 0.12);
  color: #84cc16;
}

/* Tablet */

@media (max-width: 992px) {
  .usecase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */

@media (max-width: 576px) {
  .premium-usecases {
    padding: 80px 15px;
  }

  .usecase-grid {
    grid-template-columns: 1fr;
  }
}

.premium-usecases {
  padding: 120px 20px;

  background: #08111f;

  position: relative;
  overflow: hidden;
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 25px;

  margin-top: 70px;
}

.usecase-card {
  position: relative;

  padding: 30px;

  border-radius: 24px;

  background: rgba(255, 255, 255, 0.03);

  backdrop-filter: blur(20px);

  transition: 0.4s;

  overflow: hidden;
}

.usecase-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 0 35px rgba(255, 255, 255, 0.08);
}

.usecase-icon {
  width: 70px;
  height: 70px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  margin-bottom: 20px;

  font-size: 28px;
}

.usecase-card h3 {
  color: white;
  font-size: 20px;

  margin-bottom: 10px;
}

.usecase-card p {
  color: #94a3b8;

  line-height: 1.8;
}

/* Cyan */

.cyan {
  border: 1px solid rgba(34, 211, 238, 0.2);
}

.cyan .usecase-icon {
  background: rgba(34, 211, 238, 0.12);
  color: #22d3ee;
}

/* Purple */

.purple {
  border: 1px solid rgba(168, 85, 247, 0.2);
}

.purple .usecase-icon {
  background: rgba(168, 85, 247, 0.12);
  color: #a855f7;
}

/* Green */

.green {
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.green .usecase-icon {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
}

/* Orange */

.orange {
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.orange .usecase-icon {
  background: rgba(249, 115, 22, 0.12);
  color: #f97316;
}

/* Pink */

.pink {
  border: 1px solid rgba(236, 72, 153, 0.2);
}

.pink .usecase-icon {
  background: rgba(236, 72, 153, 0.12);
  color: #ec4899;
}

/* Blue */

.blue {
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.blue .usecase-icon {
  background: rgba(59, 130, 246, 0.12);
  color: #3b82f6;
}

/* Yellow */

.yellow {
  border: 1px solid rgba(234, 179, 8, 0.2);
}

.yellow .usecase-icon {
  background: rgba(234, 179, 8, 0.12);
  color: #eab308;
}

/* Lime */

.lime {
  border: 1px solid rgba(132, 204, 22, 0.2);
}

.lime .usecase-icon {
  background: rgba(132, 204, 22, 0.12);
  color: #84cc16;
}

/* Tablet */

@media (max-width: 992px) {
  .usecase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */

@media (max-width: 576px) {
  .premium-usecases {
    padding: 80px 15px;
  }

  .usecase-grid {
    grid-template-columns: 1fr;
  }
}
.how-it-works {
  padding: 100px 20px;
  background: #070b14;
}
.orange-badge {
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.25);
  color: #fb923c;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step-card {
  position: relative;
  padding: 30px;
  border-radius: 18px;
  background: #0e1628;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: 0.3s;
}
.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.3);
}
.step-number {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 48px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
}
.step-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 20px;
  background: linear-gradient(
    135deg,
    rgba(249, 115, 22, 0.2),
    rgba(239, 68, 68, 0.1)
  );
  border: 1px solid rgba(249, 115, 22, 0.2);
}
.step-icon i {
  color: #fb923c;
  font-size: 22px;
}
.step-card h3 {
  color: white;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
.step-card p {
  color: #6b7a94;
  font-size: 14px;
  line-height: 1.7;
} /* TABLET */
@media (max-width: 992px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
} /* MOBILE */
@media (max-width: 576px) {
  .how-it-works {
    padding: 70px 15px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .step-card {
    padding: 24px;
  }
  .step-number {
    font-size: 40px;
  }
}
.features-section {
  padding: 100px 20px;
  background: #0a1020;
}
.feature-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 30px;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
  color: #22d3ee;
  font-size: 12px;
  letter-spacing: 2px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  background: #0e1628;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 24px;
  transition: 0.3s;
  cursor: pointer;
}
.feature-card:hover {
  border-color: rgba(6, 182, 212, 0.3);
  transform: translateY(-5px);
}
.feature-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 10px;
  background: rgba(6, 182, 212, 0.1);
}
.feature-icon i {
  color: #22d3ee;
  font-size: 18px;
}
.feature-card h3 {
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.feature-card p {
  color: #6b7a94;
  font-size: 14px;
  line-height: 1.7;
} /* TABLET */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
} /* MOBILE */
@media (max-width: 576px) {
  .features-section {
    padding: 70px 15px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.premium-pricing {
  padding: 120px 20px;

  background: #050816;

  position: relative;
  overflow: hidden;
}
.pricing-container {
  max-width: 1280px;
  margin: auto;
  padding: 0 24px;
  align-items: center;
  justify-content: space-between;
}

.pricing-grid {
  margin-top: 70px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

.pricing-card {
  position: relative;

  padding: 40px;

  border-radius: 30px;

  background: rgba(255, 255, 255, 0.03);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: 0.4s;
}

.pricing-card:hover {
  transform: translateY(-12px);

  box-shadow: 0 0 40px rgba(34, 211, 238, 0.08);
}

.featured {
  border: 1px solid rgba(249, 115, 22, 0.4);

  background: linear-gradient(
    180deg,
    rgba(249, 115, 22, 0.08),
    rgba(255, 255, 255, 0.03)
  );

  box-shadow: 0 0 60px rgba(249, 115, 22, 0.12);
}

.popular-tag {
  position: absolute;

  top: -14px;
  left: 50%;

  transform: translateX(-50%);

  background: linear-gradient(135deg, #f97316, #fb923c);

  color: white;

  padding: 8px 18px;

  border-radius: 30px;

  font-size: 12px;
  font-weight: 700;
}

.pricing-card h3 {
  color: white;

  font-size: 24px;

  margin-bottom: 10px;
}

.plan-desc {
  color: #94a3b8;

  line-height: 1.7;

  margin-bottom: 25px;
}

.price {
  margin-bottom: 25px;
}

.price span {
  color: white;

  font-size: 52px;
  font-weight: 800;
}

.price small {
  color: #94a3b8;
}

.custom span {
  font-size: 42px;
}

.pricing-btn {
  display: block;

  text-align: center;

  padding: 15px;

  border-radius: 14px;

  text-decoration: none;

  color: white;

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.08);

  margin-bottom: 30px;
}

.featured-btn {
  background: linear-gradient(135deg, #f97316, #fb923c);

  border: none;
}

.pricing-card ul {
  list-style: none;
}

.pricing-card ul li {
  display: flex;
  align-items: center;

  gap: 12px;

  color: #94a3b8;

  margin-bottom: 15px;
}

.pricing-card ul li i {
  color: #22d3ee;
}

.featured ul li i {
  color: #fb923c;
}

/* TABLET */

@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr;

    max-width: 650px;

    margin: auto;
    margin-top: 60px;
  }
}

/* MOBILE */

@media (max-width: 576px) {
  .premium-pricing {
    padding: 80px 15px;
  }

  .pricing-card {
    padding: 30px;
  }

  .price span {
    font-size: 42px;
  }
}

.premium-cta {
  padding: 120px 20px;

  background: #08111f;

  position: relative;
  overflow: hidden;
}

.cta-box {
  position: relative;

  max-width: 1100px;
  margin: auto;

  padding: 80px 50px;

  text-align: center;

  border-radius: 40px;

  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(25px);

  overflow: hidden;
}

.cta-glow {
  position: absolute;

  width: 500px;
  height: 500px;

  background: radial-gradient(
    circle,
    rgba(34, 211, 238, 0.18),
    transparent 70%
  );

  top: -250px;
  left: 50%;

  transform: translateX(-50%);
}

.cta-badge {
  display: inline-block;

  padding: 10px 18px;

  border-radius: 40px;

  color: #22d3ee;

  border: 1px solid rgba(34, 211, 238, 0.25);

  background: rgba(34, 211, 238, 0.08);

  font-size: 13px;

  letter-spacing: 1px;

  position: relative;
  z-index: 2;
}

.cta-box h2 {
  color: white;

  font-size: clamp(36px, 5vw, 60px);

  line-height: 1.15;

  margin-top: 25px;

  position: relative;
  z-index: 2;
}

.cta-box p {
  color: #94a3b8;

  max-width: 750px;

  margin: 25px auto 40px;

  line-height: 1.8;

  font-size: 18px;

  position: relative;
  z-index: 2;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;

  margin-bottom: 60px;

  position: relative;
  z-index: 2;
}

.cta-primary {
  padding: 16px 34px;

  border-radius: 14px;

  text-decoration: none;

  color: white;

  font-weight: 600;

  background: linear-gradient(135deg, #06b6d4, #3b82f6);

  box-shadow: 0 0 30px rgba(6, 182, 212, 0.25);
}

.cta-secondary {
  padding: 16px 34px;

  border-radius: 14px;

  text-decoration: none;

  color: white;

  border: 1px solid rgba(255, 255, 255, 0.1);

  background: rgba(255, 255, 255, 0.04);
}

.cta-stats {
  display: flex;
  justify-content: center;
  gap: 70px;

  position: relative;
  z-index: 2;
}

.cta-stat h3 {
  color: white;

  font-size: 32px;
  font-weight: 800;

  margin-bottom: 8px;
}

.cta-stat span {
  color: #94a3b8;
}

/* TABLET */

@media (max-width: 992px) {
  .cta-stats {
    gap: 35px;
  }
}

/* MOBILE */

@media (max-width: 576px) {
  .premium-cta {
    padding: 80px 15px;
  }

  .cta-box {
    padding: 60px 25px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-stats {
    flex-direction: column;
    gap: 25px;
  }

  .cta-box p {
    font-size: 16px;
  }
}

.premium-footer {
  background: #050816;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  padding: 100px 20px 30px;

  position: relative;
  overflow: hidden;
}
.footer-container {
  max-width: 1280px;
  margin: auto;
  padding: 0 24px;

  align-items: center;
  justify-content: space-between;
}
.footer-grid {
  display: grid;

  grid-template-columns: 2fr 1fr 1fr 1fr;

  gap: 50px;

  margin-bottom: 70px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 20px;
}

.logo-icon {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: linear-gradient(135deg, #06b6d4, #3b82f6);

  color: white;
  font-weight: 700;
}

.footer-logo span {
  color: white;

  font-size: 22px;
  font-weight: 700;
}

.footer-company p {
  color: #94a3b8;

  line-height: 1.8;

  max-width: 350px;

  margin-bottom: 25px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.06);

  color: #94a3b8;

  text-decoration: none;

  transition: 0.3s;
}

.social-links a:hover {
  color: #22d3ee;

  transform: translateY(-3px);

  border-color: rgba(34, 211, 238, 0.3);
}

/* Links */

.footer-column h4 {
  color: white;

  margin-bottom: 20px;

  font-size: 18px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  color: #94a3b8;

  text-decoration: none;

  transition: 0.3s;
}

.footer-column a:hover {
  color: white;
}

/* Newsletter */

.newsletter-box {
  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 30px;

  padding: 35px;

  border-radius: 25px;

  background: rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(255, 255, 255, 0.08);

  margin-bottom: 50px;
}

.newsletter-box h3 {
  color: white;

  margin-bottom: 10px;
}

.newsletter-box p {
  color: #94a3b8;
}

.newsletter-form {
  display: flex;
  gap: 15px;

  min-width: 450px;
}

.newsletter-form input {
  flex: 1;

  padding: 15px 20px;

  border: none;

  outline: none;

  border-radius: 14px;

  color: white;

  background: rgba(255, 255, 255, 0.05);
}

.newsletter-form button {
  border: none;

  padding: 15px 25px;

  border-radius: 14px;

  cursor: pointer;

  color: white;

  font-weight: 600;

  background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

/* Bottom */

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding-top: 30px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  color: #64748b;
}

.bottom-links {
  display: flex;
  gap: 25px;
}

.bottom-links a {
  color: #64748b;

  text-decoration: none;
}

.bottom-links a:hover {
  color: white;
}

/* Tablet */

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter-form {
    width: 100%;
    min-width: auto;
  }
}

/* Mobile */

@media (max-width: 576px) {
  .premium-footer {
    padding: 80px 15px 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
