@charset "UTF-8";
@import "../../vendor/bootstrap/dist/css/bootstrap.min-z0zQt-h.css";
/* google-sans-flex-200 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Google Sans Flex";
  font-style: normal;
  font-weight: 200;
  src: url("../../fonts/google-sans-flex-v21-latin-200-OgX0y2K.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* google-sans-flex-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Google Sans Flex";
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/google-sans-flex-v21-latin-regular-vCkH0Yp.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* google-sans-flex-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Google Sans Flex";
  font-style: normal;
  font-weight: 600;
  src: url("../../fonts/google-sans-flex-v21-latin-600-qxknTXI.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
body {
  background-color: #ffffff;
  font-family: "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #000000;
}

.navbar {
  padding: 1.5rem 0;
}
.navbar .navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
}
.navbar .navbar-brand img {
  margin-right: 0.5rem;
}
.navbar .nav-link {
  color: #000000;
  font-weight: 500;
  margin: 0 0.5rem;
}
.navbar .nav-link:hover {
  color: #6c757d;
}

.btn-dark-round {
  background-color: #000000;
  color: #ffffff;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border: none;
  transition: transform 0.2s;
}
.btn-dark-round:hover {
  background-color: #1a1a1a;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline-round {
  background-color: transparent;
  color: #000000;
  border: 1px solid #dee2e6;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
}
.btn-outline-round:hover {
  background-color: #f8f9fa;
}

.hero-section {
  padding: 4rem 0;
}
.hero-section h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
}
.hero-section .lead-text {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 2rem;
}
.hero-section .hero-checklist {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
}
.hero-section .hero-checklist li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}
.hero-section .hero-checklist li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 1px solid #ccc;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 12px;
}

.features-row {
  padding: 3rem 0;
  border-top: 1px solid #eee;
}
.features-row .feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.features-row .feature-item .feature-icon {
  width: 40px;
  height: 40px;
}
.features-row .feature-item .feature-text {
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.2;
}

.workflow-section {
  padding: 5rem 0;
  background-color: #ffffff;
}
.workflow-section .step-card {
  text-align: center;
  padding: 2rem;
}
.workflow-section .step-card .step-number {
  display: inline-flex;
  width: 30px;
  height: 30px;
  background-color: #e2f37e;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 1rem;
}
.workflow-section .step-card .step-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.workflow-section .step-card h4 {
  font-weight: 700;
  margin-bottom: 1rem;
}
.workflow-section .step-card p {
  color: #6c757d;
  font-size: 0.9rem;
}

.cta-bar {
  background-color: #000000;
  color: #ffffff;
  padding: 3rem;
  border-radius: 20px;
  margin: 4rem 0;
}
.cta-bar .cta-input-group {
  display: flex;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 50px;
  padding: 5px;
}
.cta-bar .cta-input-group input {
  background: transparent;
  border: none;
  color: white;
  padding: 0.5rem 1.5rem;
  flex-grow: 1;
}
.cta-bar .cta-input-group input:focus {
  outline: none;
}
.cta-bar .cta-input-group .btn-yellow {
  background-color: #e2f37e;
  color: #000000;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 700;
  border: none;
}

footer {
  padding: 5rem 0;
  border-top: 1px solid #eee;
}
footer .footer-logo {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
footer .footer-links-title {
  font-weight: 700;
  margin-bottom: 1.5rem;
}
footer ul {
  list-style: none;
  padding: 0;
}
footer ul li {
  margin-bottom: 0.75rem;
}
footer ul li a {
  color: #6c757d;
  text-decoration: none;
}
footer ul li a:hover {
  color: #000000;
}

/*# sourceMappingURL=landing-b9561877a6.output.css.map */
