/* Modern Landing Page Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
  color: #000000;
  background: #ffffff;
  overflow-x: hidden;
  font-size: 16px;
}

.landing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navigation Bar */
.navbar {
  background: #1a1a1a;
  border-bottom: 1px solid #666666;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.navbar-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #32cd32;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  border: 3px solid #000000;
}

.navbar-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.navbar-link {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  transition: opacity 0.2s ease;
}

.navbar-link:hover {
  opacity: 0.6;
}

.navbar-cta {
  background: #32cd32;
  color: #ffffff !important;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
  border: none;
}

.navbar-cta:hover {
  opacity: 0.9;
  color: #ffffff !important;
}

.navbar-cta:visited {
  color: #ffffff !important;
}

/* Mobile Menu Toggle */
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #000000;
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
}

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

.mobile-menu-content {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: white;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 2rem;
}

.mobile-menu.active .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #000000;
}

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu-link {
  text-decoration: none;
  color: #000000;
  font-weight: 600;
  font-size: 1.125rem;
  display: block;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}

.mobile-menu-link:hover {
  opacity: 0.6;
}

.mobile-menu-cta {
  margin-top: 2rem;
  display: block;
  text-align: center;
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }

  .navbar-cta {
    display: none;
  }

  .navbar-toggle {
    display: block;
  }
}

/* Hero Section */
.hero-section {
  background: #1a1a1a;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(50, 205, 50, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(50, 205, 50, 0.08) 0%,
      transparent 50%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  color: white;
}

.hero-text {
  text-align: center;
  max-width: 900px;
}

.hero-video {
  position: relative;
  width: 100%;
  max-width: 900px;
  overflow: visible;
}

.hero-video img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-video video {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 20px;
  border: 5px solid #000;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-badge {
  display: inline-block;
  background: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid #e2e8f0;
  color: #000000;
}

