/* Landing Page Specific Styles for Ventura */

:root {
  --primary-color: #4a90e2;
  --secondary-color: #28a745;
  --accent-color: #e67e22;
  --dark-color: #22262c;
  --darker-color: #252a31;
  --panel-color: #24282f;
  --light-color: #f8f9fa;
  --text-color: #ffffff;
  --border-color: #373e4a;
  --card-bg: #24282f;
  --card-header-bg: rgba(33, 37, 43, 0.8);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: var(--dark-color);
  color: var(--text-color);
}

/* Landing Nav */
.landing-nav {
  background-color: var(--darker-color);
  padding: 1.2rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  height: 50px;
}

.nav-logo img {
  max-height: 50px;
  width: auto;
}

.nav-logo h1 {
  font-size: 1.8rem;
  margin: 0;
  color: var(--text-color);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-btn {
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s;
}

.nav-btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.nav-btn-secondary {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.nav-btn:hover {
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  background-color: var(--darker-color);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-content h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #bbbbbb;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-secondary {
  border: 1px solid var(--text-color);
  color: var(--text-color);
}

.btn-primary:hover, .btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-chart {
  height: 420px;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--panel-color);
  padding: 1rem 1.5rem 2rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  position: relative;
  margin-bottom: 30px;
  margin-right: -50px;
}

/* Section Headers */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-bubble {
  display: inline-block;
  background-color: rgba(74, 144, 226, 0.2);
  color: var(--primary-color);
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--text-color);
  line-height: 1.3;
}

.section-header p {
  font-size: 1.1rem;
  color: #bbbbbb;
  max-width: 650px;
}

