/* ========================================
   Recognity Product Page - Specific Styles
   ======================================== */

:root {
  --primary: #7b61ff;
  --secondary: #ff6fb1;
  --accent: #0ea5e9;
  --dark: #0f172a;
  --light: #f0f9ff;
  --gradient: linear-gradient(135deg, #7b61ff 0%, #ff6fb1 50%, #0ea5e9 100%);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Reset conflicting styles */
* {
  box-sizing: border-box;
}

html, body {
  font-family: var(--font) !important;
  margin: 0;
  padding: 0;
}

/* ========================================
   Header Styles
   ======================================== */

header {
  background: rgba(15, 23, 42, 0.98) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(123, 97, 255, 0.1);
}

header .logo a {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-menu ul {
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu a {
  color: #f0f0f5;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary);
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(123, 97, 255, 0.2);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.nav-item:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
}

.dropdown-item {
  color: #f0f0f5 !important;
  padding: 10px 20px;
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 13px;
}

.dropdown-item:hover,
.dropdown-item.active {
  color: var(--primary) !important;
  background: rgba(123, 97, 255, 0.1);
  padding-left: 25px;
}

.get-started-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 10px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.get-started-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(123, 97, 255, 0.3);
}

/* ========================================
   Hero Section
   ======================================== */

.product-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.product-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  opacity: 0.08;
  z-index: 0;
}

.product-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(123, 97, 255, 0.1) 0%, transparent 70%);
  z-index: 0;
}

.product-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

.product-hero h1 {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.product-hero p {
  font-size: 18px;
  color: #f0f0f5;
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.product-btn {
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.product-btn-primary {
  background: var(--gradient);
  color: #fff;
}

.product-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(123, 97, 255, 0.4);
}

.product-btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(123, 97, 255, 0.3);
}

.product-btn-secondary:hover {
  background: rgba(123, 97, 255, 0.1);
  border-color: var(--primary);
}

/* ========================================
   Features Section
   ======================================== */

.features-section {
  padding: 80px 0;
  background: var(--dark);
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title p {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-title h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  margin: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(123, 97, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  background: rgba(123, 97, 255, 0.08);
  border-color: rgba(123, 97, 255, 0.3);
  transform: translateY(-5px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(123, 97, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: var(--primary);
}

.feature-card h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px 0;
}

.feature-card p {
  color: #f0f0f5;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* ========================================
   Pricing Section
   ======================================== */

.pricing-section {
  padding: 80px 0;
  background: var(--dark);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(123, 97, 255, 0.1);
  border-radius: 12px;
  padding: 40px 30px;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card.featured {
  background: linear-gradient(135deg, rgba(123, 97, 255, 0.15) 0%, rgba(255, 111, 177, 0.1) 100%);
  border-color: var(--primary);
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--primary);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.pricing-name {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 15px 0;
}

.pricing-price {
  color: var(--primary);
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.pricing-period {
  color: #f0f0f5;
  font-size: 14px;
  margin: 0 0 25px 0;
}

.pricing-btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
  text-align: center;
}

.pricing-btn:hover {
  background: #6b4fd6;
  transform: translateY(-2px);
}

.pricing-header h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.pricing-subtitle {
  color: #f0f0f5;
  font-size: 13px;
  margin: 0 0 25px 0;
}

.pricing-amount {
  margin-bottom: 10px;
}

.currency {
  color: var(--primary);
  font-size: 18px;
}

.price {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
}

.period {
  color: #f0f0f5;
  font-size: 14px;
}

.pricing-description {
  color: #f0f0f5;
  font-size: 13px;
  margin-bottom: 25px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.pricing-features li {
  color: #f0f0f5;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li i {
  color: var(--primary);
  margin-right: 10px;
}

/* ========================================
   CTA Section
   ======================================== */

.product-cta {
  padding: 80px 0 !important;
  background: linear-gradient(135deg, rgba(123, 97, 255, 0.12) 0%, rgba(10, 165, 233, 0.08) 100%) !important;
  text-align: center;
}

.product-cta h2,
.product-cta h3 {
  color: #fff !important;
  font-size: 36px !important;
  font-weight: 700 !important;
  margin-bottom: 15px !important;
}

.product-cta p {
  color: #f0f0f5 !important;
  font-size: 16px !important;
  margin-bottom: 30px !important;
}

/* ========================================
   Footer Styles - CLEAN SLATE
   ======================================== */

footer {
  background: linear-gradient(135deg, #0f172a 0%, rgba(15, 23, 42, 0.95) 100%) !important;
  color: #ccc !important;
  padding: 0 !important;
  margin-top: 60px !important;
  border: none !important;
}

footer * {
  border: none !important;
  box-shadow: none !important;
}

#footer {
  background: linear-gradient(135deg, #0f172a 0%, rgba(15, 23, 42, 0.95) 100%) !important;
  color: #ccc !important;
  padding: 0 0 30px 0 !important;
  margin: 0 !important;
  border: none !important;
}

#footer * {
  border: none !important;
}

#footer .footer-top {
  padding: 60px 0 30px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  background: transparent !important;
}

#footer .footer-info {
  margin-bottom: 30px !important;
}

#footer .footer-info h3 {
  font-size: 24px !important;
  margin: 0 0 15px 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  color: #fff !important;
  border: none !important;
}

#footer .footer-info p {
  font-size: 14px !important;
  line-height: 1.8 !important;
  color: #f0f0f5 !important;
  margin-bottom: 15px !important;
}

#footer .social-links {
  display: flex !important;
  gap: 10px !important;
  margin-top: 15px !important;
}

#footer .social-links a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: rgba(123, 97, 255, 0.1) !important;
  color: var(--primary) !important;
  transition: all 0.3s ease !important;
  font-size: 18px !important;
  padding: 0 !important;
  text-align: center !important;
  text-decoration: none !important;
  border: none !important;
  line-height: 36px !important;
}

#footer .social-links a:hover {
  background: var(--primary) !important;
  color: #fff !important;
  transform: translateY(-3px) !important;
}

