:root{
  --bg:#0b1220;
  --bg2:#0f172a;
  --surface:#0f1a2e;
  --paper:#ffffff;
  --paper2:#f7fafc;

  --text:#0f172a;
  --muted:#64748b;

  --brand:#ff8a00;
  --brand2:#ffb347;

  --shadow: 0 10px 30px rgba(2,6,23,.10);
  --shadow2: 0 18px 70px rgba(2,6,23,.18);

  --radius: 18px;
  --radius-sm: 12px;
  --max: 1160px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color:#1f2937;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 40%, #f7fafc 100%);
  line-height:1.6;
}
a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.small{font-size:.95rem}
.muted{color:var(--muted)}
.hr{height:1px; background:rgba(15,23,42,.08); border:0; margin:40px 0}

/* Language visibility */
.lang-de .en-text{display:none !important}
.lang-en .de-text{display:none !important}
.de-text,.en-text{display:inline}

/* Header */
header{
  position:sticky; top:0; z-index:1000;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,.82);
  border-bottom: 1px solid rgba(15,23,42,.08);
}
.header-bar{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px;
  padding: 14px 0;
}
.brand{
  display:flex; align-items:center; gap:12px;
  min-width: 230px;
}
.brand img{height:54px; width:auto}
.brand .name{
  font-weight:900; line-height:1.05;
  letter-spacing:.2px;
}
.brand .name span{color:var(--brand)}
.nav{
  display:flex; gap:18px; flex-wrap:wrap; justify-content:center;
}
.nav a{
  font-weight:800;
  font-size:.95rem;
  padding:10px 12px;
  border-radius:999px;
  color:var(--text);
  transition: background .2s ease, transform .2s ease, color .2s ease;
}
.nav a:hover{background:rgba(15,23,42,.06); transform: translateY(-1px)}
.nav a.active{background:rgba(255,138,0,.12); color:var(--brand)}
.actions{display:flex; gap:10px; align-items:center}
.lang-toggle{
  border: 1px solid rgba(15,23,42,.18);
  border-radius:999px;
  background:#fff;
  padding:10px 14px;
  font-weight:900;
  cursor:pointer;
  transition: transform .2s ease, background .2s ease;
}
.lang-toggle:hover{transform: translateY(-1px); background: rgba(15,23,42,.04)}
@media (max-width:900px){
  .header-bar{flex-direction:column}
  .brand{justify-content:center}
}

/* Floating actions */
.floating{
  position:fixed; right:18px; bottom:18px; z-index:9999;
  display:flex; flex-direction:column; gap:12px;
}
.floating a{
  width:56px; height:56px; border-radius:999px;
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:22px;
  box-shadow: 0 14px 40px rgba(2,6,23,.30);
  transition: transform .2s ease, filter .2s ease;
}
.floating a:hover{transform: translateY(-2px) scale(1.04); filter: brightness(1.05)}
.floating .phone{background:#25d366}
.floating .mail{background: linear-gradient(135deg, var(--brand), var(--brand2))}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 14px 22px;
  border-radius:999px;
  font-weight:950;
  letter-spacing:.2px;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  user-select:none;
}
.btn:hover{transform: translateY(-2px)}
.btn-primary{
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color:#0b1220;
  box-shadow: 0 18px 45px rgba(255,138,0,.22);
}
.btn-primary:hover{box-shadow: 0 22px 60px rgba(255,138,0,.30)}
.btn-ghost{
  background: rgba(15,23,42,.04);
  border-color: rgba(15,23,42,.08);
  color: var(--text);
}
.btn-ghost:hover{background: rgba(15,23,42,.06)}

