/*
 * Morobo Website Stylesheet
 *
 * This file defines the look and feel of the Morobo website. It uses a minimal,
 * modern aesthetic with dark backgrounds and a bright accent colour. The site
 * is fully responsive and includes subtle animations on hover and scroll.
 */

/* CSS Reset and global styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Colour palette - Minimal 3-color scheme */
:root {  /* Logo gradient colors - MORE PURPLE dominant to match logo */
  --primary: linear-gradient(135deg, #38bdf8 0%, #9333ea 40%, #a855f7 100%);
  --primary-hover: linear-gradient(135deg, #0ea5e9 0%, #7c3aed 40%, #9333ea 100%);
  --primary-solid: #a855f7; /* Purple as primary solid color */
  --primary-hover-solid: #9333ea;
  
  /* Pure black background */
  --bg: #000000;
  --surface: #0a0a0a;
  --card-bg: #0f0f0f;
  
  /* Text colors - white and light grey only */
  --text-light: #ffffff;
  --text-muted: #b0b0b0;
  
  --border-radius: 12px;
}

/* Animated Background Canvas */
#backgroundCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Ensure all content is above canvas */
.navbar,
.hero,
.section,
.footer {
  position: relative;
  z-index: 1;
}

/* Reusable container class for layout */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navigation bar - Updated with tabs style */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  border-bottom: none;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 0;
  position: relative;
}

.logo {
  position: absolute;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-light);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo:hover {
  opacity: 0.8;
}

/* New centered tab-style navigation */
.nav-tabs {
  display: flex;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.nav-tab {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  font-size: 1.05rem;
}

.nav-tab:hover,
.nav-tab.active {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(56, 189, 248, 0.4);
}

/* Home/Profile Toggle */
.nav-toggle {
  position: absolute;
  right: 2rem;
  display: flex;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.toggle-btn {
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-btn:hover,
.toggle-btn.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(56, 189, 248, 0.4);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav-content {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
  }
  
  .logo {
    position: static;
  }
  
  .nav-tabs {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.5rem 1rem;
    gap: 0.5rem;
  }
  
  .nav-tab {
    padding: 0.6rem 1.25rem;
    font-size: 0.95rem;
  }
  
  .nav-toggle {
    position: static;
  }
}

/* Hero section */
.hero {
  position: relative;
  height: 100vh;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 80%;
  height: 200%;
  background-image: url('images/MoroboIconFinal.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border: none;
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-solid);
  border: 2px solid var(--primary-solid);
}

.btn-secondary:hover {
  background: var(--primary);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}

/* Section base styles */
.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
  background: linear-gradient(135deg, #38bdf8 0%, #9333ea 40%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subsection-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--text-light);
}

.section-description {
  max-width: 700px;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--text-muted);
}

/* Automation Types Grid */
.automation-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.automation-type-card {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.automation-type-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(56, 189, 248, 0.15);
  border-color: rgba(56, 189, 248, 0.4);
}

.automation-type-featured {
  border: 2px solid var(--primary);
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.2);
  transform: scale(1.02);
}

.automation-type-featured::before {
  content: 'POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.automation-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.automation-type-card h4 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.automation-type-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.automation-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.automation-price span {
  font-size: 1rem;
  opacity: 0.7;
}

.automation-features {
  list-style: none;
  padding: 0;
  text-align: left;
}

.automation-features li {
  padding: 0.6rem 0;
  color: var(--text-light);
  opacity: 0.9;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.automation-features li:last-child {
  border-bottom: none;
}

.automation-features li::before {
  content: '✓ ';
  color: var(--primary);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Swiper container styling */
.swiper {
  width: 100%;
  padding: 2rem 0 3rem;
}

/* Swiper navigation buttons */

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary);
  width: 2.5rem;
  height: 2.5rem;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: var(--primary-hover);
}

/* Swiper pagination bullets */
.swiper-pagination-bullet {
  background: var(--surface);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--primary);
}

