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

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

body {
  font-family: "Inter", sans-serif;
  background-color: #ffffff;
  overflow-x: hidden;
}

#heroBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: -1;
}

.btn {
  font-size: 14px;
  border: none;
  cursor: pointer;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 13px 24px;
  z-index: 99;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    all 0.3s ease,
    backdrop-filter 0.3s ease;
  color: #08090a;
}

header nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 24px;
}

header nav #logo {
  font-size: 22px;
  font-weight: 600;
}

header nav #logo span img {
  width: 18px;
}

nav ul {
  display: flex;
  gap: 24px;
  font-size: 14px;
}

nav ul li {
  font-size: 14px;
}

nav .buttons {
  display: flex;
  gap: 9px;
}

nav .buttons button {
  padding: 8px 18px;
  border-radius: 99px;
}

nav .buttons #contactBTN {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.2s ease;
  color: #08090a;
}

nav .buttons #startFreeBTN {
  background: #ffffff;
  color: #08090a;
  transition: all 0.2s ease;
}

nav .buttons #startFreeBTN:hover {
  background-color: #e5e7eb;
}

.sectionBox {
  width: 100%;
  max-width: 1056px;
  margin: 0 auto;
}

#heroSection {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 45px;
}

#heroSection #pill {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #044867;
  color: #ffffff;
  margin: 40px auto 0px auto;
  padding: 5px 5px;
  gap: 10px;
  border-radius: 20px;
  font-size: 14px;
}

#heroSection #pill #new {
  background-color: #0c8c5e;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 400;
}

#heroSection #pill svg {
  width: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#heroSection #description {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#heroSection #description #heading {
  text-align: center;
  font-size: 56px;
  max-width: 600px;
  font-weight: 600;
  overflow: hidden;
  padding: 9px 0px;
  color: white;
  margin-top: 30px;
}

#heroSection #description #subtext {
  text-align: center;
  color: white;
  max-width: 450px;
  margin-top: 20px;
  letter-spacing: 0.2px;
  line-height: 24px;
}

#heroSection #input {
  width: 350px;
  height: 44px;
  margin: 40px auto;
  display: flex;
  align-items: center;
  padding: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

#heroSection #input input {
  flex: 1;
  height: 100%;

  border: none;
  outline: none;
  background: transparent;

  padding: 0 14px;
  font-size: 14px;
  color: #fff;
}

#heroSection #input input::placeholder {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

#heroSection #input #emailBTN {
  height: 100%;
  padding: 0 16px;
  border: none;
  cursor: pointer;
  border-radius: 99px;
  background: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 600;
}

#heroSection #heroImage {
  width: 100%;
  width: 1056px;
  margin-top: 50px;
}

#heroSection #heroImage img {
  width: 100%;
  border-radius: 23px;
  border-right: 1px solid #00000014;
  border-left: 1px solid #00000014;
}

#heroSection #compayLogos {
  width: 100vw;
}

#heroSection #compayLogos img {
  width: 100%;
}

#features {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 500px;
  margin-top: 150px;
  margin-bottom: 120px;
}

#features h2 {
  font-size: 40px;
  line-height: 44px;
  letter-spacing: -0.8px;
  padding: 11px;
  font-weight: 600;
}

#features #subtext {
  width: 100%;
  max-width: 580px;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
}

#features #grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1024px;
  margin-top: 50px;
}

.card {
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.text1 {
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.6px;
  color: #188b5f;
  font-weight: 500;
}

.text2 {
  font-size: 24px;
  line-height: 31.4px;
  letter-spacing: -0.2px;
  font-weight: 500;
}

.text3 {
  font-size: 16px;
  line-height: 24px;
  max-width: 78%;
  color: #717377;
}

.card:nth-child(3) {
  grid-column: 1 / -1;
  text-align: center;
}

.card img {
  width: 100%;
  margin-top: 40px;
}

.lastText {
  margin: auto;
  max-width: 50%;
}

#enterprise {
  width: 100%;
  background: #f7f7f7;
  padding: 40px 0px;
}

#enterprise #grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

#enterprise #grid #greenText {
  font-size: 12px;
  letter-spacing: 0.6px;
  color: #1f7a5c;
  margin-bottom: 18px;
  font-weight: 500;
}

#enterprise #grid h2 {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: 0.6px;
  margin: 0 0 20px;
  font-weight: 600;
  color: #111;
}

#enterprise #grid #description {
  font-size: 16px;
  line-height: 24px;
  color: #555;
}

#enterprise #grid .rightSide {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
}

#enterprise #grid .rightSide #enterpriseBTN {
  background: #000;
  color: #fff;
  padding: 12px 28px;
  border-radius: 99px;
  font-size: 16px;
  transition: opacity 0.2s ease;
}

#enterprise #grid .rightSide #enterpriseBTN:hover {
  opacity: 0.85;
}

#enterprise .features {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 64px;
}

#enterprise .features .icon {
  width: 36px;
  border-radius: 50%;
  color: #539c7b;
  margin-bottom: 28px;
}

