:root {
  --bg: #f7f3ee;
  --dark: #1f1f1f;
  --accent: #ff7a18;
  --accent-soft: #ffd2a6;
  --text: #333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, Arial, sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.logo {
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 1px;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--dark), #333);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin: 20px 0;
}

.subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* BUTTONS */
.buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
}

.primary {
  background: var(--accent);
  color: #000;
}

.primary:hover {
  transform: translateY(-2px);
  background: #ff8f3d;
}

.secondary {
  border: 2px solid #fff;
  color: #fff;
}

.secondary:hover {
  background: #fff;
  color: #000;
}

/* SECTIONS */
.section {
  padding: 80px 0;
}

.section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.text {
  max-width: 700px;
  font-size: 1.1rem;
}

.dark {
  background: #111;
  color: #fff;
}

.accent {
  background: var(--accent-soft);
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.card {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 16px;
}

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

/* LIST */
.list {
  margin-top: 20px;
  list-style: none;
}

.list li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* FOOTER */
.footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 30px 0;
  font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }
}
