/* =========================
   Über uns – V2 (CONTENT ONLY)
   Scope: .ueber-uns-v2
   ========================= */

.ueber-uns-v2{
  /* Farben/Design-Tokens */
  --navy-950:#041827;
  --navy-900:#062033;
  --text:#0c1b2a;
  --muted:#5b6a7d;
  --bg:#f3f6fa;
  --card:#ffffff;

  --blue:#1a87ff;
  --blue-2:#0b6cff;
  --green:#18c574;

  --radius:16px;
  --shadow:0 20px 60px rgba(4, 24, 39, .14);
  --shadow-sm:0 12px 30px rgba(4, 24, 39, .10);

  --container:1200px;

  /* Abstand oben im Hero (falls euer Template-Header "über" dem Hero liegt) */
  --hero-top-pad: 120px;

  /* Hero Hintergrund (kannst du im HTML pro Seite überschreiben) */
  --hero-image: url("https://www.eyet.com/images/istock-1164014959.jpg");

  font-family:"Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
}

/* kleine Scoped-Resets */
.ueber-uns-v2 *{ box-sizing:border-box; }
.ueber-uns-v2 img{ max-width:100%; height:auto; display:block; }
.ueber-uns-v2 a{ color:inherit; text-decoration:none; }

.ueber-uns-v2 .v2-container{
  width:min(var(--container), calc(100% - 48px));
  margin-inline:auto;
}

/* -------------------------
   HERO
------------------------- */
.ueber-uns-v2 .v2-hero{
  position:relative;
  overflow:hidden;
  padding-top: var(--hero-top-pad);
  padding-bottom: 90px;

  color:#fff;
  background:
    linear-gradient(90deg, rgba(4, 24, 39, .92) 0%,
                          rgba(4, 24, 39, .88) 48%,
                          rgba(4, 24, 39, .35) 100%),
    var(--hero-image);
  background-size:cover;
  background-position:center right;
}

.ueber-uns-v2 .v2-hero::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.55;
  background:
    radial-gradient(900px 520px at 86% 70%, rgba(26,135,255,.28), transparent 60%),
    radial-gradient(600px 340px at 92% 78%, rgba(24,197,116,.22), transparent 60%),
    radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,.45) 50%, transparent 52%),
    radial-gradient(2px 2px at 30% 65%, rgba(255,255,255,.35) 50%, transparent 52%),
    radial-gradient(2px 2px at 78% 24%, rgba(255,255,255,.30) 50%, transparent 52%),
    radial-gradient(2px 2px at 84% 58%, rgba(255,255,255,.30) 50%, transparent 52%),
    radial-gradient(2px 2px at 92% 82%, rgba(255,255,255,.30) 50%, transparent 52%);
  mix-blend-mode:screen;
}

.ueber-uns-v2 .v2-hero-inner{
  position:relative;
  z-index:2;
}

.ueber-uns-v2 .v2-kicker{
  margin:0 0 12px 0;
  font-family:"Poppins","Open Sans",sans-serif;
  font-weight:500;
  font-size:22px;
  opacity:.92;
}

.ueber-uns-v2 .v2-hero-copy{
  max-width:760px;
  border-left:3px solid var(--blue);
  padding-left:18px;
}

.ueber-uns-v2 .v2-hero-copy h1{
  margin:0 0 12px 0;
  font-family:"Poppins","Open Sans",sans-serif;
  font-weight:700;
  letter-spacing:-.02em;
  font-size:44px;
  line-height:1.15;
}

.ueber-uns-v2 .v2-hero-copy p{
  margin:0;
  max-width:680px;
  font-size:16.5px;
  line-height:1.6;
  color:rgba(255,255,255,.78);
}

/* -------------------------
   FEATURE STRIP (3 Cards)
------------------------- */
.ueber-uns-v2 .v2-feature-strip{
  position:relative;
  z-index:3;
  margin-top:34px;
  transform:translateY(62px);

  background:var(--card);
  border-radius:18px;
  box-shadow:var(--shadow);
  overflow:hidden;
}

.ueber-uns-v2 .v2-features{
  display:flex;
  align-items:stretch;
}

.ueber-uns-v2 .v2-feature{
  flex:1;
  display:flex;
  gap:18px;
  padding:26px 28px;
  border-right:1px solid #e8eef6;
  position:relative;
  background:linear-gradient(180deg, #ffffff, #fbfdff);
  min-height:112px;
}
.ueber-uns-v2 .v2-feature:last-child{ border-right:none; }

.ueber-uns-v2 .v2-feature::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:4px;
  background:transparent;
}
.ueber-uns-v2 .v2-feature--visibility::after{ background:rgba(26,135,255,.35); }
.ueber-uns-v2 .v2-feature--control::after{ background:var(--blue); }
.ueber-uns-v2 .v2-feature--protection::after{ background:var(--green); }

