@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #0062ff;
  --primary-light: #3d8eff;
  --primary-dark: #3075ff;
  --secondary: #4cc9f0;
  --accent: #3877ec;
  --dark: #15151e;
  --dark-light: #232340;
  --light: #fafafa;
  --text-dark: #1a1a2e;
  --text-light: #fff;
  --success: #06d6a0;
  --warning: #ffbe0b;
  --danger: #ef476f;
  --gray: #f0f2f5;
  --gray-dark: #d1d3d8;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 30px rgba(27, 32, 50, 0.12);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: var(--light);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  outline: none;
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  gap: 8px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-light);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: white;
  color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 98, 255, 0.2);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 4px solid var(--primary);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--text-light);
  border: 4px solid transparent;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 98, 255, 0.2);
}

.btn i {
  transition: var(--transition);
}

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

header {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.4s ease;
}

header.scrolled {
  padding: 5px 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  transition: var(--transition);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo i {
  color: var(--primary);
  font-size: 28px;
  transition: transform 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.logo:hover i {
  transform: rotate(360deg) scale(1.2);
}

.logo h1 {
  color: var(--primary);
  font-size: 24px;
  font-weight: 700;
  transition: var(--transition);
}

.beta-tag {
  background-color: var(--accent);
  color: var(--text-light);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-left: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
}

nav ul li a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 16px;
  transition: var(--transition);
  position: relative;
}

nav ul li a:hover {
  color: var(--primary);
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  background-color: var(--primary);
  bottom: -8px;
  left: 0;
  transition: width 0.3s cubic-bezier(0.76, 0, 0.24, 1);
  border-radius: 2px;
}

nav ul li a:hover::after {
  width: 100%;
}

.auth-buttons {
  display: flex;
  gap: 15px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary);
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
  z-index: 1001;
}

.mobile-menu-btn:hover {
  background-color: rgba(0, 98, 255, 0.1);
  transform: scale(1.1);
}

.mobile-menu-btn i {
  transition: transform 0.3s ease;
}

.mobile-menu-btn:active {
  transform: scale(0.95);
}

@media screen and (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    box-shadow: var(--shadow-md);
    padding: 20px;
    z-index: 999;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }

  nav.active {
    display: block;
    animation: slideDown 0.3s forwards;
    background-color: rgb(255, 255, 255);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
  }
  
  nav ul {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  nav ul li {
    width: 100%;
    text-align: center;
  }

  nav ul li a {
    display: block;
    padding: 12px 0;
    font-size: 18px;
  }

  .auth-buttons {
    display: none;
  }

  .auth-buttons.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 24px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    padding: 15px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    gap: 10px;
    animation: slideDown 0.3s forwards;
  }
  
  .mobile-menu-btn {
    padding: 10px;
    margin-right: -10px;
  }
}

.dark-mode .mobile-menu-btn {
  color: var(--text-light);
}

.dark-mode nav.active {
  background-color: rgb(26, 26, 46);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
}

.dark-mode .auth-buttons.active {
  background-color: rgba(26, 26, 46, 0.9);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
}

.hero {
  margin-top: 7%;
  border-radius: var(--radius-lg);
  padding-top: 60px;
  padding-right: 80px;
  padding-left: 80px;
  margin-left: 5%;
  margin-right: 5%;
  padding-bottom: 60px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0, 98, 255, 0.15);
}

.hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.8;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 0 0 50%;
  animation: slideInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-text h1 {
  font-size: 54px;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background: linear-gradient(to right, #ffffff, #e0e7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 20px;
  margin-bottom: 40px;
  max-width: 540px;
  opacity: 0.9;
}

.hero-image {
  flex: 0 0 45%;
  display: flex;
  justify-content: flex-end;
  animation: floatIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  perspective: 1000px;
}

.hero-image img {
  width: 100%;
  max-width: 600px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-image img:hover {
  transform: perspective(1000px) rotateY(0deg) translateY(-15px);
}

.features {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.features::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--primary-light) 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 0.1;
  z-index: -1;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  animation: fadeInUp 0.8s ease-out;
}

.section-header::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background-color: var(--primary);
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 18px;
  position: relative;
}

