/* Salgsagent Shared Base CSS v1.0 */
:root {
  --bg: #0a0a0f;
  --surface: rgba(255,255,255,0.05);
  --border: rgba(255,255,255,0.1);
  --text: #e8e8f0;
  --muted: #888899;
  --accent: #4f8ef7;
  --accent2: #7c3aed;
  --radius: 12px;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font); line-height: 1.6; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.btn-primary {
  display: inline-block; padding: 12px 28px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; border-radius: 8px; font-weight: 600;
  transition: opacity .2s;
}
.btn-primary:hover { opacity: .85; text-decoration: none; }
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,15,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border); padding: 14px 0;
}
.site-header .container { display: flex; align-items: center; gap: 24px; }
.logo a { font-size: 1.4rem; font-weight: 700; color: #fff; }
.main-nav { display: flex; gap: 20px; margin-left: auto; }
.main-nav a { color: var(--muted); font-size: .95rem; transition: color .2s; }
.main-nav a:hover { color: #fff; text-decoration: none; }
.lang-switch a {
  border: 1px solid var(--border); padding: 4px 10px;
  border-radius: 6px; font-size: .85rem; color: var(--muted);
}
.hero {
  padding: 80px 0 60px;
  background: radial-gradient(ellipse at 50% 0%, rgba(79,142,247,0.15) 0%, transparent 70%);
  text-align: center;
}
.hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.hero p { font-size: 1.15rem; color: var(--muted); margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.articles-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px; margin-top: 24px;
}
.article-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  transition: border-color .2s, transform .2s;
}
.article-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.article-card .cat { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--accent); margin-bottom: 8px; }
.article-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.article-card p { font-size: .9rem; color: var(--muted); }
.article-card .read-more { display: inline-block; margin-top: 14px; font-size: .85rem; font-weight: 600; }
section { padding: 60px 0; }
section h2 { font-size: 1.8rem; margin-bottom: 8px; }
.disclaimer-bar {
  background: rgba(255,180,0,0.1); border-bottom: 1px solid rgba(255,180,0,0.2);
  padding: 8px 20px; text-align: center; font-size: .85rem; color: #ffb400;
}
.site-footer {
  background: rgba(0,0,0,0.4); border-top: 1px solid var(--border);
  padding: 40px 0; text-align: center; color: var(--muted); font-size: .85rem;
}
.site-footer a { color: var(--muted); }
.site-footer .disclaimer { margin-top: 8px; font-size: .78rem; opacity: .7; }
.ticker-section { background: rgba(0,0,0,0.3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 10px 0; overflow: hidden; }
.ticker-wrap { overflow: hidden; }
.ticker { display: flex; gap: 40px; animation: ticker 30s linear infinite; white-space: nowrap; font-size: .85rem; color: var(--muted); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker .up { color: #22c55e; }
.ticker .down { color: #ef4444; }
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; margin-top: 24px; }
.cat-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px; text-align: center;
  color: var(--text); font-weight: 600; transition: border-color .2s;
}
.cat-card:hover { border-color: var(--accent); text-decoration: none; }
@media (max-width: 768px) {
  .main-nav { display: none; }
  .hero { padding: 50px 0 40px; }
  .articles-grid { grid-template-columns: 1fr; }
}
