:root {
  --font-sans: 'Inter', sans-serif;
  --color-primary: #f97316;
  --color-secondary: #3b82f6;
  --color-dark: #1f2937;
  --color-light: #f9fafb;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-sans); color: var(--color-dark); background: var(--color-light); line-height: 1.6; }

/* Hero Section */
#hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 80vh;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  padding: 0 1rem;
}
.hero-logo { height: 250px; margin-bottom: 1rem; }
#hero h1 { font-size: 3rem; margin-bottom: 1rem; }
#hero p { font-size: 1.25rem; margin-bottom: 2rem; }
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  background: #fff;
  color: var(--color-dark);
  font-weight: 600;
  text-decoration: none;
}

/* Features Section */
#features { padding: 4rem 2rem; max-width: 1200px; margin: 0 auto; }
#features h2 { text-align: center; margin-bottom: 2rem; color: var(--color-dark); }
.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.feature {
  background: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  text-align: center;
}
.feature h3 { margin-bottom: 0.5rem; }
.feature h3 a { color: var(--color-primary); text-decoration: none; font-weight: 600; }
.feature p { font-size: 0.95rem; color: var(--color-dark); }

footer {
  background: var(--color-dark);
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
}
footer p { font-size: 0.9rem; }

@media (max-width: 640px) {
  #hero h1 { font-size: 2.5rem; }
}