/* Hero */
.hero{
  position:relative;
  padding: 92px 0 70px;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(900px 520px at 15% 5%, rgba(255,138,0,.12), transparent 60%),
    radial-gradient(950px 520px at 95% 8%, rgba(15,23,42,.12), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,1), rgba(247,250,252,.9));
  pointer-events:none;
}
.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 34px;
  align-items:center;
}
.hero h1{
  margin:0 0 14px;
  font-size:3.1rem;
  line-height:1.05;
  letter-spacing:-.4px;
  color:var(--text);
}
.hero p{
  margin:0 0 22px;
  font-size:1.1rem;
  color: rgba(15,23,42,.78);
  max-width: 56ch;
}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  font-weight:950; color: var(--brand);
  letter-spacing:.2px;
  margin-bottom: 14px;
}
.kicker .dot{
  width:10px; height:10px; border-radius:999px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
}
.hero-card{
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow2);
  border: 1px solid rgba(15,23,42,.08);
  background:#fff;
}
.hero-card .imgwrap{
  position:relative;
  height: 330px;
  background:
    linear-gradient(180deg, rgba(11,18,32,.55), rgba(11,18,32,.12)),
    url("team.jpg");
  background-size: cover;
  background-position: center;
}
.hero-card .imgwrap::after{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(520px 220px at 60% 105%, rgba(255,138,0,.18), transparent 60%);
  pointer-events:none;
}
.hero-card .meta{
  padding: 18px 18px;
  display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap;
  align-items:center;
}
.pill{
  display:inline-flex; gap:8px; align-items:center;
  padding: 9px 12px;
  border-radius:999px;
  background: rgba(15,23,42,.04);
  border: 1px solid rgba(15,23,42,.06);
  font-weight:850;
  color: rgba(15,23,42,.80);
  font-size:.92rem;
}
@media (max-width:900px){
  .hero-grid{grid-template-columns:1fr}
  .hero h1{font-size:2.4rem}
  .hero-card .imgwrap{height:280px}
}

/* Sections */
.section{padding: 72px 0}
.section.alt{background: var(--paper2)}
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between; gap:18px; flex-wrap:wrap;
  margin-bottom: 26px;
}
.section-title{
  margin:0;
  font-size:2.2rem;
  color:var(--text);
  letter-spacing:-.2px;
}
.section-sub{
  margin:0;
  color: var(--muted);
  font-weight:700;
  max-width: 70ch;
}


.grid{display:grid; gap:18px}
.grid.cols-4{grid-template-columns: repeat(4, 1fr)}
.grid.cols-3{grid-template-columns: repeat(3, 1fr)}
@media (max-width:1000px){.grid.cols-4{grid-template-columns: repeat(2, 1fr)}}
@media (max-width:640px){.grid.cols-4,.grid.cols-3{grid-template-columns: 1fr}}

.card{
  background:#fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease, color .22s ease;
}
.card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow2);
  border-color: rgba(255,138,0,.24);
}
.card .icon{
  width:52px; height:52px;
  border-radius: 16px;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, rgba(255,138,0,.14), rgba(15,23,42,.06));
  color: var(--brand);
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.card h3{
  margin:0 0 8px;
  font-size:1.15rem;
  color: var(--text);
  letter-spacing:-.1px;
}
.card p{margin:0; color: rgba(15,23,42,.72)}
.card:hover.is-orange{
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color:#fff;
  border-color: transparent;
  box-shadow: 0 26px 70px rgba(255,138,0,.22);
}
.card:hover.is-orange h3,
.card:hover.is-orange p{color:#fff}
.card:hover.is-orange .icon{
  background: rgba(255,255,255,.18);
  color:#fff;
}


.steps{display:grid; grid-template-columns: repeat(3, 1fr); gap:18px}
@media (max-width:900px){.steps{grid-template-columns:1fr}}
.step{
  padding: 22px;
  border-radius: var(--radius);
  border:1px solid rgba(15,23,42,.08);
  background:#fff;
  box-shadow: var(--shadow);
}
.step .n{
  width:36px; height:36px; border-radius:999px;
  display:flex; align-items:center; justify-content:center;
  font-weight:950;
  background: rgba(255,138,0,.12);
  color: var(--brand);
  margin-bottom: 12px;
}
.step h4{margin:0 0 6px; color:var(--text); font-size:1.05rem}
.step p{margin:0; color: rgba(15,23,42,.72)}


.split{
  display:grid; grid-template-columns: 1.05fr .95fr; gap:34px;
  align-items:start;
}
@media (max-width:900px){.split{grid-template-columns:1fr}}
.figure{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(15,23,42,.08);
  box-shadow: var(--shadow2);
  background:#fff;
}
.figure img{width:100%; height:auto}
.figure .cap{
  padding: 14px 16px;
  color: rgba(15,23,42,.70);
  font-weight:800;
}


.quotes{display:grid; grid-template-columns: repeat(2, 1fr); gap:18px}
@media (max-width:900px){.quotes{grid-template-columns:1fr}}
.quote{
  border-radius: var(--radius);
  border:1px solid rgba(15,23,42,.08);
  background:#fff;
  box-shadow: var(--shadow);
  padding: 18px 18px;
}
.quote .stars{color: var(--brand); font-weight:950}
.quote p{margin:10px 0 0; color: rgba(15,23,42,.78); font-weight:750}
.google-box{
  margin-top: 18px;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(15,23,42,.08);
  box-shadow: var(--shadow2);
}
.google-box iframe{width:100%; height:360px; border:0; display:block}


label{display:block; margin:0 0 6px; font-weight:900; color: var(--text)}
input, textarea, select{
  width:100%;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.14);
  outline:none;
  font: inherit;
  background:#fff;
  transition: border-color .18s ease, box-shadow .18s ease;
}
input:focus, textarea:focus, select:focus{
  border-color: rgba(255,138,0,.55);
  box-shadow: 0 0 0 4px rgba(255,138,0,.14);
}
.form-grid{display:grid; grid-template-columns:1fr 1fr; gap:14px}
@media (max-width:900px){.form-grid{grid-template-columns:1fr}}
.panel{
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding: 22px;
}


