@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: #f9f9fb;
  color: #121212;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 16px;
}

.primary-btn {
  background-color: #4f46e5;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  margin: 20px 0;
  cursor: pointer;
}

/* Navbar */
.header {
  position: sticky;
  top: 0;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

.nav {
  display: flex;
  align-items: center;
  height: 70px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .nav {
    padding-inline: 16px;
  }
}

.logo {
  display: block;
  width: 150px;
  height: auto;
}

/* Sections */
.section {
  padding: 60px 0;
}

@media (max-width: 991px) {
  .section {
    padding: 20px 0;
  }
}

.hero-section {
  background-color: #f5f7fa;
  text-align: center;
}

.why-us-section {
  background-color: #ffffff;
}

.secure-section {
  background-color: #f5f7fa;
}

.light-section {
  background-color: #f9fafb;
}

.white-section {
  background-color: #ffffff;
}

.demo-section {
  background-color: #f5f7fa;
}

/* Hero */
.hero-subheading {
  color: #4e3aff;
  font-weight: 500;
  font-size: 24px;
}

.hero-heading {
  font-size: 42px;
  font-weight: 700;
}

.hero-image {
  width: 100%;
  height: auto;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #1f2937;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.why-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.why-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 20px;
}
.icon-box img {
  width: 40px;
  height: 40px;
}

.icon-purple {
  background-color: #564ffd1a;
}

.icon-red {
  background-color: #fff0f0;
}

.icon-green {
  background-color: #edf8e8;
}

.why-title {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 10px;
}

.why-description {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

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

.integrations-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

@media (max-width: 991px) {
  .integrations-content,
  .secure-content {
    flex-direction: column;
  }
}

.integrations-text {
  flex: 1;
  min-width: 280px;
}

.section-title.left {
  text-align: left;
  margin-bottom: 20px;
}

.integrations-image {
  flex: 1.5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.integrations-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.secure-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.secure-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.secure-image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

.secure-text {
  flex: 1;
  min-width: 280px;
}

.secure-title {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

.secure-description {
  font-size: 16px;
  color: #4b5563;
  margin-bottom: 24px;
  line-height: 1.6;
}

.secure-subheading {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 12px;
}

.secure-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.secure-list li {
  background: #ffffff;
  padding: 12px 16px;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #111827;
}

.secure-list .icon {
  color: #10b981;
  font-weight: bold;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.feature-card {
  background-color: #f5f7fa;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  padding: 12px;
  width: fit-content;
  border-radius: 8px;
}

.feature-icon img {
  width: 40px;
  height: 40px;
}

.feature-title {
  font-size: 18px;
  font-weight: 500;
  color: #111827;
}

.feature-desc {
  font-size: 16px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.4;
}

.demo {
  text-align: center;
}

.demo-title {
  font-size: 32px;
  font-weight: 600;
  color: #1d2026;
}

.demo-video img {
  width: 100%;
  height: auto;
  margin-top: 20px;
}

.footer {
  background-color: #ffffff;
  text-align: center;
  font-size: 14px;
}
