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

body {
  font-family: "Inter", system-ui, sans-serif;
  background-color: #0d0d0f;
  color: #f5f5f5;
  line-height: 1.6;
}

/* Layout */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
.header {
  border-bottom: 1px solid #1f1f23;
  background: rgba(13, 13, 15, 0.8);
  backdrop-filter: blur(8px);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

nav a {
  margin-left: 24px;
  text-decoration: none;
  color: #a1a1aa;
  transition: color 0.2s ease;
}

nav a:hover {
  color: #ffffff;
}

/* Hero */
.hero {
  padding: 100px 0 80px;
  text-align: left;
}

.hero h1 {
  font-size: 2.8rem;
  max-width: 700px;
  margin-bottom: 20px;
}

.hero p {
  color: #a1a1aa;
  max-width: 600px;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: #4f7cff;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(79,124,255,0.3);
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 60px 0;
}

.card {
  background: #16181d;
  border: 1px solid #26262b;
  padding: 24px;
  border-radius: 10px;
  transition: transform 0.2s ease, border 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: #4f7cff;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: #a1a1aa;
}

/* About */
.about {
  padding: 80px 0;
}

.about h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.about p {
  color: #a1a1aa;
  max-width: 700px;
}

.about_right {
  padding: 80px 0;
}

.about_right h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  text-align: right;
}

.about_right p {
  color: #a1a1aa;
  max-width: 700px;
  text-align: right;
  margin-left: auto;
  margin-right: 0;
}

.about_right ul {
  text-align: right;
  list-style-position: inside; /* Keeps bullets next to the text on the right */
  margin-left: auto;
  margin-right: 0;
}

.about_right li {
  text-align: right;
  list-style-position: inside; /* Keeps bullets next to the text on the right */
  margin-left: auto;
  margin-right: 0;
}

/* Footer */
.footer {
  border-top: 1px solid #1f1f23;
  padding: 40px 0;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #a1a1aa;
}

.footer-links a {
  display: block;
  color: #a1a1aa;
  text-decoration: none;
  margin-bottom: 8px;
}

.footer-links a:hover {
  color: #ffffff;
}
