/* landing.css */
@import url('style.css');

.landing-body {
  background-color: var(--bg-surface);
  overflow-x: hidden;
}

/* Header/Nav */
.landing-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.landing-nav .logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
}

.landing-nav-links {
  display: flex;
  gap: 32px;
}

.landing-nav-links a {
  color: var(--text-primary);
  font-weight: 500;
  transition: color 0.2s;
}

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

/* Hero Section */
.hero {
  padding: 100px 5%;
  text-align: center;
  background: linear-gradient(to bottom, #EFF6FF, var(--bg-surface));
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.hero-actions .btn {
  padding: 14px 28px;
  font-size: 16px;
}

/* Features Grid */
.features {
  padding: 80px 5%;
  background-color: var(--bg-surface);
}

.section-title {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 48px;
  color: var(--text-primary);
}

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

.feature-card {
  padding: 32px;
  background-color: var(--bg-base);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.feature-icon {
  width: 48px;
  height: 48px;
  background-color: #EFF6FF;
  color: var(--primary-color);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

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

/* Industries Grid */
.industries {
  padding: 80px 5%;
  background-color: var(--bg-base);
}

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

.industry-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 200px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0)), var(--bg-subtle);
  background-size: cover;
  background-position: center;
  color: white;
  transition: transform 0.2s;
}

.industry-card:hover {
  transform: scale(1.02);
}

.industry-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  z-index: 1;
}

/* Testimonials */
.testimonials {
  padding: 80px 5%;
  background-color: var(--bg-surface);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.testimonial-card {
  padding: 32px;
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-info h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.author-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Login Split Screen */
.login-split-container {
  display: flex;
  min-height: 100vh;
}

.login-image-side {
  flex: 1;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 40px;
  text-align: center;
}

.login-image-side h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.login-image-side p {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 400px;
}

.login-form-side {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--bg-surface);
  padding: 40px;
}

.login-form-wrapper {
  width: 100%;
  max-width: 400px;
}

.login-header {
  margin-bottom: 32px;
  text-align: center;
}

.login-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

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

.login-footer {
  margin-top: 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .login-split-container {
    flex-direction: column;
  }
  .login-image-side {
    padding: 60px 20px;
    flex: none;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .landing-nav-links {
    display: none;
  }
  .hero-actions {
    flex-direction: column;
  }
}