#enterprise .features .title {
  font-size: 22px;
  margin: 16px 0 12px;
  font-weight: 600;
}

#enterprise .features .subtext {
  font-size: 16px;
  color: #555;
  line-height: 24px;
}

#enterprise img {
  width: 100%;
  margin-top: 80px;
}

#customers {
  padding: 120px 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#customers #eyebrow {
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.6px;
  color: #1f7a5c;
  margin-bottom: 18px;
  font-weight: 600;
}

#customers h2 {
  font-size: 40px;
  line-height: 44px;
  letter-spacing: -0.8px;
  font-weight: 600;
  max-width: 720px;
  margin-bottom: 16px;
}

#customers #subtext {
  max-width: 640px;
  font-size: 16px;
  line-height: 24px;
  color: #5f6368;
  margin-bottom: 56px;
  max-width: 60%;
}

#customers #grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

#customers .card1 {
  text-align: left;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 14px;
  margin-left: 200px;
}

#customers .card-image {
  width: 100%;
  height: 280px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
}

#customers .card-text {
  font-size: 15px;
  line-height: 22px;
  color: #444;
}

#customers .card-link {
  font-size: 14px;
  color: #6b7280;
  cursor: pointer;
  margin-top: 6px;
}
#customers .card-link:hover {
  color: #111;
}
#customers .nav-btns {
  width: 100%;
  text-align: center;
  margin-top: 60px;
}
#customers .nav-btns svg {
  width: 35px;
  height: 35px;
}
#customers .nav-btns svg:hover {
  opacity: 0.7;
  cursor: pointer;
}

#advantage {
  padding: 120px 0;
  text-align: center;
}

#advantage h2 {
  font-size: 40px;
  line-height: 44px;
  font-weight: 500;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}

#advantage #subtext {
  font-size: 16px;
  color: #555;
  margin-bottom: 28px;
}

#advantage .buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 80px;
}

#advantage .btn-primary {
  background: #000;
  color: #fff;
  padding: 8px 24px;
  border-radius: 99px;
  font-weight: 600;
  cursor: pointer;
}

#advantage .btn-primary:hover {
  opacity: 0.9;
}

#advantage .btn-outline {
  background: transparent;
  border: 1px solid #d1d5db;
  padding: 8px 24px;
  border-radius: 99px;
  font-weight: 500;
  cursor: pointer;
}

#advantage .btn-outline:hover {
  background: #f3f4f6;
}

#advantage #grid {
  display: grid;
  grid-template-columns: 1fr 1fr;

}

#advantage .col {
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

#advantage .col:first-child {
  border-right: 1px solid #e5e7eb;
}

#advantage .icon-box {
  width: 56px;
  height: 56px;
  padding: 12px;
  border-radius: 15px;
  background: #fdfdfd;
  color: #0c8c5e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
#advantage .icon-box svg {
  width: 32px;
  height: 32px;
}
#advantage h3 {
  font-size: 20px;
  font-weight: 400;
}

#advantage p {
  font-size: 15px;
  color: #666;
}
#advantage a {
  margin-top: 8px;
  font-size: 14px;
  color: #0f7a5c;
  cursor: pointer;
  font-weight: 500;
}

#footer {
  border-top: 0.3px solid #e5e7eb;
}

#footer hr {
  width: 100%;
  border-bottom: 0.3px solid #e5e7eb;
}

#footer #holder {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-left: 0.3px solid #e5e7eb;
  border-right: 0.3px solid #e5e7eb;
  max-width: 1020px;
  margin: auto;
  padding: 80px 0;
}

#footer #top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 40px;
}

#footer .brand {
  font-size: 22px;
  font-weight: 700;
}

#footer .social {
  display: flex;
  gap: 18px;
  color: #666;
  font-weight: 600;
  cursor: pointer;
}

#footer #links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  padding: 40px 40px;
}

#footer .col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#footer .heading {
  font-size: 12px;
  letter-spacing: 0.6px;
  color: #888;
  font-weight: 600;
}

#footer .col a {
  font-size: 14px;
  color: #222;
  cursor: pointer;
}

#footer #security {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
  color: #333;
  font-size: 14px;
  padding: 30px 40px 10px 40px;
}

#footer .badge {
  font-size: 12px;
  color: #666;
  overflow: hidden;
}
#footer .badge svg {
  width: 40px;
  height: 40px;
}

#footer #bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px 40px 0px 40px;
  border-top: 1px solid #e5e7eb;
  font-size: 14px;
  color: #666;
}

#footer .status {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #e2e2e2;
  max-width: fit-content;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 600;
}

#footer .status .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16a34a;
}

#footer .copy {
  text-align: center;
}

#footer .theme {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  background-color: #e2e2e2;
  max-width: fit-content;
  padding: 4px 8px;
  border-radius: 20px;
}
#footer .theme svg {
  width: 16px;
  height: 16px;
}
#footer .theme svg:nth-child(2) {
  background-color: #ffffff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  padding: 5px;
}
