/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Roboto, sans-serif;
}

body {
  line-height: 1.6;
  color: #f4f4f4;
  background-color: #1c1c1c;
  scroll-behavior: smooth;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  z-chronomate_home: 1000;
}
.nav-brand {
  font-size: 1.2rem;
  font-weight: bold;
  color: #51cf66;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links li {
  display: inline;
}
.nav-links a {
  text-decoration: none;
  color: #f4f4f4;
  transition: 0.3s;
}
.nav-links a:hover {
  color: #51cf66;
}
.download-btn {
  background: #ff6b6b;
  padding: 6px 14px;
  border-radius: 20px;
}
.download-btn:hover {
  background: #ff4757;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #3a7bd5, #3a6073);
  color: white;
  text-align: center;
  padding: 80px 20px;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.cta-btn {
  background: #ff6b6b;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
.cta-btn:hover {
  background: #ff4757;
}

/* Sections */
section {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
}
section h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
  color: #51cf66;
}
.features ul,
.usecases ul {
  list-style: none;
  padding-left: 0;
}
.features li,
.usecases li {
  background: #2c2c2c;
  margin: 10px 0;
  padding: 12px;
  border-radius: 8px;
}

/* Comparison Table */
.comparison table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.comparison th,
.comparison td {
  border: 1px solid #444;
  padding: 12px;
  text-align: center;
}
.comparison th {
  background: #2d3436;
  color: #51cf66;
  font-weight: bold;
}
.comparison td {
  background: #2c2c2c;
}


/* download play store icon */
.play-icon {
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 8px;
  vertical-align: middle;

  /* Triangle shape */
  border-left: 28px solid transparent;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;

  /* Gradient fill using clip-path */
  position: relative;
}

/* Privacy Page */
.content {
  max-width: 900px;
  margin: auto;
  padding: 60px 20px;
  background: #1c1c1c;
}
.content h1 {
  text-align: center;
  margin-bottom: 20px;
  color: #51cf66;
}
.content h2 {
  margin-top: 30px;
  color: #51cf66;
}
.content p,
.content li {
  color: #ddd;
}
.content ul {
  margin: 10px 0 20px 20px;
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  background: #111;
  font-size: 0.9rem;
  color: #bbb;
}
.footer a {
  color: #51cf66;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