/* Swiper slide styling */
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 2rem;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(56, 189, 248, 0.2);
  background: linear-gradient(145deg, rgba(56, 189, 248, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #38bdf8 0%, #9333ea 50%, #a855f7 100%);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 32px rgba(56, 189, 248, 0.3);
  border-color: rgba(56, 189, 248, 0.4);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.card p {
  flex-grow: 1;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.card-link {
  align-self: flex-start;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 2px;
}

.card-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.card-link:hover::after {
  width: 100%;
}

.card-link.disabled {
  pointer-events: none;
  opacity: 0.5;
}

/* Placeholder card content */
.placeholder-card .placeholder-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  background-color: #0f1734;
  border-radius: var(--border-radius);
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* About section */
.about-container {
  max-width: 900px;
}

.about-content p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

/* Contact section */
.contact-container {
  max-width: 900px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-info {
  flex: 1 1 300px;
  min-width: 280px;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.contact-info a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--primary-hover);
}

.contact-form {
  flex: 1 1 400px;
  min-width: 280px;
  background-color: var(--surface);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.contact-form .form-group {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  color: var(--text-muted);
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius);
  border: none;
  background-color: var(--card-bg);
  color: var(--text-light);
  font-size: 1rem;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  margin-top: 1rem;
  width: 100%;
}

/* Partners Marquee Section */
.partners-section {
  padding: 3rem 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
  overflow: hidden;
}

.partners-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--text-muted);
  font-weight: 500;
}

.marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marquee-content {
  display: flex;
  gap: 4rem;
  animation: scroll 30s linear infinite;
  width: max-content;
}

.partner-logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.partner-logo:hover {
  color: var(--primary);
  background: rgba(56, 189, 248, 0.2);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #38bdf8 0%, #9333ea 40%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* AI Automation & Agents Section */
.ai-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.ai-service-card {
  padding: 2rem;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: none;
  width: 100%;
}

.ai-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(56, 189, 248, 0.15);
}

.ai-service-card .service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.ai-service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ai-service-card p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-color);
  font-size: 0.95rem;
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #38bdf8;
  font-weight: bold;
}

/* Footer */
.footer {
  background-color: #000000;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

footer {
  background-color: #000000;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.footer-logo {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  width: 50px;
  height: 50px;
  object-fit: contain;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

footer .footer-logo {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  width: 50px;
  height: 50px;
  object-fit: contain;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.footer-logo:hover {
  opacity: 1;
}

footer .footer-logo:hover {
  opacity: 1;
}

.footer-content p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

footer .footer-content p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  margin-bottom: 0.5rem;
}

footer .footer-links {
  display: flex;
  gap: 2rem;
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

footer .footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

footer .footer-links a:hover {
  color: #a855f7;
}

.social-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  color: var(--text-muted);
  font-size: 1.25rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--primary);
}

/* Reveal animation classes */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Legal Page Styles */
.legal-page {
  padding: 8rem 0 4rem;
}

.legal-page h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-page .section-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 800px;
}

.legal-toc {
  display: none;
}

.legal-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.legal-card {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.legal-card:hover {
  border-color: rgba(168, 85, 247, 0.8);
  box-shadow: 0 8px 24px rgba(168, 85, 247, 0.2);
  transform: translateY(-4px);
}

.legal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(56, 189, 248, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.legal-card:hover::before {
  opacity: 1;
}

.legal-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-light);
  position: relative;
  z-index: 1;
}

.legal-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.legal-card-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.legal-card-tag {
  display: inline-block;
  background: rgba(168, 85, 247, 0.2);
  color: #a855f7;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.legal-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.legal-section-detail {
  display: none;
}

.legal-section-detail.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Legal page footer - uses .footer class */
footer {
  background-color: #000000;
  padding: 3rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* Page Header Styles */
.page-header {
  padding: 8rem 0 4rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #38bdf8 0%, #9333ea 40%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-header p {
  font-size: 1.25rem;
  color: var(--text-muted);
}

/* Apps Detail Section */
.apps-detail-section {
  padding: 4rem 0;
}

.app-detail-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.app-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 3rem;
  border-radius: var(--border-radius);
  align-items: center;
}

