/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* Required field indicator */
.required-indicator {
  color: #dc3545;
  margin-left: 2px;
  font-weight: bold;
}

/* Landing page */
:root {
  --landing-primary: #2563eb;
  --landing-primary-dark: #1d4ed8;
  --landing-secondary: #7c3aed;
  --landing-blue: #2563eb;
  --landing-green: #10b981;
  --landing-purple: #8b5cf6;
  --landing-indigo: #6366f1;
  --landing-gray-900: #0f172a;
  --landing-gray-700: #334155;
  --landing-gray-500: #64748b;
  --landing-card-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  --landing-radius: 18px;
}

.landing-page {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--landing-gray-900);
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 40%, #eef2ff 100%);
}

.landing-section { padding: 80px 18px; }
.landing-container { max-width: 1100px; margin: 0 auto; }
.landing-section.tight { padding-top: 20px; }
.landing-section.tightest { padding-top: 10px; }
.landing-text-center { text-align: center; }
.landing-title-xl { font-size: 30px; margin: 0 0 10px; }
.landing-title-lg { font-size: 28px; margin: 0 0 10px; }
.landing-subtle { color: var(--landing-gray-700); margin: 0 0 14px; }
.landing-grid-legal {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: start;
}
.landing-cta-group.centered { justify-content: center; }
.landing-hero { text-align: center; padding: 120px 18px 80px; position: relative; overflow: hidden; }
.landing-hero::before,
.landing-hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  filter: blur(120px);
  border-radius: 50%;
  z-index: 0;
}
.landing-hero::before { background: rgba(37, 99, 235, 0.18); top: -60px; left: -120px; }
.landing-hero::after { background: rgba(124, 58, 237, 0.18); bottom: -120px; right: -80px; }
.landing-hero-content { position: relative; z-index: 1; }
.landing-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--landing-primary);
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
}
.landing-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  margin: 16px 0;
  font-weight: 800;
}
.landing-gradient-text {
  background: linear-gradient(90deg, var(--landing-primary), var(--landing-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.landing-hero p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--landing-gray-700);
  max-width: 780px;
  margin: 0 auto 28px;
}
.landing-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 38px;
}
.landing-btn-primary,
.landing-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}
.landing-btn-primary {
  background: linear-gradient(120deg, var(--landing-primary), var(--landing-secondary));
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.25);
}
.landing-btn-primary:hover { transform: translateY(-1px); }
.landing-btn-secondary {
  background: #fff;
  color: var(--landing-gray-900);
  border: 1px solid #e2e8f0;
}
.landing-pill-row {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding: 14px 0;
  justify-content: center;
  scrollbar-width: thin;
}
.landing-pill-row.centered { justify-content: center; }
.landing-pill { 
  padding: 10px 14px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  color: var(--landing-gray-700);
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}
.landing-mt-6 { margin-top: 6px; }
.landing-mb-20 { margin: 0 0 20px; }
.landing-grid { display: grid; gap: 18px; }
.landing-grid.features { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.landing-grid.features .landing-card { text-align: center; }
.landing-card {
  background: #fff;
  border-radius: var(--landing-radius);
  padding: 20px;
  box-shadow: var(--landing-card-shadow);
  border: 1px solid #e2e8f0;
  height: 100%;
}
.landing-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.landing-icon svg {
  width: 42px;
  height: 42px;
}
.landing-card h3 { margin: 14px 0 8px; font-weight: 700; font-size: 18px; }
.landing-card p { margin: 0; color: var(--landing-gray-700); line-height: 1.5; }
.landing-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.14));
  color: var(--landing-primary);
  font-weight: 700;
}
.landing-cta-banner {
  background: linear-gradient(120deg, var(--landing-primary), var(--landing-secondary));
  color: #fff;
  border-radius: var(--landing-radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.25);
}
.landing-cta-banner .landing-subtle { color: rgba(255, 255, 255, 0.9); }
.landing-btn-primary.no-shadow { box-shadow: none; }
.landing-footer-title { margin: 0 0 8px; }
.landing-footer-title {
  margin: 0 0 8px;
  color: #fff;
}
.landing-footer-text { margin: 0; color: #cbd5e1; }
.landing-cta-banner p { color: rgba(255, 255, 255, 0.9); }
.landing-footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: 36px 18px;
  margin-top: 40px;
}
.landing-footer a { color: #cbd5e1; text-decoration: none; }
.landing-footer a:hover { color: #fff; }

/* Feature row styles for new sections */
.landing-feature-row {
  display: flex;
  align-items: center;
  gap: 48px;
  margin: 0 auto;
  max-width: 1100px;
  flex-wrap: wrap;
}
.landing-feature-row.reverse {
  flex-direction: row-reverse;
}
.landing-feature-text {
  flex: 1 1 340px;
  min-width: 300px;
}
.landing-feature-img {
  flex: 1 1 340px;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.landing-img {
  max-width: 400px;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(37,99,235,0.08);
}
.landing-feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0 0;
}
.landing-feature-list li {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: var(--landing-gray-900);
  margin-bottom: 10px;
}
.landing-feature-icon {
  color: var(--landing-green);
  font-size: 20px;
  margin-right: 10px;
}
@media (max-width: 900px) {
  .landing-feature-row {
    flex-direction: column;
    gap: 24px;
  }
  .landing-feature-row.reverse {
    flex-direction: column;
  }
  .landing-feature-img, .landing-feature-text {
    min-width: 0;
    width: 100%;
  }
  .landing-img {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .landing-hero { padding-top: 90px; }
  .landing-cta-group { flex-direction: column; align-items: stretch; }
  .landing-btn-primary,
  .landing-btn-secondary { justify-content: center; }
}

/* Global font override for mobile/responsive view */
body, h1, h2, h3, h4, h5, h6, .btn, .form-control, .card-title, .modal-title, .dropdown-item, input, select, textarea, button {
  font-family: 'Inter', sans-serif !important;
}

