/* DossierCheck Landing Page Styles */
*, *::before, *::after { box-sizing: border-box; }

:root {
  --color-primary: #1a56db;
  --color-primary-dark: #1e429f;
  --color-accent: #f59e0b;
  --color-bg: #f9fafb;
  --color-white: #ffffff;
  --color-text: #1a202c;
  --color-text-muted: #6b7280;
  --radius: 8px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  margin: 0;
  line-height: 1.6;
}

/* Nav */
.nav {
  background: var(--color-white);
  border-bottom: 1px solid #e5e7eb;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-links a:hover { color: var(--color-primary); }
.nav-cta {
  background: var(--color-primary);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--color-primary-dark); }

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-content { padding-right: 16px; }
.hero-badge {
  display: inline-block;
  background: #dbeafe;
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 16px;
  color: #111827;
}
.hero h1 span { color: var(--color-primary); }
.hero p {
  font-size: 1.125rem;
  color: #4b5563;
  margin: 0 0 32px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--color-primary-dark); }
.btn-secondary {
  background: var(--color-white);
  color: var(--color-text);
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 1.5px solid #d1d5db;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--color-primary); color: var(--color-primary); }
.hero-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* Hero — new text & form */
.hero-headline {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 20px;
  color: #111827;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: #4b5563;
  margin: 0 0 36px;
  line-height: 1.7;
}
.hero-form-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.hero-form {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 560px;
}
.hero-form input[type="email"] {
  flex: 1;
  padding: 14px 16px;
  border: 1.5px solid #d1d5db;
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-white);
  outline: none;
  transition: border-color 0.2s;
}
.hero-form input[type="email"]:focus {
  border-color: var(--color-primary);
}
.btn-hero-submit {
  background: var(--color-primary);
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-hero-submit:hover { background: var(--color-primary-dark); }
.hero-form-micro {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin: 0;
  text-align: center;
  width: 100%;
  max-width: 560px;
}
.hero-form-success {
  font-size: 0.875rem;
  color: #059669;
  font-weight: 600;
  margin: 0;
  width: 100%;
  max-width: 560px;
}

/* Trust bar */
.trust-bar {
  background: var(--color-white);
  padding: 20px 24px;
  text-align: center;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}
.trust-bar p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.875rem;
}
.trust-bar strong { color: var(--color-text); }

/* Features */
.features {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 48px;
  color: #111827;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  border: 1px solid #f3f4f6;
  transition: box-shadow 0.2s;
}
.feature-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.feature-icon {
  width: 48px;
  height: 48px;
  background: #dbeafe;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: #111827;
}
.feature-card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* How it works */
.how-it-works {
  background: #f0f4ff;
  padding: 80px 24px;
}
.how-it-works .section-label { text-align: center; display: block; }
.how-it-works .section-title { text-align: center; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.step { text-align: center; }
.step-number {
  width: 56px;
  height: 56px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 16px;
}
.step h3 { font-size: 1.05rem; font-weight: 700; margin: 0 0 8px; }
.step p { margin: 0; color: var(--color-text-muted); font-size: 0.9rem; }

/* CTA Section */
.cta-section {
  background: var(--color-primary);
  padding: 80px 24px;
  text-align: center;
  color: #fff;
}
.cta-section h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin: 0 0 16px;
}
.cta-section p {
  font-size: 1.1rem;
  margin: 0 0 32px;
  opacity: 0.9;
}
.cta-section .btn-primary {
  background: #fff;
  color: var(--color-primary);
  font-size: 1.1rem;
  padding: 16px 36px;
}
.cta-section .btn-primary:hover { background: #f3f4f6; }

/* Toast notification */
#dc-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #111827;
  color: #fff;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  z-index: 9999;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
}
#dc-toast.dc-toast-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Footer */
.footer {
  background: #111827;
  color: #9ca3af;
  padding: 40px 24px;
  text-align: center;
}
.footer-brand { font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.footer p { margin: 0; font-size: 0.875rem; }
.footer a { color: #9ca3af; text-decoration: none; }
.footer a:hover { color: #fff; }

/* Responsive */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; padding: 48px 20px; gap: 32px; }
  .hero-headline { font-size: 2rem; }
  .hero-form { flex-direction: column; }
  .btn-hero-submit { text-align: center; }
  .hero-form-micro { text-align: left; }
  .hero-image img { height: 260px; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .nav-links { display: none; }
}