/* FITENTO Website - Minimal, professional */
:root {
  --bg: #F8F7F5;
  --surface: #FFFFFF;
  --border: #E8E6E3;
  --text: #1A1A2E;
  --text-muted: #6B7280;
  --accent: #0F9D9F;
  --accent-muted: rgba(15, 157, 159, 0.12);
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container { max-width: 720px; margin: 0 auto; padding: 0 24px; }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.logo { font-size: 1.5rem; font-weight: 700; color: var(--text); text-decoration: none; }
.nav-links { display: flex; gap: 24px; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; }
.nav-links a:hover { color: var(--accent); }

/* Hero */
.hero {
  padding: 64px 24px 80px;
  text-align: center;
}
.hero h1 { font-size: 2.5rem; font-weight: 700; margin: 0 0 16px; letter-spacing: -0.02em; }
.hero .tagline { font-size: 1.25rem; color: var(--text-muted); margin: 0 0 32px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta {
  display: inline-block;
  padding: 14px 28px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 12px;
  font-size: 1rem;
}
.cta:hover { opacity: 0.9; }

/* Features */
.features { padding: 48px 24px 64px; }
.features h2 { text-align: center; font-size: 1.75rem; margin: 0 0 40px; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.feature { background: var(--surface); padding: 24px; border-radius: 16px; border: 1px solid var(--border); }
.feature h3 { font-size: 1.1rem; margin: 0 0 8px; }
.feature p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* Footer */
.footer {
  padding: 40px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.footer a { color: var(--accent); text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.footer-links { margin-bottom: 12px; }
.footer-links a { margin: 0 12px; }

/* Legal pages */
.legal { padding: 40px 24px 80px; }
.legal .container { max-width: 640px; }
.legal h1 { font-size: 1.75rem; margin: 0 0 8px; }
.legal .updated { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 32px; }
.legal section { margin-bottom: 32px; }
.legal h2 { font-size: 1.15rem; margin: 0 0 12px; color: var(--text); }
.legal p { margin: 0 0 12px; color: var(--text-muted); font-size: 0.95rem; }
.legal ul { margin: 0 0 12px; padding-left: 20px; color: var(--text-muted); font-size: 0.95rem; }
.back { display: inline-block; color: var(--accent); text-decoration: none; font-size: 0.95rem; margin-bottom: 24px; }
.back:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .hero h1 { font-size: 1.9rem; }
  .feature-grid { grid-template-columns: 1fr; }
}