/* Features Section */
.features {
  padding: 6rem 2rem;
  background-color: var(--dark-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background-color: var(--panel-color);
  border-radius: 8px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(74, 144, 226, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
  font-size: 1.8rem;
  align-self: center;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin: 0;
  color: var(--text-color);
  text-align: center;
}

.feature-card p {
  margin: 0;
  color: #bbbbbb;
  line-height: 1.6;
  flex-grow: 1;
  text-align: center;
}

/* Pricing Section */
.pricing {
  padding: 6rem 2rem;
  background-color: var(--darker-color);
}

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

.pricing-card {
  background-color: var(--panel-color);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pricing-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background-color: var(--primary-color);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-header h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.pricing-amount {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
}

.currency {
  font-size: 1.5rem;
  color: var(--text-color);
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
}

.period {
  font-size: 1rem;
  color: #bbbbbb;
}

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

.pricing-features li {
  padding: 0.8rem 0;
  color: #bbbbbb;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.not-included {
  color: #777777;
}

.pricing-btn {
  display: inline-block;
  width: 100%;
  padding: 1rem;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  color: var(--text-color);
  background-color: transparent;
  border: 1px solid var(--primary-color);
  margin-top: auto;
}

.featured-btn {
  background-color: var(--primary-color);
  color: white;
}

.pricing-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.featured {
  border-color: var(--primary-color);
  z-index: 1;
  transform: scale(1.05);
}

.featured:hover {
  transform: translateY(-5px) scale(1.05);
}

/* Call To Action */
.cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2980b9 100%);
  padding: 5rem 2rem;
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: white;
}

.cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Footer */
footer {
  background-color: var(--darker-color);
  padding: 5rem 2rem 2rem;
  color: #aaa;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
}

.footer-logo {
  flex: 1;
  min-width: 200px;
}

.footer-logo h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.footer-logo p {
  color: #bbbbbb;
}

.footer-links {
  flex: 2;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-column {
  min-width: 120px;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.footer-column a {
  display: block;
  margin-bottom: 0.8rem;
  color: #bbbbbb;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8px;
  transition: all 0.3s ease;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-links.mobile-open {
  display: flex !important;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
  }
  
  .hero-content {
    text-align: center;
    margin: 0 auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .featured {
    transform: none;
  }
  
  .featured:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 768px) {
  /* Mobile Typography Optimization */
  body {
    font-size: 16px; /* Prevent mobile zoom */
    line-height: 1.5;
    overflow-x: hidden; /* Prevent horizontal scroll */
  }
  
  .landing-nav {
    padding: 1rem;
  }
  
  .nav-container {
    position: relative;
    max-width: 100%;
    padding: 0 0.5rem;
    /* Remove flex-direction: column and gap to keep logo and hamburger on same line */
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--darker-color);
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    width: 100%;
    box-sizing: border-box;
  }
  
  /* Mobile Touch Target Optimization */
  .nav-links a {
    padding: 0.8rem 1rem;
    border-radius: 4px;
    min-height: 44px;
    display: flex;
    align-items: center;
    font-size: 16px;
    transition: background-color 0.3s ease;
  }
  
  .nav-links a:hover {
    background-color: rgba(74, 144, 226, 0.1);
  }
  
  .nav-btn {
    padding: 0.8rem 1.2rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
  }
  
  .mobile-menu-toggle {
    display: flex;
    min-width: 44px;
    min-height: 44px;
  }
  
  /* Hero Section Mobile Optimization */
  .hero {
    padding: 3rem 0;
  }
  
  .hero-container {
    padding: 0 1rem;
    max-width: 100%;
    gap: 1.5rem;
  }
  
  .hero-content {
    text-align: center;
    max-width: 100%;
  }
  
  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  
  .hero-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  /* Hero Chart Mobile Fix */
  .hero-chart {
    height: 300px;
    margin-right: 0;
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
    padding: 1rem;
    box-sizing: border-box;
  }
  
  /* Mobile Button Optimization */
  .btn-primary, .btn-secondary {
    padding: 1rem 1.5rem;
    min-height: 44px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
  }
  
  .hero-buttons {
    gap: 0.75rem;
  }
  
  /* Content Sections Mobile Optimization */
  .features, .pricing, .demo {
    padding: 3rem 1rem;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .section-header {
    padding: 0;
    max-width: 100%;
    text-align: center;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  .section-header p {
    font-size: 16px;
    line-height: 1.6;
  }
  
  /* Features Grid Mobile Fix */
  .features-grid {
    max-width: 100%;
    padding: 0;
    gap: 1.5rem;
  }
  
  .feature-card {
    max-width: 100%;
    box-sizing: border-box;
  }
  
  /* Pricing Grid Mobile Fix */
  .pricing-grid {
    max-width: 100%;
    padding: 0;
    gap: 1.5rem;
  }
  
  .pricing-card {
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  /* Small Mobile Optimizations */
  .nav-links {
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  .hero-content p {
    font-size: 16px;
  }
  
  .hero-container {
    padding: 0 1rem;
    max-width: 100%;
  }
  
  /* Better spacing for small screens */
  .features, .pricing, .demo {
    padding: 2.5rem 1rem;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .features-grid, .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  /* Feature cards mobile optimization */
  .feature-card {
    padding: 1.5rem;
    text-align: center;
    gap: 0.5rem;
  }
  
  .feature-card h3 {
    font-size: 1.2rem;
    line-height: 1.4;
    margin: 0.5rem 0;
  }
  
  .feature-icon {
    margin-bottom: 0.25rem;
  }
  
  .feature-card p {
    font-size: 16px;
    line-height: 1.6;
  }
  
  /* Pricing cards mobile optimization */
  .pricing-card {
    padding: 1.5rem;
    min-height: auto;
  }
  
  .pricing-btn {
    padding: 1rem;
    min-height: 44px;
    font-size: 16px;
    font-weight: 600;
  }
  
  /* Section headers for small screens */
  .section-header h2 {
    font-size: 1.6rem;
  }
  
  .section-bubble {
    font-size: 14px;
    padding: 0.5rem 1rem;
  }
} 