
/* trust7.de – modern, mobile-first SEO template
   EDITABLE: You can change colors, spacing, fonts.
   Avoid changing IDs and semantic tags unless necessary. */

:root{
  --bg:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --brand:#0ea5e9;
  --brand-strong:#0284c7;
  --accent:#22c55e;
  --border:#e5e7eb;
  --radius:16px;
  --shadow:0 10px 20px rgba(2,8,23,.07);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}
a{color:var(--brand);text-decoration:none}
a:hover{text-decoration:underline}
img{max-width:100%;height:auto;display:block}

.container{max-width:1100px;margin:0 auto;padding:0 16px}
header{
  position:sticky;top:0;z-index:20;background:#fff;border-bottom:1px solid var(--border)
}
.nav{display:flex;align-items:center;justify-content:space-between;padding:12px 0}
.brand{display:flex;gap:10px;align-items:center}
.brand__logo{width:40px;height:40px;border-radius:8px;background:#e2e8f0;display:flex;align-items:center;justify-content:center;font-weight:700}
.brand__name{font-weight:700;letter-spacing:.2px}
.nav__links{display:flex;gap:14px;flex-wrap:wrap}
.langswitch{display:flex;gap:8px;align-items:center}
.langswitch a{padding:6px 10px;border:1px solid var(--border);border-radius:999px}
.langswitch a.active{background:var(--brand);color:#fff;border-color:var(--brand)}

.hero{
  padding:64px 0;
  background:linear-gradient(180deg,#f8fafc 0%, #ffffff 100%);
}
.hero__inner{display:grid;grid-template-columns:1.2fr .8fr;gap:24px;align-items:center}
@media (max-width: 860px){
  .hero__inner{grid-template-columns:1fr}
}

.hero h1{font-size:clamp(28px,5vw,44px);line-height:1.15;margin:0 0 12px}
.hero p{color:var(--muted);margin:0 0 18px}
.hero .cta{display:flex;gap:10px;flex-wrap:wrap}
.btn{display:inline-block;padding:12px 16px;border-radius:12px;border:1px solid var(--border);box-shadow:var(--shadow);background:#fff}
.btn--primary{background:var(--brand);border-color:var(--brand);color:#fff}
.btn--ghost{background:transparent}

.section{padding:40px 0;border-top:1px solid var(--border)}
.section h2{font-size:clamp(22px,3.5vw,32px);margin:0 0 10px}
.grid{display:grid;gap:16px}
.grid--3{grid-template-columns:repeat(3,1fr)}
@media (max-width: 900px){.grid--3{grid-template-columns:1fr}}
.card{padding:16px;border:1px solid var(--border);border-radius:var(--radius);box-shadow:var(--shadow);background:#fff}
.card h3{margin:0 0 8px}
.badge{display:inline-block;padding:4px 8px;border-radius:999px;background:#ecfeff;border:1px solid #bae6fd;font-size:12px}
.kv{display:grid;grid-template-columns:140px 1fr;gap:6px 12px}
.kv div{padding:4px 0;border-bottom:1px dashed var(--border)}

footer{padding:28px 0;background:#0b1220;color:#cbd5e1}
footer a{color:#cbd5e1}
footer .footgrid{display:grid;gap:16px;grid-template-columns:2fr 1fr 1fr}
@media (max-width: 900px){footer .footgrid{grid-template-columns:1fr}}
.small{font-size:14px;color:#64748b}
.notice{background:#f1f5f9;border-left:4px solid var(--brand);padding:10px 12px;border-radius:8px}
