* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, system-ui, sans-serif;
}


.hero {
  min-height: 160vh;
  background:
    linear-gradient(
      180deg,
      rgba(6, 78, 109, 0.95),
      rgba(15, 118, 110, 0.9),
      rgba(45, 212, 191, 0.85)
    ),
    url("../images/background.jpg");
  background-size: cover;
  background-position: center;
  color: white;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -40px;        
  left: 50%;
  top: 600px;
  transform: translateX(-50%);
  width: 900px;           
  height: 500px;

  background: url("../images/hero-image-light.svg") no-repeat;
  background-size: contain;
  opacity: 0.7;
  pointer-events: none;
}



.navbar {
  max-width: 1200px;
  margin: auto;
  padding: 24px 0;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu {
  display: flex;
  gap: 32px;
}

.menu a {
  text-decoration: none;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 500;
}

.logo {
  width: 100px;
}

.nav-right {
  display: flex;
  gap: 12px;
}

.sales {
  background: rgba(255,255,255,0.15);
  border: none;
  padding: 8px 16px;
  color: white;
  border-radius: 999px;
  cursor: pointer;
}

.start {
  background: white;
  color: #064e6d;
  border: none;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.hero-content {
  max-width: 900px;
  margin: 120px auto 0;
  text-align: center;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  margin-top: 24px;
}

.hero-content p {
  margin-top: 20px;
  font-size: 18px;
  color: rgba(255,255,255,0.9);
}

.badge {
  display: inline-block;
  background: rgba(34,197,94,0.15);
  color: #22c55e;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
}

.cta {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.cta input {
  padding: 12px 16px;
  border-radius: 999px;
  border: none;
  width: 260px;
}

.cta button {
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: white;
  color: #064e6d;
  font-weight: 600;
  cursor: pointer;
}


.ai-section {
  padding: 120px 20px;
  background: #ffffff;
}

.ai-header {
  max-width: 720px;
  margin: 0 auto 80px;
  text-align: center;
}

.ai-header h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
}

.ai-header p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}


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

.ai-card {
  border: 1px solid #eee;
  border-radius: 24px;
  padding: 32px;
  background: #fff;
}

.ai-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 12px 0;
}

.ai-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #059669;
}

.card-visual {
  margin-top: 40px;
  height: 180px;
  border-radius: 16px;
  background:
    linear-gradient(90deg, #e5f9f2 25%, transparent 25%) 0 0 / 20px 20px,
    linear-gradient(#e5f9f2 25%, transparent 25%) 0 0 / 20px 20px;
}

.card-visual.checks {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
}

.check {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #059669;
  position: relative;
}

.check::after {
  content: "✓";
  color: white;
  font-size: 20px;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.check.spark {
  background: #10b981;
}

.check.ghost {
  background: transparent;
  border: 2px dashed #ccefe3;
}


.enterprise {
  padding: 120px 20px;
  max-width: 1200px;
  margin: auto;
  font-family: Inter, system-ui, sans-serif;
}

/* ---------- TOP ---------- */
.enterprise-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #059669;
}

.enterprise-text h2 {
  font-size: 42px;
  font-weight: 800;
  margin: 12px 0;
}

.enterprise-text p {
  color: #555;
  max-width: 480px;
  line-height: 1.6;
}

.enterprise-btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

/* ---------- FEATURES ---------- */
.enterprise-features {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.feature h4 {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 700;
}

.feature p {
  margin-top: 8px;
  color: #555;
  line-height: 1.6;
}

.icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #059669;
}

.icon.shield {
  background: #10b981;
}

/* ---------- STORY CARD ---------- */
.story-card {
  margin-top: 80px;
  border-radius: 24px;
  padding: 48px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.7), rgba(0,0,0,0.2)),
    url("../images/story-background.jpg");
  background-size: cover;
  background-position: center;
  color: white;
}

.story-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  opacity: 0.8;
}

.story-card h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 16px 0;
}

.story-card a {
  color: white;
  font-weight: 600;
  text-decoration: none;
}

.stats {
  margin-top: 32px;
  display: flex;
  gap: 48px;
}

.stats strong {
  font-size: 28px;
  display: block;
}

.stats span {
  font-size: 14px;
  opacity: 0.85;
}

/* ---------- LOGOS ---------- */
.logos {
  margin-top: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #999;
  font-weight: 600;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .enterprise-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .enterprise-features {
    grid-template-columns: 1fr;
  }

  .stats {
    flex-direction: column;
    gap: 24px;
  }

  .logos {
    flex-wrap: wrap;
    gap: 24px;
  }
}


.footer-container{
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-container h4{
  color: #000;
}

.footer-card-container{
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 160px;
}

.footer-card-container a{
  color:#000;
  text-decoration: none;
}

.footer-card-container h4{
  font-size: 0.85rem;
  font-weight: 500;
  color: #777;
  margin-bottom: 10px;
}

.footer-card-container a {
  font-size: 0.9rem;
  color: #111;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

