/* ============================================================
   INDUVARO – Brand Styles
   Farben: Hintergrund #52637f, Markenblau #2ea6d8
   ============================================================ */

:root{
  --bg: #52637f;
  --bg-deep: #47566f;
  --bg-card: rgba(255,255,255,0.07);
  --bg-card-hover: rgba(255,255,255,0.11);
  --brand: #2ea6d8;
  --brand-soft: rgba(46,166,216,0.16);
  --white: #ffffff;
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.62);
  --line: rgba(255,255,255,0.14);
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- Layout ---------- */
.container{
  width: min(1080px, 92vw);
  margin: 0 auto;
}

section{ padding: 72px 0; }
section.tight{ padding: 48px 0; }
section.alt{ background: var(--bg-deep); }

/* ---------- Header / Navigation ---------- */
.site-head{
  border-bottom: 1px solid var(--line);
  background: rgba(71,86,111,0.6);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 14px 0;
}
.brand-link{
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.brand-link:hover{ text-decoration: none; }
.brand-link svg{ width: 44px; height: 30px; flex: 0 0 auto; }
.brand-link .wordmark{
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--brand);
}
.nav-links{
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.nav-links a{
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 15px;
}
.nav-links a:hover{
  color: var(--white);
  background: var(--bg-card);
  text-decoration: none;
}
.nav-links a.active{ color: var(--white); }

/* Sprachumschalter – bewusst prominent */
.lang-switch{
  display: flex;
  margin-left: 12px;
  border: 1px solid rgba(46,166,216,0.5);
  border-radius: 9px;
  overflow: hidden;
}
.lang-switch a{
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.lang-switch a:hover{ text-decoration: none; color: var(--white); background: var(--bg-card); }
.lang-switch a.on{ background: var(--brand); color: #0e2233; }

/* ---------- Hero ---------- */
.hero{ padding: 96px 0 84px; }
.hero .overline{ margin-bottom: 20px; }
.hero h1{
  margin: 0;
  font-size: clamp(40px, 5.4vw, 72px);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.12;
  color: var(--white);
}
.hero h1 .accent{ color: var(--brand); }
.hero .tagline{
  margin: 18px 0 0;
  font-size: clamp(12px, 1.5vw, 15px);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero .lead{ margin-top: 26px; }
.hero .cta-row{ margin-top: 36px; }

.lead{
  font-size: clamp(18px, 2vw, 21px);
  font-weight: 300;
  color: var(--text);
  max-width: 46em;
}

/* ---------- Typo-Bausteine ---------- */
.overline{
  display: block;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 14px;
}
h2{
  margin: 0 0 18px;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
}
h3{
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 500;
  color: var(--white);
}
p{ margin: 0 0 16px; }
.muted{ color: var(--muted); }

.divider{
  width: 64px;
  height: 3px;
  background: var(--brand);
  border-radius: 2px;
  margin: 0 0 28px;
}

/* ---------- Buttons ---------- */
.cta-row{ display: flex; gap: 14px; flex-wrap: wrap; }
.btn{
  display: inline-block;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  transition: transform .12s ease, background .12s ease;
}
.btn:hover{ text-decoration: none; transform: translateY(-1px); }
.btn-primary{ background: var(--brand); color: #0e2233; }
.btn-primary:hover{ background: #46b6e4; }
.btn-ghost{
  border: 1px solid var(--line);
  color: var(--white);
}
.btn-ghost:hover{ background: var(--bg-card); }

/* ---------- Karten / Grids ---------- */
.grid{
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 34px;
}
.card{
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 24px;
}
.card p{ margin: 0; color: var(--muted); font-size: 15.5px; }

/* Nummern-Marker statt Symbolen */
.num{
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--brand);
  margin-bottom: 14px;
}
.num::after{
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--brand);
  opacity: 0.7;
  margin-top: 10px;
}

/* ---------- Merkmal-Liste ---------- */
.feature-list{
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.feature-list li{
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
}
.feature-list .tick{
  color: var(--brand);
  font-weight: 700;
  line-height: 1.65;
}
.feature-list strong{ color: var(--white); font-weight: 500; }
.feature-list span.desc{ color: var(--muted); }

/* ---------- CTA-Banner ---------- */
.cta-banner{
  background: linear-gradient(135deg, rgba(46,166,216,0.18), rgba(46,166,216,0.05));
  border: 1px solid rgba(46,166,216,0.35);
  border-radius: 18px;
  padding: 44px 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-banner h2{ margin: 0 0 6px; font-size: clamp(24px, 2.8vw, 32px); }
.cta-banner p{ margin: 0; color: var(--muted); }

/* ---------- Team ---------- */
.team-grid{
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 34px;
}
.person{
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  gap: 18px;
  align-items: center;
}
.person .avatar{
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.05em;
  flex: 0 0 auto;
}
.person .role{ color: var(--muted); font-size: 15px; }

/* ---------- Kontakt ---------- */
.contact-box{
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 34px 30px;
  margin-top: 30px;
}
.contact-box .mail{
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 300;
}
.contact-meta{
  margin-top: 22px;
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 15.5px;
}

/* ---------- Footer ---------- */
.site-foot{
  border-top: 1px solid var(--line);
  padding: 36px 0 44px;
  background: var(--bg-deep);
}
.foot-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.foot-inner .foot-brand{
  color: var(--muted);
  font-size: 14.5px;
}
.foot-links{ display: flex; gap: 18px; flex-wrap: wrap; }
.foot-links a{ color: var(--muted); font-size: 14.5px; }
.foot-links a:hover{ color: var(--white); }

/* ---------- Tabellen / Kleinkram ---------- */
.note{
  border-left: 3px solid var(--brand);
  background: var(--bg-card);
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  color: var(--muted);
  font-size: 15.5px;
  margin-top: 28px;
}

/* ---------- Bilder & Split-Layouts ---------- */
.hero-grid{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  margin-top: 34px;
}
.img-frame{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}
.img-frame img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 0.35s ease;
}
a.img-frame{ display: block; }
a.img-frame:hover img{ transform: scale(1.035); }
.avatar-img{
  width: 116px;
  height: 116px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
  border: 2px solid rgba(46,166,216,0.5);
}
.img-frame.wide img{ aspect-ratio: 16 / 9; }
.img-frame::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(82,99,127,0.28), rgba(46,166,216,0.10));
  pointer-events: none;
}
.bg-cta{
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 52px 40px;
}
.bg-cta h2{ margin: 0 0 8px; }
.bg-cta p{ color: var(--text); max-width: 40em; }
.bg-cta .cta-row{ margin-top: 24px; }

@media (max-width: 860px){
  .hero-grid, .split{ grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 720px){
  section{ padding: 52px 0; }
  .hero{ padding: 64px 0 56px; }
  .cta-banner{ padding: 32px 24px; }
  .bg-cta{ padding: 36px 26px; }
}