.ueber-uns-v2 .v2-feature-icon{
  width:56px;
  height:56px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:#f3f8ff;
  color:var(--blue);
  flex:0 0 auto;
}
.ueber-uns-v2 .v2-feature--protection .v2-feature-icon{
  background:#effbf5;
  color:var(--green);
}

.ueber-uns-v2 .v2-feature h3{
  margin:0 0 6px 0;
  font-family:"Poppins","Open Sans",sans-serif;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:13px;
  color:#15273a;
}
.ueber-uns-v2 .v2-feature p{
  margin:0;
  color:var(--muted);
  font-size:14.5px;
  line-height:1.45;
}

/* -------------------------
   SO ARBEITEN WIR
------------------------- */
.ueber-uns-v2 .v2-how{
  padding:120px 0 70px;
  background:linear-gradient(180deg, var(--bg) 0%, #ffffff 70%);
}

.ueber-uns-v2 .v2-section-grid{
  display:grid;
  grid-template-columns: 360px 1fr;
  gap:34px;
  align-items:center;
}

.ueber-uns-v2 .v2-title{
  position:relative;
  padding-left:18px;
}
.ueber-uns-v2 .v2-title::before{
  content:"";
  position:absolute;
  left:0;
  top:8px;
  width:3px;
  height:64px;
  border-radius:3px;
  background:var(--blue);
}
.ueber-uns-v2 .v2-title h2{
  margin:0 0 10px 0;
  font-family:"Poppins","Open Sans",sans-serif;
  font-size:34px;
  line-height:1.15;
  letter-spacing:-.02em;
  color:#0f2a44;
}
.ueber-uns-v2 .v2-title p{
  margin:0;
  color:var(--muted);
  font-size:16px;
}

.ueber-uns-v2 .v2-process{
  display:flex;
  align-items:flex-start;
  gap:18px;
}

.ueber-uns-v2 .v2-step{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:12px;
  min-width:160px;
}

.ueber-uns-v2 .v2-bubble{
  width:62px;
  height:62px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:#fff;
  border:1px solid #e3eaf3;
  box-shadow:var(--shadow-sm);
  color:var(--blue);
}
.ueber-uns-v2 .v2-step--green .v2-bubble{ color:var(--green); }

.ueber-uns-v2 .v2-label{
  font-family:"Poppins","Open Sans",sans-serif;
  font-weight:600;
  color:#223247;
  font-size:15px;
  line-height:1.2;
}

.ueber-uns-v2 .v2-conn{
  flex:1;
  height:2px;
  margin-top:30px;
  background:#dbe5ef;
  position:relative;
  border-radius:2px;
}
.ueber-uns-v2 .v2-conn::after{
  content:"";
  position:absolute;
  right:-2px;
  top:50%;
  transform:translateY(-50%);
  width:0; height:0;
  border-left:8px solid #dbe5ef;
  border-top:6px solid transparent;
  border-bottom:6px solid transparent;
}
.ueber-uns-v2 .v2-conn--green{
  background:rgba(24,197,116,.55);
}
.ueber-uns-v2 .v2-conn--green::after{
  border-left-color:rgba(24,197,116,.55);
}

/* -------------------------
   MEILENSTEINE
------------------------- */
.ueber-uns-v2 .v2-milestones{
  padding:70px 0 40px;
  background:#fff;
}

.ueber-uns-v2 .v2-timeline{
  position:relative;
  padding-left:34px;
}

.ueber-uns-v2 .v2-rail{
  position:absolute;
  left:12px;
  top:8px;
  height:120px;
  width:2px;
  background:#cfe2ff;
  border-radius:2px;
}
.ueber-uns-v2 .v2-rail::before,
.ueber-uns-v2 .v2-rail::after{
  content:"";
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  width:10px;
  height:10px;
  border-radius:999px;
  background:var(--blue);
  box-shadow:0 0 0 6px rgba(26,135,255,.10);
}
.ueber-uns-v2 .v2-rail::before{ top:0; }
.ueber-uns-v2 .v2-rail::after{ top:52px; opacity:.75; }

.ueber-uns-v2 .v2-mrow{
  display:flex;
  align-items:stretch;
  gap:18px;
  position:relative;
  z-index:2;
  flex-wrap:nowrap;
}

.ueber-uns-v2 .v2-card{
  width:180px;
  background:#fff;
  border:1px solid #edf2f8;
  border-radius:14px;
  box-shadow:var(--shadow-sm);
  padding:18px 18px 14px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:150px;
}

.ueber-uns-v2 .v2-year{
  font-family:"Poppins","Open Sans",sans-serif;
  font-weight:700;
  font-size:26px;
  margin:0 0 10px 0;
  color:#13263a;
}

.ueber-uns-v2 .v2-mtext{
  margin:0;
  color:#3f5268;
  line-height:1.35;
  font-size:14.5px;
}
.ueber-uns-v2 .v2-mtext strong{ color:#1a2b40; }

.ueber-uns-v2 .v2-icon{
  margin-top:14px;
  color:var(--blue);
  width:28px;
  height:28px;
  opacity:.95;
}

.ueber-uns-v2 .v2-arrow{
  display:flex;
  align-items:center;
  justify-content:center;
  width:26px;
  color:#8fb9ff;
  margin-top:56px;
  flex:0 0 auto;
}

.ueber-uns-v2 .v2-card--start{
  width:220px;
  background:linear-gradient(180deg, #071f33, #041827);
  border:none;
  color:#fff;
  box-shadow:0 26px 70px rgba(4, 24, 39, .22);
}
.ueber-uns-v2 .v2-card--start .v2-year{ color:#fff; }
.ueber-uns-v2 .v2-card--start .v2-mtext{ color:rgba(255,255,255,.82); }
.ueber-uns-v2 .v2-card--start .v2-icon{
  color:#fff;
  width:34px;
  height:34px;
  align-self:flex-end;
}

.ueber-uns-v2 .v2-curve{
  position:absolute;
  left:20px;
  right:0;
  bottom:-34px;
  height:110px;
  width:auto;
  pointer-events:none;
  opacity:.55;
  z-index:1;
}

/* -------------------------
   CTA BANNER
------------------------- */
.ueber-uns-v2 .v2-cta{
  padding:42px 0 70px;
  background:#fff;
}

.ueber-uns-v2 .v2-cta-panel{
  border-radius:18px;
  padding:28px 30px;
  color:#fff;
  background:
    radial-gradient(700px 280px at 80% 55%, rgba(26,135,255,.35), transparent 65%),
    radial-gradient(520px 220px at 86% 75%, rgba(24,197,116,.22), transparent 65%),
    linear-gradient(90deg, #061f33 0%, #041827 100%);
  box-shadow:var(--shadow);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  overflow:hidden;
  position:relative;
}

.ueber-uns-v2 .v2-cta-title{
  margin:0 0 8px 0;
  font-family:"Poppins","Open Sans",sans-serif;
  font-weight:700;
  font-size:22px;
  line-height:1.2;
}
.ueber-uns-v2 .v2-cta-sub{
  margin:0;
  color:rgba(255,255,255,.78);
  font-size:15px;
}

.ueber-uns-v2 .v2-cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 18px;
  border-radius:999px;
  font-family:"Poppins","Open Sans",sans-serif;
  font-weight:600;
  color:#fff;
  background:linear-gradient(90deg, #197dff, #0b6cff);
  box-shadow:0 16px 40px rgba(10, 108, 255, .25);
  white-space:nowrap;
  flex:0 0 auto;
}
.ueber-uns-v2 .v2-cta-btn svg{ width:18px; height:18px; }

/* -------------------------
   Responsive
------------------------- */
@media (max-width: 1080px){
  .ueber-uns-v2 .v2-section-grid{
    grid-template-columns: 1fr;
    gap:22px;
  }
  .ueber-uns-v2 .v2-process{
    flex-wrap:wrap;
    justify-content:center;
  }
  .ueber-uns-v2 .v2-conn{ display:none; }

  .ueber-uns-v2 .v2-mrow{
    flex-wrap:wrap;
    gap:14px;
  }
  .ueber-uns-v2 .v2-arrow{ display:none; }
  .ueber-uns-v2 .v2-timeline{ padding-left:0; }
  .ueber-uns-v2 .v2-rail{ display:none; }
  .ueber-uns-v2 .v2-curve{ display:none; }
}

@media (max-width: 900px){
  .ueber-uns-v2 .v2-features{ flex-direction:column; }
  .ueber-uns-v2 .v2-feature{
    border-right:none;
    border-bottom:1px solid #e8eef6;
  }
  .ueber-uns-v2 .v2-feature:last-child{ border-bottom:none; }

  .ueber-uns-v2 .v2-feature-strip{ transform:translateY(34px); }
  .ueber-uns-v2 .v2-how{ padding-top:92px; }

  .ueber-uns-v2 .v2-hero-copy h1{ font-size:36px; }
}

@media (max-width: 520px){
  .ueber-uns-v2 .v2-hero-copy h1{ font-size:30px; }
  .ueber-uns-v2 .v2-card,
  .ueber-uns-v2 .v2-card--start{ width:100%; }

  .ueber-uns-v2 .v2-cta-panel{
    flex-direction:column;
    align-items:flex-start;
  }
  .ueber-uns-v2 .v2-cta-btn{
    width:100%;
  }
}