.section-header h2::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background: var(--primary);
  opacity: 0.1;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  top: -20px;
  z-index: -1;
}

.section-header p {
  font-size: 20px;
  color: var(--text-dark);
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.8;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.feature-card {
  background-color: var(--text-light);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid transparent;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s forwards;
  animation-delay: calc(var(--delay) * 0.1s);
}

.feature-card:nth-child(1) {
  --delay: 1;
}

.feature-card:nth-child(2) {
  --delay: 2;
}

.feature-card:nth-child(3) {
  --delay: 3;
}

.feature-card:nth-child(4) {
  --delay: 4;
}

.feature-card:nth-child(5) {
  --delay: 5;
}

.feature-card:nth-child(6) {
  --delay: 6;
}

.feature-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-bottom: 4px solid var(--primary);
}

.feature-card::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(61, 142, 255, 0.05) 0%, rgba(0, 98, 255, 0.01) 100%);
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light);
  border-radius: 20px;
  margin-bottom: 25px;
  transition: all 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.feature-card:hover .feature-icon {
  background-color: var(--primary);
  transform: scale(1.15);
}

.feature-icon i {
  font-size: 36px;
  color: var(--text-light);
}

.feature-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--primary-dark);
  transition: var(--transition);
}

.feature-card:hover h3 {
  transform: translateX(5px);
}

.feature-card p {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 20px;
  opacity: 0.8;
}

.feature-card a {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.feature-card a i {
  margin-left: 8px;
  transition: var(--transition);
}

.feature-card a:hover i {
  transform: translateX(8px);
}

.dashboard-previews {
  padding: 100px 0;
  background-color: #f8fafc;
  position: relative;
}

.dashboard-previews::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, var(--light), transparent);
  z-index: 0;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 14px 30px;
  border-radius: 30px;
  background-color: var(--text-light);
  color: var(--text-dark);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

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

.tab-btn:hover::before {
  left: 100%;
}

.tab-btn.active {
  background-color: var(--primary);
  color: var(--text-light);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 98, 255, 0.15);
}

.tab-btn:hover:not(.active) {
  background-color: var(--gray);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tab-content {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.tab-content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: zoomIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dashboard-preview {
  background-color: var(--text-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.dashboard-preview img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dashboard-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.dashboard-preview:hover .dashboard-overlay {
  opacity: 1;
}

.dashboard-preview:hover img {
  transform: scale(1.05);
}

.dashboard-overlay h3 {
  color: var(--text-light);
  font-size: 32px;
  margin-bottom: 20px;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0;
}

.dashboard-overlay .btn {
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0;
}

.dashboard-preview:hover .dashboard-overlay h3,
.dashboard-preview:hover .dashboard-overlay .btn {
  transform: translateY(0);
  opacity: 1;
}

.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text-light);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-left: 5%;
  margin-right: 5%;
  margin-bottom: 5%;
  box-shadow: 0 20px 80px rgba(0, 98, 255, 0.2);
}

.cta::before,
.cta::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  z-index: 0;
}

.cta::before {
  top: -150px;
  right: -50px;
  animation: floatAround 15s infinite alternate ease-in-out;
}

.cta::after {
  bottom: -150px;
  left: -50px;
  animation: floatAround 15s infinite alternate-reverse ease-in-out;
}

@keyframes floatAround {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(30px, -30px);
  }

  100% {
    transform: translate(-30px, 30px);
  }
}

.cta h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out;
}

.cta p {
  font-size: 20px;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cta .btn-outline {
  border-color: var(--text-light);
  color: var(--text-light);
}

.cta .btn-outline:hover {
  background-color: var(--text-light);
  color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.cta .btn-primary {
  background-color: var(--text-light);
  color: var(--primary);
}

.cta .btn-primary:hover {
  background-color: var(--primary-light);
  color: var(--text-light);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  border-top-right-radius: var(--radius-lg);
  border-top-left-radius: var(--radius-lg);
  background-color: var(--dark);
  color: var(--text-light);
  padding-top: 80px;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-logo i {
  color: var(--primary-light);
  font-size: 28px;
  animation: pulse 3s infinite;
}

.footer-logo h2 {
  color: var(--text-light);
  font-size: 24px;
  font-weight: 700;
}

.footer-section h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--primary-light);
  position: relative;
  padding-bottom: 15px;
}

.footer-section h3::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--primary-light);
  bottom: 0;
  left: 0;
  border-radius: 2px;
}

