@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Geist+Mono:wght@100..900&display=swap");

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

body {
  font-family: "Inter", sans-serif;
}

nav {
  color: #fff;
  display: flex;
  justify-content: space-evenly;
  padding: 10px 80px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(10px);
  align-items: center;
}

.nav-child-1 svg {
  cursor: pointer;
}

.nav-child-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 0 90px;
}

.nav-child-3 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.nav-child-2 a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 50px;
  transition: all 0.2s ease;
}

.nav-child-2 a:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.sff-button {
  background-color: #fff;
  border: 1px solid #fff;
  color: #111;
  padding: 10px 10px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
}

.cs-button {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 10px 10px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.sff-button:hover {
  background-color: #d9e4ea;
}

.hero {
  background-image: url("images/bg-light.svg");
  background-size: cover;
  background-position: center 0;
  background-repeat: no-repeat;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.new {
  width: 26%;
  margin: 100px auto 0;
  background-color: #04425c;
  padding: 5px 5px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  backdrop-filter: blur(8px);
  text-decoration: none;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.new:hover {
  background-color: #044f6f;
}

.new span {
  background-color: #0c8c5e;
  padding: 1px 3px;
  border-radius: 50px;
  font-size: 12px;
}

.new svg {
  width: 20px;
}

.headings h1 {
  color: #fff;
  display: flex;
  justify-content: center;
  font-size: 60px;
}

.hero p {
  text-align: center;
  color: #fff;
  width: 30%;
  font-size: 18px;
}

.form {
  background-color: #62aaa6;
  padding: 8px 5px 8px 12px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  border-radius: 50px;
}

.form input {
  color: #fff;
  border: none;
  background: transparent;
  border: none;
  outline: none;
  font-size: 16px;
  flex: 1;
  font-family: inherit;
}

.form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.start-now {
  background-color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.start-now:hover {
  background-color: #d9e4ea;
}

.guide-image {
  border-radius: 20px;
}

.trusted-by {
  display: grid;
  width: 50%;
  margin: 90px auto 150px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 60px;
}

.brand {
  display: flex;
  justify-content: center;
  align-items: center;
}

.features h2 {
  text-align: center;
  font-size: 40px;
}

.features-desc {
  margin: 10px auto;
  width: 40%;
  text-align: center;
  color: #393a3b;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  margin: 70px auto 120px;
  width: 70%;
  gap: 20px;
}

.card {
  border: 0.5px solid #eeeeee;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card p {
  width: 65%;
}

.card h5 {
  font-family: "Geist Mono", monospace;
  font-weight: 400;
  color: #0c8c5e;
  font-size: 14px;
}

.card h3 {
  font-weight: 600;
  font-size: 22px;
}

.card-wide {
  grid-column: 1 / 3;
  display: flex;
  align-items: center;
}

.card-wide p {
  width: 50%;
  text-align: center;
}

.enterprise-help {
  background-color: #f7f7f7;
  padding: 120px 220px 0 220px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.enterprise-help h5 {
  font-family: "Geist Mono", monospace;
  font-weight: 400;
  color: #0c8c5e;
  font-size: 14px;
}

.enterprise-help h2 {
  font-weight: 600;
  font-size: 36px;
  width: 45%;
  line-height: 1.2;
}

.entp-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.entp-explore-button {
  background-color: #111;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
}
.entp-explore-button:hover {
  background-color: #1e1f1f;
}

.entp-cards {
  display: flex;
  gap: 50px;
}

.entp-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.entp-card h3 {
  font-weight: 600;
  font-size: 20px;
}

.customer-story {
  position: relative; /* Essential for the overlay to work */
  width: 100%;
  margin-top: 60px;
  margin-bottom: 20px;
  border-radius: 35px;
  overflow: hidden;
}

.customer-story img {
  width: 100%;
  height: 500px; /* Adjust height as needed */
  object-fit: cover;
  display: block;
}

.story-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 70px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.first {
  display: flex;
  flex-direction: column;
  gap: 23px;
  font-weight: 600;
}

.first h5 {
  color: #fff;
  font-weight: 600;
  font-size: 13px;
}

.first p {
  font-size: 20px;
  width: 33%;
}

.first div {
  display: flex;
  align-items: center;
  gap: 5px;
}

.second {
  display: flex;
  gap: 30px;
}

.second h4 {
  font-size: 35px;
}

.second p {
  color: #b7b7b8;
  font-size: 14px;
}
.second-3plus p {
  color: #b7b7b8;
  width: 50%;
}

.brands {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-bottom: 70px;
}

.customers {
  padding: 120px 220px 0 220px;
  margin-bottom: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.customers h5 {
  font-family: "Geist Mono", monospace;
  font-weight: 400;
  color: #0c8c5e;
  font-size: 13px;
}

.customers h1 {
  font-weight: 600;
  font-size: 39px;
}

.customers-desc {
  color: #393a3b;
  width: 56%;
  text-align: center;
}

.customer-card {
  position: relative;
  width: 400px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  gap: 20px;
}

.perplexity-card-cover {
  object-fit: cover;
  border-radius: 20px;
  height: 300px;
}

.perplexity-card-logo {
  position: absolute;
  width: 150px;
  z-index: 2;
  left: 30%;
  top: 28%;
  scale: 1.4;
}

.customer-card div {
  display: flex;
  align-items: center;
  color: #838484;
  gap: 5px;
}

.card-description {
  width: 100%;
}

.customer-cards {
  display: flex;
  gap: 20px;
  margin-left: 150px;
}

.slider {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

.last-two {
  background-color: #f7f7f7;
}

.conclusion {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 120px auto;
  gap: 50px;
}

.first-conclusion-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.first-conclusion-section h1 {
  font-weight: 600;
  font-size: 40px;
  text-align: center;
  line-height: 1;
  width: 55%;
}

.conclusion-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
}

.get-sff-button {
  background-color: #111;
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  cursor: pointer;
}

.get-sff-button:hover {
  background-color: #2d2e2e;
}

.get-demo-button {
  border: 0.5px solid #f6f6f6;
  padding: 5px 20px;
  border-radius: 30px;
  cursor: pointer;
}

.get-demo-button:hover {
  background-color: #f6f6f6;
}

.second-conclusion-section {
  display: flex;
  gap: 40px;
}

.conclusion-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.conclusion-card div {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.conclusion-card h4 {
  font-size: 20px;
  font-weight: 500;
}

.conclusion-card a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: #0c8c5e;
}

.horizontal-line {
  width: 1px;
  height: 80px;
  background-color: #e5e7eb;
  align-self: center;
}

footer {
  border: 0.5px solid #bcb9b9;
  background-color: #f7f7f7;
}

.footer-container {
  margin: 0 30px;
}

.top {
  border: 0.5px solid #bcb9b9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 20px 20px 20px;
  width: 78%;
  margin: 0 auto;
}

.top div {
  display: flex;
  gap: 10px;
  align-items: center;
}

.links {
  width: 78%;
  margin: 0 auto;
  border: 0.5px solid #bcb9b9;
  display: flex;
  justify-content: space-between;
  padding: 50px 20px 20px 20px;
}

.links div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.links div h4 {
  color: #cac6c6;
}

.links div a {
  padding: 8px 12px;
}

.links div a:hover {
  background-color: #e3e2e2;
  /* border: 1px solid transparent; */
  border-radius: 50px;
}

.backed-by {
  width: 78%;
  margin: 0 auto;
  border: 0.5px solid #bcb9b9;
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 20px 20px 20px 20px;
}

.backed-by svg {
  width: 60px;
}

.last-footer {
  width: 78%;
  margin: 0 auto;
  border: 0.5px solid #bcb9b9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 30px 90px 30px;
}

.last-footer p {
  color: #686869;
}

.last-footer a {
  display: flex;
  background-color: #efefef;
  border-radius: 15px;
  padding: 2px 10px;
  cursor: pointer;
  gap: 5px;
}

.last-footer a svg {
  width: 15px;
}

.last-footer div {
  padding: 4px 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background-color: #efefef;
  border-radius: 15px;
}

.light-mode-button {
  background-color: #fff;
  padding: 4px 4px;
  border-radius: 50px;
}
