/* General Reset */
body, h1, h2, p, ul {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #111;
  line-height: 1.6;
}

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

/* Navbar */
.navbar {
  background: #fff;
  padding: 12px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 48px;
}

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

nav a:hover {
  color: #ff9800;
}

/* Hero */
.hero {
  padding: 60px 0;
  background: #fff;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero .text {
  flex: 1;
  min-width: 300px;
}

.hero .text h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.hero .text h1 span {
  background: linear-gradient(to right, #ffd700, #ff9800);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 24px;
}

.hero-img {
  flex: 1;
  max-width: 500px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* CTA Button */
.cta-btn {
  display: inline-block;
  background: linear-gradient(to right, #ffd700, #ff9800);
  color: #000;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.cta-btn:hover {
  transform: scale(1.03);
}

/* Features */
.features {
  background: #fafafa;
  padding: 60px 0;
}

.feature-content {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap-reverse;
  justify-content: center;
}

.feature-img {
  flex: 1;
  max-width: 500px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.features .text {
  flex: 1;
  min-width: 300px;
}

.features h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.features ul {
  list-style: none;
  padding-left: 0;
}

.features li {
  margin-bottom: 12px;
  font-size: 1rem;
  padding-left: 1.2em;
  position: relative;
}

.features li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #ff9800;
}

/* Install Section */
.install {
  text-align: center;
  padding: 60px 0;
  background: #fff;
}

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

/* Footer */
footer {
  padding: 20px 0;
  text-align: center;
  background: #fafafa;
  font-size: 0.9rem;
  color: #666;
}

.footer-logo {
  height: 36px;
  margin-bottom: 10px;
}