.app-detail-card:nth-child(even) {
  grid-template-columns: 1fr 1fr;
}

.app-detail-card:nth-child(even) .app-detail-image {
  order: 2;
}

.app-detail-card:nth-child(even) .app-detail-content {
  order: 1;
}

.app-detail-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.app-detail-content h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.app-tagline {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.app-description {
  margin-bottom: 2rem;
  line-height: 1.8;
}

.app-features h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.app-features ul {
  list-style: none;
  margin-bottom: 2rem;
}

.app-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.app-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.app-availability {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.app-availability span {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.available {
  background: rgba(56, 189, 248, 0.2);
  color: var(--primary);
}

.coming-soon {
  background: rgba(148, 163, 184, 0.2);
  color: var(--text-muted);
}

.app-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* App Screenshots Section */
.app-screenshots-section {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.02);
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.screenshots-grid img {
  width: 100%;
  height: auto;
  min-height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
}

.screenshots-grid img:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(56, 189, 248, 0.3);
}

/* Portfolio Section */
.portfolio-section {
  padding: 4rem 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.portfolio-card {
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-10px);
}

.portfolio-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-content {
  padding: 2rem;
}

.portfolio-content h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.portfolio-category {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.portfolio-description {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.portfolio-tech {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.portfolio-tech span {
  background: rgba(56, 189, 248, 0.2);
  color: var(--primary);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.85rem;
}

/* Services Section */
.services-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: rgba(0, 0, 0, 0.4);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

/* Pricing Section */
.pricing-section {
  padding: 5rem 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: rgba(0, 0, 0, 0.4);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--primary);
  transform: scale(1.05);
}

.pricing-card.featured {
  border-color: var(--primary);
  background: rgba(56, 189, 248, 0.1);
}

.featured-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.price-period {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  opacity: 0.8;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.monthly-fee {
  margin: 2rem 0;
  padding: 1rem;
  background: rgba(147, 51, 234, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(147, 51, 234, 0.3);
}

.monthly-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.monthly-label {
  font-size: 0.875rem;
  color: var(--text-light);
  opacity: 0.8;
  margin: 0;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* Hosting Section */
.hosting-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.hosting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.hosting-card {
  background: rgba(0, 0, 0, 0.4);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  text-align: center;
}

.hosting-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.hosting-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.hosting-card ul {
  list-style: none;
  text-align: left;
}

.hosting-card li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.hosting-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: rgba(0, 0, 0, 0.4);
  padding: 2.5rem;
  border-radius: var(--border-radius);
}

.testimonial-stars {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-author strong {
  color: var(--primary);
}

.testimonial-author span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Support Section */
.support-section {
  padding: 4rem 0;
  min-height: 60vh;
}

.support-content {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 3rem;
  align-items: start;
}

.support-sidebar {
  background: rgba(0, 0, 0, 0.3);
  padding: 2rem;
  border-radius: var(--border-radius);
  height: fit-content;
  position: sticky;
  top: 100px;
  border: 1px solid rgba(56, 189, 248, 0.2);
}

.support-sidebar h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--primary);
  margin-top: 0;
}

.support-menu {
  list-style: none;
}

.support-menu li {
  margin-bottom: 0.75rem;
}

.support-menu a {
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
}

.support-menu a:hover {
  color: var(--primary);
  background: rgba(56, 189, 248, 0.1);
}

.support-main {
  background: rgba(0, 0, 0, 0.2);
  padding: 3rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(56, 189, 248, 0.1);
}

.support-article {
  margin-bottom: 3rem;
}

.support-article:last-child {
  margin-bottom: 0;
}

.support-article h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
  margin-top: 0;
}

.support-article h3 {
  font-size: 1.5rem;
  color: var(--text-light);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.support-article p,
.support-article li {
  line-height: 1.8;
  color: var(--text-light);
}

.support-article a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.support-article a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.support-article ul,
.support-article ol {
  margin: 1rem 0 1rem 1.5rem;
}

.support-article ol li {
  margin-bottom: 0.5rem;
}

.support-article strong {
  color: var(--primary);
  font-weight: 600;
}

.faq-item {
  background: rgba(0, 0, 0, 0.4);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(56, 189, 248, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(56, 189, 248, 0.3);
  background: rgba(0, 0, 0, 0.6);
}

.faq-item h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.faq-item p {
  margin-bottom: 0.5rem;
}

.faq-item ul {
  margin-top: 0.75rem;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact-option {
  background: rgba(0, 0, 0, 0.4);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(56, 189, 248, 0.1);
  transition: all 0.3s ease;
}

.contact-option:hover {
  border-color: rgba(56, 189, 248, 0.3);
  transform: translateY(-5px);
}

.contact-option h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.contact-option a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.contact-option a:hover {
  text-decoration: underline;
}

/* Legal Section */
.legal-section {
  padding: 4rem 0;
  min-height: 70vh;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.2);
  padding: 3rem;
  border-radius: var(--border-radius);
}

.legal-content article h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content article h2:first-child {
  margin-top: 0;
}

.legal-content article h3 {
  font-size: 1.5rem;
  color: var(--text-light);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content article p,
.legal-content article li {
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content article ul {
  margin: 1rem 0 1.5rem 1.5rem;
}

.legal-content article a {
  color: var(--primary);
  text-decoration: none;
}

.legal-content article a:hover {
  text-decoration: underline;
}

.legal-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.legal-footer a {
  color: var(--primary);
  text-decoration: none;
}

.legal-footer a:hover {
  text-decoration: underline;
}

/* App Hero Section */
.app-hero {
  padding: 8rem 0 4rem; /* Top padding to clear fixed navbar */
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.app-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.app-hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.app-subtitle {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.app-hero-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.app-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.app-store-badge img {
  height: 50px;
  width: auto;
}

.coming-soon-badge {
  background: rgba(148, 163, 184, 0.2);
  color: var(--text-muted);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.app-hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-hero-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  min-height: 300px;
  object-fit: contain;
  border-radius: var(--border-radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.notify-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin-top: 1.5rem;
}

.notify-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(56, 189, 248, 0.3);
  background: rgba(0, 0, 0, 0.3);
  color: var(--text-light);
  font-size: 1rem;
}

.notify-input:focus {
  outline: none;
  border-color: var(--primary);
}

/* App Features Section */
.app-features-section {
  padding: 5rem 0;
  background: rgba(0, 0, 0, 0.2);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  background: rgba(0, 0, 0, 0.4);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(56, 189, 248, 0.1);
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(56, 189, 248, 0.2);
  border-color: rgba(56, 189, 248, 0.3);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-item h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.feature-item p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* App CTA Section */
.app-cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
}

/* App Links Section */
.app-links-section {
  padding: 3rem 0;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.app-footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.app-footer-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.app-footer-links a:hover {
  color: var(--primary);
}

/* Responsive Updates for New Pages */
@media (max-width: 968px) {
  .app-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .app-hero-text h1 {
    font-size: 3rem;
  }
  
  .app-detail-card {
    grid-template-columns: 1fr;
  }
  
  .app-detail-card:nth-child(even) .app-detail-image,
  .app-detail-card:nth-child(even) .app-detail-content {
    order: 0;
  }
  
  .support-content {
    grid-template-columns: 1fr;
  }
  
  .support-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  /* Mobile-optimized navbar - centered with stacked tabs */
  .nav-content {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem 0;
    align-items: center;
  }
    .logo {
    text-align: center;
    width: 100%;
    font-size: 1.5rem;
    justify-content: center;
  }
  
  .logo-icon {
    width: 35px;
    height: 35px;
  }
  
  .nav-tabs {
    width: 95%;
    max-width: 380px;
    justify-content: center;
    padding: 0.25rem;
    gap: 0.2rem;
  }
  
  .nav-tab {
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
    flex: 1;
    text-align: center;
    min-width: 0;
  }
  
  /* App detail cards - compact for mobile (apps.html page only) */
  .app-detail-card {
    padding: 2rem 1.5rem;
  }
  
  .app-detail-content h2 {
    font-size: 2rem;
  }
  
  .app-tagline {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .app-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .app-features h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
  
  .app-features ul {
    margin-bottom: 1.5rem;
  }
  
  .app-features li {
    padding: 0.35rem 0;
    font-size: 0.9rem;
    padding-left: 1.25rem;
  }
  
  .app-features li::before {
    font-size: 0.85rem;
  }
  
  /* Hide some features on mobile to reduce card height */
  .app-features li:nth-child(n+5) {
    display: none;
  }
  
  .app-links {
    gap: 0.75rem;
  }
  
  .app-links .btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .app-hero {
    padding: 6rem 0 3rem;
  }
  
  .app-hero-text h1 {
    font-size: 2.5rem;
  }
  
  .notify-form {
    flex-direction: column;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .support-main {
    padding: 2rem 1.5rem;
  }
  
  .legal-content {
    padding: 2rem 1.5rem;
  }
}

/* ========================================
   PRICING PAGE STYLES
   ======================================== */

/* Pricing Hero Section */
.pricing-hero {
  padding: 6rem 0 3rem;
  text-align: center;
  position: relative;
}

.pricing-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Pricing Section */
.pricing-section {
  padding: 4rem 0;
}

.pricing-section.app-pricing,
.pricing-section.ai-pricing {
  background: linear-gradient(145deg, rgba(56, 189, 248, 0.02) 0%, rgba(168, 85, 247, 0.02) 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.ai-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* Pricing Cards */
.pricing-card {
  background: linear-gradient(145deg, rgba(56, 189, 248, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(56, 189, 248, 0.2);
  border-color: rgba(56, 189, 248, 0.4);
}

.pricing-card.featured {
  border: 2px solid #38bdf8;
  box-shadow: 0 8px 30px rgba(56, 189, 248, 0.15);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #38bdf8 0%, #9333ea 100%);
  color: white;
  padding: 0.4rem 1.5rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.pricing-badge.popular {
  background: linear-gradient(135deg, #9333ea 0%, #a855f7 100%);
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(56, 189, 248, 0.2);
}

.pricing-header h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.currency {
  font-size: 1.5rem;
  color: var(--text-color);
  font-weight: 600;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.price-text {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.period {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex-grow: 1;
}

.pricing-features li {
  padding: 0.75rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--text-color);
  border-bottom: 1px solid rgba(56, 189, 248, 0.1);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #38bdf8;
  font-weight: bold;
  font-size: 1.1rem;
}

.pricing-monthly {
  text-align: center;
  padding: 1.5rem 0;
  margin-bottom: 1.5rem;
  background: rgba(56, 189, 248, 0.05);
  border-radius: 12px;
}

.monthly-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-color);
  margin: 0;
}

.monthly-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.monthly-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0.5rem 0 0 0;
}

.pricing-card .btn {
  width: 100%;
  margin-top: auto;
}

/* Pricing Info Section */
.pricing-info {
  margin-top: 4rem;
  padding: 2.5rem;
  background: linear-gradient(145deg, rgba(56, 189, 248, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 16px;
  text-align: center;
}

.pricing-info h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.info-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 0;
}

.info-list li {
  padding: 0.75rem;
  color: var(--text-color);
  font-size: 1rem;
}

/* Custom App Pricing Card */
.custom-pricing-card {
  margin-top: 3rem;
  padding: 3rem;
  background: linear-gradient(145deg, rgba(56, 189, 248, 0.08) 0%, rgba(168, 85, 247, 0.08) 100%);
  border: 2px solid rgba(56, 189, 248, 0.3);
  border-radius: 20px;
}

.custom-pricing-content h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.custom-price {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.custom-description {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.app-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.app-feature h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-color);
}

.app-feature p {
  color: var(--text-muted);
  line-height: 1.6;
}

.pricing-cta {
  text-align: center;
}

.cta-note {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* AI Services Info */
.ai-services-info {
  margin-top: 4rem;
  padding: 3rem;
  background: linear-gradient(145deg, rgba(56, 189, 248, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 16px;
}

.ai-services-info h3 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  text-align: center;
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.service-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(56, 189, 248, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  background: rgba(56, 189, 248, 0.1);
}

.service-item .service-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.service-item p {
  color: var(--text-color);
  font-weight: 500;
  margin: 0;
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  background: linear-gradient(145deg, rgba(56, 189, 248, 0.02) 0%, rgba(168, 85, 247, 0.02) 100%);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.faq-item {
  padding: 2rem;
  background: linear-gradient(145deg, rgba(56, 189, 248, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 8px 25px rgba(56, 189, 248, 0.1);
}

.faq-item h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.faq-item p {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Responsive Pricing */
@media (max-width: 768px) {
  .pricing-hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .pricing-grid,
  .ai-pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }
  
  .custom-pricing-card {
    padding: 2rem 1.5rem;
  }
  
  .app-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .services-list-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-info,
  .ai-services-info {
    padding: 2rem 1.5rem;
  }
}

/* AI Overview Section */
.ai-overview-section {
  padding: 5rem 0;
  background: rgba(0, 0, 0, 0.2);
}

/* Use Cases Section */
.use-cases-section {
  padding: 5rem 0;
  background: rgba(0, 0, 0, 0.3);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.use-case-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: var(--border-radius);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(56, 189, 248, 0.2);
}

.use-case-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.use-case-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.use-case-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.use-case-benefits {
  list-style: none;
  padding: 0;
}

.use-case-benefits li {
  color: var(--text-light);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  opacity: 0.9;
}

.use-case-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background: rgba(0, 0, 0, 0.2);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.faq-item {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: var(--border-radius);
  padding: 2rem;
}

.faq-item h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.faq-item p {
  color: var(--text-light);
  line-height: 1.6;
  opacity: 0.9;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #38bdf8 0%, #9333ea 40%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-section p {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .use-cases-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    gap: 1.5rem;
  }
  
  .cta-section h2 {
    font-size: 2rem;
  }
  
  .cta-section p {
    font-size: 1rem;
  }
}

/* Authentication Page Styles */
.auth-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
}

.auth-container {
  max-width: 500px;
  width: 100%;
}

.auth-form {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: var(--border-radius);
  padding: 3rem;
  backdrop-filter: blur(10px);
}

.auth-form h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #38bdf8 0%, #9333ea 40%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.auth-subtitle {
  color: var(--text-light);
  margin-bottom: 2rem;
  opacity: 0.8;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-light);
  font-weight: 500;
}

.form-group input {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 8px;
  color: var(--text-light);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.1);
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  cursor: pointer;
}

.checkbox-label a {
  color: var(--primary);
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

.forgot-password {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.9rem;
}

.forgot-password:hover {
  text-decoration: underline;
}

.btn-full {
  width: 100%;
  padding: 1rem;
  font-size: 1.05rem;
  margin-top: 0.5rem;
}

.auth-switch {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-light);
  opacity: 0.8;
}

.auth-switch a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.auth-switch a:hover {
  text-decoration: underline;
}

/* Dashboard Styles */
.dashboard-section {
  min-height: 100vh;
  padding: 8rem 2rem 4rem;
}

.dashboard-header {
  margin-bottom: 3rem;
}

.dashboard-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #38bdf8 0%, #9333ea 40%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dashboard-header p {
  color: var(--text-light);
  opacity: 0.8;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.dashboard-card {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: var(--border-radius);
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.dashboard-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(56, 189, 248, 0.2);
}

.dashboard-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.dashboard-card p {
  color: var(--text-light);
  opacity: 0.8;
  margin-bottom: 1rem;
}

.dashboard-stat {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #38bdf8 0%, #9333ea 40%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dashboard-list {
  list-style: none;
  padding: 0;
}

.dashboard-list li {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

.dashboard-list li:last-child {
  border-bottom: none;
}

.dashboard-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border: 1px solid rgba(56, 189, 248, 0.2);
}

.btn-secondary:hover {
  background: rgba(56, 189, 248, 0.2);
}

@media (max-width: 768px) {
  .auth-form {
    padding: 2rem 1.5rem;
  }
  
  .form-options {
    flex-direction: column;
    align-items: flex-start;
  }
}