.footer-section p {
  margin-bottom: 20px;
  font-size: 16px;
  opacity: 0.8;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.footer-links li:hover {
  transform: translateX(10px);
}

.footer-links a {
  color: var(--text-light);
  opacity: 0.8;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary-light);
}

.footer-links i {
  margin-right: 10px;
  color: var(--primary-light);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-links a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.social-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  opacity: 0;
  z-index: -1;
  transition: var(--transition);
}

.social-links a:hover::before {
  opacity: 1;
}

.social-links a:hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
  text-align: center;
  font-size: 16px;
  opacity: 0.7;
}

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

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

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

/* Dark Mode Styles */
.dark-mode {
  --light: #1a1a2e;
  --text-dark: #e1e1e1;
  --text-light: #e1e1e1;
  --gray: #232340;
  --gray-dark: #383854;
}

.dark-mode header {
  background-color: rgba(26, 26, 46, 0.855);
}

.dark-mode .feature-card,
.dark-mode .testimonial-card,
.dark-mode .dashboard-preview {
  background-color: var(--dark-light);
}

.dark-mode .tab-btn {
  background-color: var(--dark-light);
  color: var(--text-light);
}

.dark-mode .dashboard-previews {
  background-color: #1a1a2a;
}

/* Responsive Media Queries */
@media screen and (max-width: 1200px) {
  .hero-text h1 {
    font-size: 44px;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
}

@media screen and (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    gap: 40px;
  }

  .hero-text,
  .hero-image {
    flex: 0 0 100%;
    text-align: center;
  }

  .hero-text p {
    margin: 0 auto 40px auto;
  }

  .hero-image {
    justify-content: center;
  }

  .hero-image img {
    max-width: 500px;
  }

  .cta-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 15px;
  }
}

@media screen and (max-width: 768px) {

  .header-content {
    padding: 15px 0;
  }

  nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--text-light);
    /* box-shadow: var(--shadow-md); */
    padding: 20px;
    z-index: 999;
  }

  nav.active {
    display: block;
    animation: slideDown 0.3s forwards;
  }

  nav ul {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero {
    padding: 50px 30px;
    margin-top: 80px;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
  }

  .section-header h2 {
    font-size: 36px;
  }

  .section-header p {
    font-size: 18px;
  }

  .auth-buttons {
    display: none;
  }

  .auth-buttons.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 24px;
    background-color: var(--text-light);
    padding: 15px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    gap: 10px;
  }
}

@media screen and (max-width: 576px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    border-radius: var(--radius-md);
    margin: 92px 16px 0 16px;
    padding: 40px 20px;
  }

  .hero-text h1 {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .hero-text p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .hero-image img {
    max-width: 100%;
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .feature-card {
    padding: 25px 20px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .feature-icon i {
    font-size: 28px;
  }

  .feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary);
  }

  .section-header h2 {
    font-size: 28px;
  }

  .section-header p {
    font-size: 16px;
  }

  .cta {
    border-radius: var(--radius-md);
    margin: 0 16px 30px 16px;
    padding: 60px 20px;
  }

  .cta h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .cta p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    max-width: 200px;
    margin: 0 auto;
  }

  .tabs {
    gap: 10px;
  }

  .tab-btn {
    padding: 10px 20px;
    font-size: 14px;
    width: 100%;
  }

  .footer-logo h2 {
    font-size: 20px;
  }

  .footer-section h3 {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .social-links a {
    width: 40px;
    height: 40px;
  }

  .footer-bottom {
    padding: 15px 0;
    font-size: 14px;
  }
}

@media screen and (max-width: 400px) {
  .logo h1 {
    font-size: 20px;
  }

  .beta-tag {
    font-size: 10px;
    padding: 3px 6px;
  }

  .hero-text h1 {
    font-size: 28px;
  }

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

  .features,
  .dashboard-previews {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }
}

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

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