#footer h4 {
  color: #fff !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  margin-bottom: 20px !important;
  padding-bottom: 0 !important;
  border: none !important;
  position: relative !important;
}

#footer h4::after {
  content: '' !important;
  display: block !important;
  width: 40px !important;
  height: 2px !important;
  background: var(--primary) !important;
  margin-top: 12px !important;
}

#footer .footer-links {
  margin-bottom: 30px !important;
}

#footer .footer-links ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

#footer .footer-links ul li {
  padding: 10px 0 !important;
  border: none !important;
  margin: 0 !important;
}

#footer .footer-links ul li i {
  color: var(--primary) !important;
  margin-right: 8px !important;
  font-size: 12px !important;
}

#footer .footer-links ul a {
  color: #f0f0f5 !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  font-size: 13px !important;
}

#footer .footer-links ul a:hover {
  color: var(--primary) !important;
  padding-left: 3px !important;
}

#footer .footer-newsletter {
  margin-bottom: 30px !important;
}

#footer .footer-newsletter h4 {
  color: #fff !important;
}

#footer .footer-newsletter p {
  font-size: 13px !important;
  color: #f0f0f5 !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

#footer .copyright {
  padding: 20px 0 !important;
  text-align: center !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  font-size: 13px !important;
  color: #d8d8e0 !important;
  margin-top: 0 !important;
}

#footer .copyright strong {
  color: var(--primary) !important;
}

#footer .credits {
  padding: 10px 0 !important;
  text-align: center !important;
  font-size: 12px !important;
  color: #999 !important;
}

#footer .credits a {
  color: var(--primary) !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

#footer .credits a:hover {
  color: var(--secondary) !important;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1200px) {
  .product-hero h1 {
    font-size: 42px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  header {
    padding: 15px 0;
  }

  .nav-menu {
    display: none !important;
  }

  .product-hero {
    padding: 80px 0;
    min-height: auto;
  }

  .product-hero h1 {
    font-size: 32px;
  }

  .product-hero p {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .product-cta h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .product-hero h1 {
    font-size: 24px;
  }

  .product-hero p {
    font-size: 14px;
  }

  .section-title h2 {
    font-size: 20px;
  }

  .feature-card {
    padding: 20px;
  }

  .pricing-card {
    padding: 20px;
  }

  .price {
    font-size: 32px;
  }
}