.table{
  width:100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(15,23,42,.08);
  box-shadow: var(--shadow);
  background:#fff;
}
.table th{
  text-align:left;
  padding: 16px;
  background: linear-gradient(135deg, var(--bg2), var(--bg));
  color:#fff;
  font-weight:950;
}
.table td{
  padding: 16px;
  border-bottom: 1px solid rgba(15,23,42,.06);
  color: rgba(15,23,42,.78);
  font-weight:700;
}
.table tbody tr:hover td{background: rgba(255,138,0,.06)}
.result{
  margin-top: 14px;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255,138,0,.08);
  border:1px solid rgba(255,138,0,.18);
  display:none;
}
.result .price{
  display:block;
  font-size:2.1rem;
  font-weight: 1000;
  color: var(--text);
}


footer{
  background: #070b14;
  color: #94a3b8;
  padding: 48px 0;
  margin-top: 40px;
}
.footer-grid{
  display:flex; justify-content:space-between; gap:18px; flex-wrap:wrap;
  align-items:flex-start;
}
footer a{color:#cbd5e1}
footer .title{color:#e2e8f0; font-weight:950; margin:0 0 10px}
footer p{margin:0; font-weight:700}
footer .copy{margin-top:18px; color:#64748b; font-weight:800}


.reveal{opacity:0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease}
.reveal.is-visible{opacity:1; transform: translateY(0)}
.delay-1{transition-delay:.08s}
.delay-2{transition-delay:.16s}
.delay-3{transition-delay:.24s}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .reveal{opacity:1; transform:none; transition:none}
  .btn,.card,.floating a,.nav a{transition:none}
}



.result-head{
  font-weight: 950;
  color: var(--text);
  margin-bottom: 10px;
}
.result-breakdown .row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(15,23,42,.10);
  font-weight: 800;
  color: var(--text);
}
.result-breakdown .row strong{
  font-weight: 950;
}
.result-breakdown .row.total{
  border-bottom: 0;
  padding-top: 12px;
}
.result-breakdown .row.total .price{
  font-size: 2.2rem;
  line-height: 1.05;
}
.news-ticker{
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #0b1220;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  z-index: 1100;
}

.news-track{
  display: flex;
  width: max-content;
  animation: tickerMove 26s linear infinite;
}

.news-track span{
  white-space: nowrap;
  padding: 10px 48px;
  display: inline-flex;
  align-items: center;
}


.news-ticker::after{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:3px;
  background: linear-gradient(
    90deg,
    #ff8a00,
    #ffb347,
    #ff8a00
  );
}


@keyframes tickerMove{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}


@media (prefers-reduced-motion: reduce){
  .news-track{ animation: none; }
}

