/* Minimal, clean styles for Fundexis site */
:root {
  --bg: #0b0f1a;
  --panel: #0f172a;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --accent: #4f46e5;
  --accent-2: #22c55e;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 15, 26, 0.8); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.logo { font-weight: 700; font-size: 20px; color: white; }
nav a { margin-left: 14px; }
.btn {
  display: inline-block; padding: 10px 14px; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px; text-decoration: none;
}
.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white; border: none;
}

.hero {
  background: radial-gradient(1200px 500px at 20% -10%, rgba(79,70,229,0.35), transparent),
              radial-gradient(800px 400px at 80% -10%, rgba(34,197,94,0.25), transparent);
  padding: 80px 0 60px;
}
.hero h1 {
  font-size: 44px; line-height: 1.15; margin: 0 0 12px;
}
.hero p { color: var(--muted); max-width: 800px; }
.hero-cta { margin-top: 20px; }
.hero-cta .btn { margin-right: 10px; }

.section { padding: 64px 0; }
.section.alt { background: rgba(255,255,255,0.03); }

h2 { font-size: 28px; margin: 0 0 16px; }

.cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px;
}
.card {
  background: var(--panel); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; padding: 18px;
}
.card .price { color: var(--muted); }

details {
  background: var(--panel); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; padding: 12px 14px; margin-bottom: 10px;
}
details summary { cursor: pointer; font-weight: 600; }
details[open] { border-color: rgba(79,70,229,0.5); }

.contact-form {
  margin-top: 12px; display: grid; gap: 10px;
}
.contact-form input, .contact-form textarea {
  width: 100%; padding: 12px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.02); color: var(--text);
}
.contact-form button { justify-self: start; }

.site-footer {
  padding: 28px 0; text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--muted);
}
.site-footer a { color: var(--text); }
