/* Copy the exact styles from the main app with marketing-specific additions */
:root {
  --bg-color: #f8fafc;
  --text-color: #1a1a1a;
  --text-muted: #6b7280;
  --header-bg: #1f2937;
  --card-bg: #e5e7eb;
  --border-color: #d1d5db;
  --border-light: #e5e7eb;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --primary: #3b82f6;
  --primary-hover: #2563eb;
  --title-color: #1e3a8a;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --input-bg: #ffffff;
  --radius: 8px;
}

[data-theme="dark"] {
  --bg-color: #1a1a1a;
  --text-color: #e0e0e0;
  --header-bg: #1e1e1e;
  --card-bg: #2d2d2d;
  --border-color: #444;
  --input-bg: #2d2d2d;
  --shadow: rgba(0,0,0,0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
  transition: all 0.2s ease;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Header */
.header {
  background: var(--header-bg);
  color: white;
  padding: 1rem 0;
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #87ceeb;
  text-decoration: none;
}

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

.nav-menu a {
  color: white;
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  font-weight: 500;
}

.nav-menu a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.btn-login {
  background: var(--primary);
  color: white !important;
  border-radius: var(--radius);
}

.btn-login:hover {
  background: var(--primary-hover);
}

.mode-toggle {
  cursor: pointer;
  transition: all 0.2s ease;
}

.mode-toggle:hover {
  color: #87ceeb !important;
}

/* Marketing-specific styles */
.hero {
  padding: 8rem 0 4rem;
  background: var(--card-bg);
  color: var(--text-color);
  text-align: center;
}

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

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: var(--title-color);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--text-color);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 0.9rem;
  color: var(--text-color);
}

.hero-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1rem auto;
  max-width: 700px;
  box-shadow: var(--shadow);
}

.hero-card .hero-subtitle,
.hero-card .hero-note {
  margin: 0;
}

.coming-soon {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffd700;
  text-align: center;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
}

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

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

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

.btn-outline {
  background: transparent;
  color: var(--text-color);
  border-color: var(--border-color);
}

.btn-outline:hover {
  background: var(--card-bg);
}

/* Industries Section */
.industries {
  padding: 4rem 0;
  background: var(--bg-color);
}

.industries h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--title-color);
}

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

.industry-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
  border: 1px solid var(--border-color);
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.industry-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.industry-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--title-color);
}

.industry-card p {
  color: var(--text-muted);
}

/* Features Section */
.features {
  padding: 4rem 0;
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--title-color);
}

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

.feature {
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--title-color);
}

.feature p {
  color: var(--text-muted);
}

/* Pricing Section */
.pricing {
  padding: 4rem 0;
  background: var(--bg-color);
}

.pricing h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--title-color);
}

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

.pricing-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  border: 1px solid var(--border-color);
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--title-color);
}

.price {
  margin-bottom: 0.5rem;
}

.amount {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary);
}

.period {
  font-size: 1rem;
  color: var(--text-muted);
}

.trial {
  color: var(--success);
  font-weight: 600;
  margin-bottom: 2rem;
}

.features-list {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.features-list li {
  padding: 0.5rem 0;
  color: var(--text-color);
}

/* Footer */
.footer {
  background: var(--header-bg);
  color: white;
  padding: 2rem 0;
  margin-top: auto;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.footer-links {
  margin-bottom: 1rem;
}

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  margin: 0 1rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.footer-link {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: white;
}

.copyright {
  color: #bdc3c7;
}

.copyright p {
  margin: 0.25rem 0;
}

/* Dark mode footer links */
[data-theme="dark"] .footer-links a,
[data-theme="dark"] .footer-link {
  color: #87ceeb;
}

/* Form Elements */
input, select, textarea {
  width: 100%;
  padding: 0.75rem;
  margin: 0 0 1rem;
  border: 2px solid var(--border-color);
  border-radius: var(--radius);
  font-size: 16px;
  background: var(--input-bg);
  color: var(--text-color);
  transition: all 0.2s ease;
  font-family: inherit;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

label {
  font-weight: 600;
  display: block;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
  font-size: 0.875rem;
}

/* Dark mode overrides */
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
  color: #87ceeb !important;
}

[data-theme="dark"] .industry-card h3,
[data-theme="dark"] .feature h3,
[data-theme="dark"] .pricing-card h3 {
  color: #87ceeb !important;
}

[data-theme="dark"] .industry-card p,
[data-theme="dark"] .feature p {
  color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .industry-grid,
  .features-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}