.hero-title {
  font-size: clamp(2rem, calc(1.5rem + 3vw), 5.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.handwritten-underline {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.handwritten-underline::after {
  content: "";
  position: absolute;
  left: -5%;
  bottom: -3px;
  width: 110%;
  height: 25px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 25'%3E%3C!-- Main wavy underline --%3E%3Cpath d='M 5,15 Q 80,12 125,14 T 250,13 T 375,15 T 495,13' stroke='%23FCD34D' stroke-width='3.5' fill='none' stroke-linecap='round' opacity='0.9'/%3E%3C!-- Second subtle line --%3E%3Cpath d='M 15,18 Q 90,16 135,17 T 260,16 T 385,18 T 485,16' stroke='%23FCD34D' stroke-width='2.5' fill='none' stroke-linecap='round' opacity='0.6'/%3E%3C!-- Little dots for organic feel --%3E%3Ccircle cx='30' cy='20' r='1.5' fill='%23FCD34D' opacity='0.7'/%3E%3Ccircle cx='180' cy='19' r='1.5' fill='%23FCD34D' opacity='0.7'/%3E%3Ccircle cx='320' cy='20' r='1.5' fill='%23FCD34D' opacity='0.7'/%3E%3Ccircle cx='450' cy='18' r='1.5' fill='%23FCD34D' opacity='0.7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  animation: drawUnderline 0.8s ease-out;
}

@keyframes drawUnderline {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

.hero-subtitle {
  font-size: clamp(1rem, calc(0.85rem + 0.35vw), 1.25rem);
  font-weight: 400;
  margin-bottom: 3rem;
  color: #d1d5db;
  max-width: 800px;
  line-height: 1.6;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-container {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #32cd32;
  color: white;
  text-decoration: none;
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 12px rgba(50, 205, 50, 0.3);
}

.hero-cta:hover {
  opacity: 0.9;
}

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  color: #ffffff !important;
  text-decoration: none;
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  border: 2px solid #ffffff;
  box-shadow: none;
}

.hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff !important;
}

.hero-cta-secondary:visited {
  color: #ffffff !important;
}

/* Features Section */
.features-section {
  padding: 6rem 0;
  background: #32cd32;
}

.section-title {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: clamp(1.75rem, calc(1.5rem + 1.5vw), 3rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: clamp(1rem, calc(0.9rem + 0.25vw), 1.125rem);
  color: white;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.feature-card {
  background: #1a1a1a;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
  border: 1px solid #666666;
}

.feature-card:hover {
  box-shadow: 0 8px 20px rgba(50, 205, 50, 0.2);
  border-color: #32cd32;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-size: 2rem;
  color: white;
}

.feature-icon.icon-ai {
  background: #6366f1;
}

.feature-icon.icon-data {
  background: #3b82f6;
}

.feature-icon.icon-speed {
  background: #f59e0b;
}

.feature-icon.icon-chart {
  background: #32cd32;
}

.feature-icon.icon-safe {
  background: #8b5cf6;
}

.feature-icon.icon-simple {
  background: #ec4899;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-align: center;
}

.feature-description {
  color: #d1d5db;
  line-height: 1.7;
  font-size: 1rem;
  text-align: center;
}

/* How It Works Section */
.how-it-works {
  padding: 6rem 0;
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 10% 20%,
      rgba(50, 205, 50, 0.15) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(50, 205, 50, 0.12) 0%,
      transparent 40%
    );
  pointer-events: none;
}

.steps-grid {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 4rem auto 0;
  padding: 2rem 0;
}

.step-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
  opacity: 0.3;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.step-card.active {
  opacity: 1;
  transform: translateY(0);
}

.step-card:nth-child(even) {
  flex-direction: row-reverse;
}

.step-number {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: #f1f5f9;
  color: #94a3b8;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 800;
  border: 2px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 2;
  transition: all 0.5s ease;
}

.step-card.active .step-number {
  background: #32cd32;
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(50, 205, 50, 0.4);
  transform: scale(1.1);
}

.step-content {
  flex: 1;
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid #666666;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.5s ease;
}

.step-card.active .step-content {
  border-color: #32cd32;
  box-shadow: 0 8px 20px rgba(50, 205, 50, 0.3);
  background: #1a1a1a;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.step-description {
  color: #d1d5db;
  line-height: 1.7;
  font-size: 1rem;
}

.step-card.active .step-title {
  color: #32cd32;
}

/* Responsive */
@media (max-width: 768px) {
  .step-card {
    flex-direction: row !important;
    padding-left: 0;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .step-content {
    padding: 1.5rem;
  }
}

/* Demo Section */
.demo-section {
  padding: 6rem 0;
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.demo-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 80% 20%,
      rgba(50, 205, 50, 0.15) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 20% 90%,
      rgba(50, 205, 50, 0.12) 0%,
      transparent 40%
    );
  pointer-events: none;
}

.demo-section .section-title,
.demo-section .section-subtitle {
  color: #ffffff;
}

.demo-container {
  position: relative;
  z-index: 1;
  background: #1a1a1a;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid #666666;
}

.demo-input {
  background: #0f0f0f;
  border: 1px solid #666666;
  border-radius: 16px;
  padding: 2rem;
  font-size: 1rem;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 2rem;
  font-family: "Inter", sans-serif;
}

.demo-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.demo-metric {
  background: #1a1a1a;
  padding: 1.5rem;
  border-radius: 16px;
  text-align: center;
  border: 2px solid #666666;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.demo-metric-value {
  font-size: 2rem;
  font-weight: 800;
  color: #22c55e;
}

.demo-metric-label {
  font-size: 0.875rem;
  color: #32cd32;
  margin-top: 0.5rem;
  font-weight: 600;
}

.demo-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #32cd32;
  color: white;
  text-decoration: none;
  padding: 1.5rem 3rem;
  border-radius: 50px;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 12px rgba(50, 205, 50, 0.3);
}

.demo-cta:hover {
  opacity: 0.9;
}

/* Pricing Section */
.pricing-section {
  padding: 5rem 0;
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 50% 10%,
      rgba(50, 205, 50, 0.15) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 30% 90%,
      rgba(50, 205, 50, 0.12) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(50, 205, 50, 0.08) 0%,
      transparent 30%
    );
  pointer-events: none;
}

.pricing-section .section-title,
.pricing-section .section-subtitle {
  color: #ffffff;
}

.pricing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid #666666;
}

.pricing-card:hover {
  box-shadow: 0 8px 20px rgba(50, 205, 50, 0.2);
  border-color: #32cd32;
}

.pricing-card.featured {
  border: 2px solid #32cd32;
}

.pricing-card.founder {
  border: 2px solid #f59e0b;
  background: linear-gradient(180deg, #fffbeb 0%, white 30%);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  right: 2rem;
  background: #32cd32;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.founder-badge {
  position: absolute;
  top: -12px;
  right: 2rem;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.pricing-plan {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.pricing-price span {
  font-size: 1.125rem;
  color: #9ca3af;
  font-weight: 400;
}

.plan-description {
  color: #9ca3af;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.pricing-features li {
  padding: 0.75rem 0;
  color: #d1d5db;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-features i {
  color: #32cd32;
  font-size: 1rem;
}

.pricing-features li.disabled {
  opacity: 0.4;
}

.pricing-features li.disabled i {
  color: #6b7280;
}

.pricing-btn {
  display: block;
  width: 100%;
  padding: 1rem 2rem;
  text-align: center;
  background: white;
  color: #0f172a;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 1rem;
}

.pricing-btn:hover {
  background: #f8fafc;
  border-color: #32cd32;
}

.pricing-btn.primary {
  background: #32cd32;
  color: white;
  border: none;
}

.pricing-btn.primary:hover {
  opacity: 0.9;
}

/* Testimonials Section */
.testimonial-section {
  padding: 6rem 0;
  background: white;
}

.testimonial-section .section-title {
  color: #000000;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #32cd32;
}

.testimonial-text {
  font-style: italic;
  color: #334155;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 1rem;
}

.testimonial-author {
  font-weight: 700;
  color: #0f172a;
  font-size: 1.125rem;
}

.testimonial-role {
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 0.25rem;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: #f8fafc;
  color: #000000;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 50%
    );
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cta-subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #32cd32;
  color: white;
  text-decoration: none;
  padding: 1.5rem 3rem;
  border-radius: 50px;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 12px rgba(50, 205, 50, 0.3);
}

.cta-button:hover {
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .landing-container {
    padding: 0 1.5rem;
  }

  .hero-section {
    min-height: 80vh;
  }

  .hero-content {
    gap: 2rem;
  }

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

  .hero-title {
    font-size: clamp(1.75rem, calc(1.5rem + 2vw), 3.5rem);
  }

  .hero-subtitle {
    font-size: clamp(0.95rem, calc(0.85rem + 0.3vw), 1.15rem);
  }

  .section-title {
    font-size: clamp(1.5rem, calc(1.25rem + 1vw), 2.25rem);
  }

  .cta-title {
    font-size: 2rem;
  }

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

  .demo-container {
    padding: 2rem;
  }

  .demo-results {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem !important;
  }

  .demo-metric {
    padding: 1rem !important;
  }

  .demo-metric-value {
    font-size: 1.5rem !important;
  }

  .demo-metric-label {
    font-size: 0.75rem !important;
    margin-top: 0.25rem !important;
  }

  /* Button responsive styles */
  .navbar-cta {
    padding: 0.5rem 1rem !important;
    font-size: 0.75rem !important;
  }

  .hero-cta,
  .hero-cta-secondary,
  .cta-button {
    padding: 0.75rem 1.5rem !important;
    font-size: 0.875rem !important;
  }

  /* Pricing grid mobile fix */
  .pricing-grid {
    grid-template-columns: 1fr !important;
    max-width: 400px !important;
  }
}

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

.animated {
  animation: fadeInUp 0.6s ease-out;
}

/* Footer Styles */
.footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 4rem 0 2rem;
  border-top: 1px solid #1e293b;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #32cd32;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  border: 3px solid #000000;
}

.footer-logo-text {
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
}

.footer-tagline {
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: #1e293b;
  border: 1px solid #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  font-size: 1.25rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-link:hover {
  background: #32cd32;
  color: white;
  border-color: transparent;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-column {
  min-width: 0;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 0.75rem;
}

.footer-link {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-link:hover {
  color: #32cd32;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 2px solid #1e293b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: #64748b;
  font-size: 0.875rem;
  margin: 0;
}

.footer-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-badge {
  background: #1e293b;
  border: 2px solid #334155;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #cbd5e1;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-badges {
    justify-content: center;
  }

  .footer-brand {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .footer-links {
    grid-template-columns: 1fr;
  }
}

/* User Avatar in Navbar */
.navbar-user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #32cd32 0%, #28a428 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #000;
}

.navbar-user-avatar:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(50, 205, 50, 0.3);
}

.navbar-user-avatar.admin {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  border: 2px solid #fbbf24;
}

.navbar-user-avatar.admin:hover {
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Avatar Dropdown - Match app.html style */
.user-avatar-container {
  position: relative;
}

.user-profile-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  padding: 1.5rem;
  min-width: 280px;
  z-index: 1000;
  border: 2px solid #e5e7eb;
  display: none;
}

.user-profile-dropdown.active {
  display: block;
  animation: slideDown 0.3s ease;
}

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

.user-profile-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f1f5f9;
  margin-bottom: 1rem;
}

.user-profile-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #32cd32 0%, #28a428 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  border: 3px solid #000;
  text-transform: uppercase;
}

.user-profile-info {
  flex: 1;
}

.user-profile-email {
  font-size: 0.875rem;
  color: #1f2937;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.user-profile-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.user-profile-badge.pro {
  background: linear-gradient(135deg, #32cd32 0%, #28a428 100%);
  color: white;
  border: 1px solid #000;
}

.user-profile-badge.free {
  background: #f1f5f9;
  color: #64748b;
  border: 1px solid #e2e8f0;
}

.user-profile-badge.admin {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  border: 1px solid #000;
}

.user-profile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.user-profile-btn {
  width: 100%;
  padding: 0.75rem;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.user-profile-btn.upgrade {
  background: linear-gradient(135deg, #32cd32 0%, #28a428 100%);
  color: white;
  border: 2px solid #000;
}

.user-profile-btn.upgrade:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.user-profile-btn.manage {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  border: 2px solid #000;
}

.user-profile-btn.manage:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.user-profile-btn.logout {
  background: transparent;
  color: #ef4444;
  border: 2px solid #ef4444;
}

.user-profile-btn.logout:hover {
  background: #ef4444;
  color: #ffffff;
}

