/* Trials Landing Page Styles */

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

html, body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #00008B;
  letter-spacing: -0.02em;
}

.nav-cta {
  background: #00008B;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: #00006B;
  transform: translateY(-1px);
  color: white;
  text-decoration: none;
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Hero Section */
.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5em;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.25em;
  color: #64748b;
  margin-bottom: 32px;
  line-height: 1.5;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #00008B;
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(64, 123, 255, 0.3);
}

.hero-cta:hover {
  background: #00006B;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(64, 123, 255, 0.4);
  color: white;
  text-decoration: none;
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background: #0f172a;
  color: white;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.1em;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
}

.feature-card h3 {
  font-size: 1.3em;
  font-weight: 600;
  color: white;
  margin-bottom: 12px;
}

.feature-card p {
  color: #cbd5e1;
  line-height: 1.6;
  font-size: 1em;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: white;
  color: #1a1a1a;
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.cta-subtitle {
  font-size: 1.1em;
  margin-bottom: 32px;
  opacity: 0.9;
  color: #64748b;
  line-height: 1.6;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #00008B;
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 139, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 139, 0.4);
  color: white;
  background: #00006B;
  text-decoration: none;
}

/* Footer */
.trials-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 32px 0;
  text-align: center;
  border-top: 1px solid #1e293b;
}

.trials-footer p {
  color: #94a3b8;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5em;
  }

  .hero-subtitle {
    font-size: 1.1em;
  }

  .section-title {
    font-size: 2em;
  }

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

  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 60px 0;
  }

  .features-section,
  .cta-section {
    padding: 60px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
