:root{
  --bg: #050a12ea;
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --muted2: rgba(255,255,255,.60);

  --card: rgba(255,255,255,.06);
  --border: rgba(255,255,255,.10);

  --primary: #2a6bff;
  --primary2: #4fd3ff;

  --shadow: 0 20px 60px rgba(0,0,0,.35);
  --radius: 18px;

  --container: 1120px;
}

*{ box-sizing: border-box; }
html,body{ height: 100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color: var(--text);
  background: var(--bg);
}

a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display:block; }

.container{
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.muted{ color: var(--muted); }

.section-title{
  margin: 0 0 10px;
  font-size: 26px;
  letter-spacing: -.02em;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid transparent;

  font-weight: 600;
  line-height: 1;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, opacity .15s ease;
  user-select: none;
  white-space: nowrap;
}

.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0px); opacity: .95; }

.btn--lg{
  padding: 14px 20px;
  border-radius: 14px;
}

.btn--primary{
  background: linear-gradient(135deg, var(--primary), #1f57ff);
  color: white;
  box-shadow: 0 10px 24px rgba(42, 107, 255, .28);
}

.btn--ghost{
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
}

.btn__icon{
  font-size: 18px;
  line-height: 0;
}

.badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 8px 12px;
  border-radius: 999px;

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,.85);
  margin-bottom: 30px;
}

.badge__dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary2);
  box-shadow: 0 0 0 4px rgba(79, 211, 255, .12);
}

.site-header{
  position: relative;
  z-index: 10;
  padding: 18px 0;
}

.site-header__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: .02em;
}

.brand__icon{
  display:grid;
  place-items:center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  color: white;
}

.brand__text{
  font-size: 16px;
  opacity: .95;
}

/* Nav (shared) */
.nav{
  display:flex;
  align-items:center;
  gap: 14px;
}

.nav__list{
  display:flex;
  align-items:center;
  gap: 22px;
  list-style:none;
  margin:0;
  padding:0;
}

.nav__link{
  font-size: 14px;
  color: rgba(255,255,255,.80);
  transition: color .15s ease;
}

.nav__link:hover{ color: rgba(255,255,255,.95); }
.nav__link.is-active{ color: rgba(255,255,255,.98); }

.nav__cta{
  margin-left: 6px;
  border-radius: 999px;
  padding-inline: 18px;
}

/* Mobile nav toggle (shared) */
.nav__toggle{
  display:none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  color: white;
  cursor:pointer;
}

.nav__toggle-lines{
  display:block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
  margin: 0 auto;
}
.nav__toggle-lines::before,
.nav__toggle-lines::after{
  content:"";
  position:absolute;
  left:0;
  width: 18px;
  height: 2px;
  background: currentColor;
}
.nav__toggle-lines::before{ top: -6px; }
.nav__toggle-lines::after{ top: 6px; }

.page{
  min-height: 100vh;
  position: relative;
  overflow: clip;
}

.page-home__bg{
  position:absolute;
  inset:0;
  z-index: 0;
}

.page-home__bg-image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.05);
}

.page-home__bg-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 480px at 50% 30%, rgba(79, 211, 255, .22), transparent 60%),
    linear-gradient(90deg, rgba(7, 14, 26, .78) 0%, rgba(7, 14, 26, .50) 55%, rgba(7, 14, 26, .30) 100%),
    linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.55) 65%, rgba(0,0,0,.78) 100%);
}

.page-home__main{
  position: relative;
  z-index: 1;
}

.page-home__hero{
  padding: 54px 0 38px;
}

.page-home__hero-content{
  max-width: 640px;
  padding-top: 28px;
  transform: translateY(-42px);
}

.page-home__title{
  margin: 18px 0 14px;
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -.03em;
  font-weight: 800;
}

.page-home__title-accent{
  color: var(--primary2);
}

.page-home__subtitle{
  margin: 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.page-home__actions{
  display:flex;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.page-home__features{
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.10);

  display:flex;
  align-items:center;
  gap: 28px;
  flex-wrap: wrap;
}

.feature{
  display:flex;
  align-items:center;
  gap: 10px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
}

.feature__icon{
  width: 28px;
  height: 28px;
  display:grid;
  place-items:center;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
}

.page-home__section{
  padding: 42px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}

.help-fab{
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;

  width: 42px;
  height: 42px;
  border-radius: 999px;

  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,.92);

  display:grid;
  place-items:center;
  cursor:pointer;
  box-shadow: var(--shadow);
}

@media (max-width: 900px){
  .nav__toggle{ display:inline-flex; align-items:center; justify-content:center; }
  .nav__list{
    position:absolute;
    top: 72px;
    right: 24px;
    left: 24px;

    display:none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;

    padding: 16px;
    border-radius: 16px;

    background: rgba(10, 16, 28, .78);
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(12px);
  }

  .nav.is-open .nav__list{ display:flex; }

  .nav__cta{
    display:none; 
  }

  .page-home__hero{
    padding-top: 34px;
  }

  .page-home__hero-content{
    padding-top: 14px;
  }
}

@media (max-width: 520px){
  .container{ width: min(var(--container), calc(100% - 32px)); }
  .page-home__actions{ gap: 10px; }
  .btn--lg{ width: 100%; }
}
.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-weight: 900;
  letter-spacing: .4px;
  font-size: x-large;
}

.brand-sub {
  color: var(--muted);
  font-size: 13.18px;
}

.page-home__hero{
  min-height: 100vh;              
  display: flex;
  align-items: center;            
  padding: 0;                    
}

.page-home__hero .container{
  width: min(var(--container), calc(100% - 48px));
  padding: 48px 0;                
}

.page-home__hero-content{
  padding-top: 0;               
}
.page-home__hero{
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.page-home__bg{
  position:absolute;
  inset:0;
  z-index: 0;
}


.page-home__bg-image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.05);
}

.page-home__bg-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 480px at 50% 30%, rgba(79, 211, 255, .22), transparent 60%),
    linear-gradient(90deg, rgba(7, 14, 26, .78) 0%, rgba(7, 14, 26, .50) 55%, rgba(7, 14, 26, .30) 100%),
    linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.55) 65%, rgba(0,0,0,.78) 100%);
}

.page-home__hero .container{
  position: relative;
  z-index: 1;
  padding: 48px 0;
}

.page-home__hero-content{
  padding-top: 0;
}

.page-home__hero-bg{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;         
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.page-home__bg-image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.05);
}

.page-home__bg-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 480px at 50% 30%, rgba(79, 211, 255, .22), transparent 60%),
    linear-gradient(90deg, rgba(7, 14, 26, .78) 0%, rgba(7, 14, 26, .50) 55%, rgba(7, 14, 26, .30) 100%),
    linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.55) 65%, rgba(0,0,0,.78) 100%);
}

.site-header,
.page-home__main{
  position: relative;
  z-index: 1;
}

.page-home__hero{
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
}

.page-home__hero .container{
  padding: 48px 0;
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 50;

  background: transparent !important;
  backdrop-filter: none !important;
  border-bottom: none;
  box-shadow: none;

  transition: background .25s ease, backdrop-filter .25s ease, box-shadow .25s ease, border-color .25s ease;
}

/* beim Scroll: leicht weiß/glasig */
.site-header.is-scrolled{
  background: rgba(255,255,255,0.08) !important;
  backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 8px 30px rgba(0,0,0,.18);
}
.badge__dot{
  position: relative;
  animation: badge-pulse 2.6s ease-in-out infinite;
}

/* weicher Glow-Ring */
.badge__dot::after{
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(79, 211, 255, 0.35) 0%,
    rgba(79, 211, 255, 0.15) 40%,
    transparent 70%
  );
  animation: badge-pulse-ring 2.6s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.1); }
  100% { transform: scale(1); }
}

@keyframes badge-pulse-ring {
  0%   { opacity: 0.6; }
  50%  { opacity: 1; }
  100% { opacity: 0.6; }
}
.page-home__hero .container{
  padding: 72px 0;         
}

.page-home__hero-content{
  max-width: 760px;           
}

.page-home__title{
  font-size: clamp(54px, 7vw, 78px); 
}

.page-home__subtitle{
  font-size: 18px;             
  max-width: 620px;
}

.page-home__actions{
  margin-top: 30px;            
}

.page-home__features{
  margin-top: 40px;          
  gap: 32px;                   
}

.feature{
  font-size: 15px;            
}

.feature__icon{
  width: 32px;                 
  height: 32px;
  border-radius: 12px;
}
.page-home__features{
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.10);

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.feature{
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 14px 16px;
  border-radius: 14px;

  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);

  font-size: 15px;
  color: rgba(255,255,255,.85);
}

.feature__icon{
  width: 35px;
  height: 3px;
  border-radius: 12px;
}

.feature__icon{
  width: 34px;
  height: 34px;
  flex: 0 0 34px;                
  display: grid;
  place-items: center;

  border-radius: 10px;           
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,.90);
}

.feature__icon svg{
  width: 18px;
  height: 18px;
  display: block;
}

.feature{
  align-items: center;
}

.feature__text{
  line-height: 1.2;
}.feature{
  background: transparent;       
  border: none;
  padding: 0;
}
.core-values{
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 72px 0;
}

.core-values__kicker{
  margin: 0 0 10px;
  text-align: center;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .14em;
  color: #4da3ff;
}

.core-values__title{
  margin: 0;
  text-align: center;
  font-size: clamp(30px, 3.2vw, 44px);
  letter-spacing: -.02em;
  line-height: 1.15;
}

.core-values__lead{
  margin: 14px auto 0;
  text-align: center;
  max-width: 760px;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}

.core-values__grid{
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.value-card{
  background: rgba(255,255,255,.96);
  color: rgba(10,16,28,.92);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(0,0,0,.20);
  padding: 26px 26px 22px;
  border: 1px solid rgba(0,0,0,.06);
}

.value-card__icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(77,163,255,.14);
  color: #1f6bff;
  margin-bottom: 18px;
}

.value-card__icon--violet{
  background: rgba(140, 120, 255, .14);
  color: #6a5cff;
}

.value-card__icon--mint{
  background: rgba(79, 211, 255, .16);
  color: #00aeea;
}

.value-card__title{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.01em;
}

.value-card__text{
  margin: 0 0 18px;
  color: rgba(10,16,28,.70);
  line-height: 1.7;
  font-size: 14.5px;
}

.value-card__list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.value-card__list li{
  position: relative;
  padding-left: 28px;
  color: rgba(10,16,28,.82);
  font-size: 14px;
}

.value-card__list li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 12px;
  line-height: 1;
  color: #1f6bff;
  background: rgba(31,107,255,.12);
}

/* Responsive */
@media (max-width: 980px){
  .core-values__grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .value-card{
    padding: 22px;
  }
}
.services{
  padding: 78px 0;
}

.services__head{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 34px;
}

.services__kicker{
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .14em;
  color: #4da3ff;
}

.services__title{
  margin: 0;
  font-size: clamp(34px, 3.4vw, 52px);
  letter-spacing: -.02em;
  line-height: 1.12;
}

.services__all{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  font-weight: 700;
  color: #4da3ff;
  margin-top: 18px;
  white-space: nowrap;
}
.services__all:hover{ opacity: .9; }
.services__arrow{ font-size: 20px; line-height: 1; }

.services__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: stretch;
}

.service-card{
  position: relative;
  border-radius: 22px;
  padding: 28px;
  overflow: hidden;
  min-height: 360px;
}

.service-card__icon{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  margin-bottom: 18px;
}

/* Title/Text */
.service-card__title{
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 850;
  letter-spacing: -.01em;
}
.service-card__text{
  margin: 0 0 18px;
  line-height: 1.75;
  font-size: 15px;
}

/* Bullet List */
.service-card__list{
  margin: 0;
  padding-left: 18px;
  display:grid;
  gap: 10px;
}
.service-card__list li{
  line-height: 1.5;
}

.service-card__link{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  font-weight: 800;
  margin-top: 18px;
}

.service-card--dark{
  background: white;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  color: black;
}

.service-card--dark .service-card__text{
  color: black;
}
.service-card--dark .service-card__list{
  color: black;
}
.service-card--dark .service-card__icon{
  background: rgba(42,107,255,.20);
  color: black;
}
.service-card--dark .service-card__link{
  color: #2a6bff;
}

.service-card__watermark{
  position:absolute;
  right: -40px;
  top: -30px;
  width: 240px;
  height: 240px;
  opacity: .22;
  background:
    radial-gradient(circle at 40% 40%, rgba(22, 22, 22, 0.324) 0 18%, transparent 19% 100%),
    radial-gradient(circle at 70% 55%, rgba(22, 25, 25, 0.365) 0 16%, transparent 16% 100%),
    radial-gradient(circle at 52% 72%, rgba(25, 25, 22, 0.313) 0 13%, transparent 14% 100%);
  filter: blur(0px);
}

.service-card--light{
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
  color: rgba(10,16,28,.92);
}

.service-card--light .service-card__text{
  color: rgba(10,16,28,.70);
}
.service-card--light .service-card__icon{
  background: rgba(77,163,255,.14);
  color: #1f6bff;
}
.service-card--light .service-card__link{
  color: #1f6bff;
}

.service-card__ghost{
  position:absolute;
  right: 18px;
  top: 18px;
  width: 180px;
  height: 180px;
  opacity: .08;
  background:
    radial-gradient(circle at 50% 50%, rgba(10,16,28,.8) 0 18%, transparent 19% 100%),
    radial-gradient(circle at 50% 50%, transparent 0 55%, rgba(10,16,28,.8) 56% 58%, transparent 59% 100%);
  filter: blur(.2px);
}

.services__span2{
  grid-column: 1 / -1;
  min-height: auto;
}

@media (max-width: 980px){
  .services__head{
    flex-direction: column;
    align-items: flex-start;
  }
  .services__all{ margin-top: 0; }

  .services__grid{
    grid-template-columns: 1fr;
  }
  .service-card{
    min-height: auto;
  }
}

.field.is-invalid input,
.field.is-invalid textarea {
  border-color: rgba(220, 38, 38, .55);        
  box-shadow: 0 0 0 4px rgba(220, 38, 38, .12);
}

.field.is-invalid input:focus,
.field.is-invalid textarea:focus {
  border-color: rgba(220, 38, 38, .75);
  box-shadow: 0 0 0 5px rgba(220, 38, 38, .14);
}

.field.is-valid input,
.field.is-valid textarea {
  border-color: rgba(16, 185, 129, .55);      
  box-shadow: 0 0 0 4px rgba(16, 185, 129, .10);
}
.contact-card__title {
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: -0.2px;
}

.contact-form {
  margin-top: 12px;
  display: grid;
  gap: 12px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

.field span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: .2px;
  text-transform: uppercase;
}

.panel {
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, .10);
  background: rgba(2, 6, 23, .02);
  padding: 16px;
}

.panel h3 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 820;
  letter-spacing: -0.2px;
}

.panel .list {
  margin: 0;
  padding-left: 18px;
}

.panel .list li {
  margin: 10px 0;
  color: var(--text);
  font-weight: 500;
}

.panel .list li strong {
  font-weight: 820;
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .92);
  font: inherit;
  outline: none;
  transition: border-color .12s ease, box-shadow .12s ease;
}

.kv {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.kv>div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, .10);
  background: rgba(255, 255, 255, .72);
  font-weight: 700;
}

.kv span {
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
}

.kv a {
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 900;
}

.kv a:hover {
  text-decoration: underline;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(37, 99, 235, .35);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .10);
}

.contact-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 4px;
}

.contact-status {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.hp {
  position: absolute;
  left: -9999px;
  top: -9999px;
}

.contact-card {
  margin: 26px auto 40px;
  padding: 0;
  border: none;
  background: transparent;
}

.contact-wrap .legal-card__title {
  font-size: 24px;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
  color: black;
}

.contact-form {
  margin-top: 18px;
  display: grid;
  gap: 16px;
  color: black;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-span-2 {
  grid-column: 1 / -1;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: black;
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, .10);
  background: #fff;
  font: inherit;
  outline: none;
  box-shadow: 0 1px 0 rgba(2, 6, 23, .02);
  transition: border-color .12s ease, box-shadow .12s ease;
}

.field textarea {
  min-height: 300px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(37, 99, 235, .35);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .12);
}

.captcha-row {
  display: grid;
  grid-template-columns: 320px 1fr auto;
  gap: 14px;
  align-items: end;
}

.captcha-image {
  height: 72px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, .10);
  background: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.captcha-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.captcha-input input {
  height: 52px;
}

.captcha-reload {
  height: 52px;
  padding: 0 16px;
  white-space: nowrap;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 6px;
}

#contactStatus {
  margin: 0;
  color: black;
  font-weight: 700;
}
.btn-primary {
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  color: rgb(238, 238, 238);
  border-color: rgba(255, 255, 255, .18);
  box-shadow: 0 10px 24px rgba(37, 99, 235, .22);
  background-color: #1f57ff;
}.btn-primary:hover {
  filter: brightness(1.03);
}

.btn-ghost {
  background: #1f57ff;
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  background: #3462ec;
}
.legal-card--pro{
  padding: 0;
  overflow: hidden;
}

.legal-card__head{
  padding: 20px 22px 14px;
  border-bottom: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.65);
}

.legal-card__title{
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.2px;
}

.legal-card__subtitle{
  margin: 6px 0 0;
  font-size: 14px;
}

.legal-content{
  padding: 18px 22px 22px;
  max-width: 85ch;
  margin: 0 auto;
}

.legal-content p{
  margin: 0 0 12px;
}

.legal-content h3{
  margin: 18px 0 10px;
  font-size: 18px;
  letter-spacing: -0.2px;
}

.legal-content h4{
  margin: 14px 0 8px;
  font-size: 15px;
  color: var(--text);
}

.legal-content ul{
  margin: 8px 0 14px;
  padding-left: 20px;
}

.legal-content li{
  margin: 6px 0;
  color: var(--text);
}

.legal-content a{
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}
.legal-content a:hover{
  text-decoration: underline;
}

.legal-toc{
  margin: 14px 0 16px;
  padding: 14px;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 16px;
  background: rgba(2,6,23,.015);
}

.legal-toc__title{
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 900;
  letter-spacing: .2px;
  text-transform: uppercase;
}

.legal-info{
  margin: 10px 0 14px;
  padding: 14px;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 16px;
  background: rgba(255,255,255,.75);
}

.legal-sep{
  border: 0;
  height: 1px;
  background: rgba(15,23,42,.10);
  margin: 18px 0 12px;
}

.legal-source{
  font-size: 13px;
  margin: 0;
  text-align: center;
}
#anfrage.page-home__section{
  padding: 72px 0;
}

.page-head--center{
  text-align: left;            
  margin: 0 0 18px;
}
.page-title{
  margin: 0 0 6px;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.page-head--center .muted{
  margin: 0;
  color: rgba(255,255,255,.70);
}

#anfrage .legal-card{
  background: rgba(255,255,255,.96);
  color: rgba(10,16,28,.92);
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
  padding: 26px;
  overflow: auto;
}

#anfrage .oCardH{
  height: auto !important;
}

#anfrage .legal-card__title{
  margin: 0 0 18px;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(10,16,28,.95);
}

#anfrage .legal-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 10px;
}

#anfrage .legal-block{
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 18px;
  padding: 18px 18px 16px;
}

#anfrage .legal-block h3{
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(10,16,28,.60);
}

#anfrage .legal-block p{
  margin: 0 0 12px;
  color: rgba(10,16,28,.90);
  font-weight: 650;
  line-height: 1.6;
}
#anfrage .legal-block p:last-child{
  margin-bottom: 0;
}

#anfrage .legal-actions{
  margin-top: 18px;
  display: grid;
  gap: 12px;
}
#anfrage .btn-block{
  width: 100%;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 999px;           
  font-weight: 800;
}

#anfrage .btn-ghost.btn-block{
  background: rgba(255,255,255,.92);
  color: rgba(10,16,28,.92);
  border: 1px solid rgba(15,23,42,.12);
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

#anfrage .btn-primary.btn-block{
  background: linear-gradient(180deg, #2a6bff, #1f57ff);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 14px 30px rgba(42,107,255,.22);
}

#anfrage .btn-ghost.btn-block:hover{
  background: rgba(255,255,255,1);
}
#anfrage .btn-primary.btn-block:hover{
  filter: brightness(1.03);
}

@media (max-width: 900px){
  #anfrage .legal-grid{
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-span-2 {
    grid-column: auto;
  }
  .captcha-row {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .captcha-reload {
    width: 100%;
  }
  .about-slab {
    padding: 18px;
  }

  .about-slab__inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-slab__right {
    padding-top: 0;
  }

  .contact-wrap.legal-card {
    padding: 18px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .captcha-row {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .captcha-reload {
    width: 100%;
  }

  .field textarea {
    min-height: 260px;
  }

  .about-hero {
    grid-template-columns: 1fr;
  }

  .about-hero__card.hero-card {
    margin-top: 12px;
    max-width: 100%;
    justify-self: stretch;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-split {
    grid-template-columns: 1fr;
  }
}
.footer{
  background: rgba(5, 10, 18, .96);          
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 22px 0;
  color: rgba(255,255,255,.92);
}

.footer-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand{
  font-weight: 900;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,.98);
}

.footer-sub{
  margin-top: 4px;
  font-size: 13px;
  color: rgba(255,255,255,.70);
}

.footer-links{
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 700;
  color: rgba(255,255,255,.78);
}

.footer-links a{
  color: inherit;
  text-decoration: none;
  transition: opacity .15s ease;
}

.footer-links a:hover{
  opacity: .92;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-right{
  color: rgba(255,255,255,.70);
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 900px){
  .footer-inner{
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .footer-links{
    flex-wrap: wrap;
    gap: 14px 18px;
  }
  .footer-right{
    white-space: normal;
  }
}.legal-page{
  padding: 72px 0;
}

.page-head--left{
  margin: 0 0 18px;
  max-width: 80ch;
}

.page-title{
  margin: 0 0 8px;
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.legal-card-pro{
  min-height: auto;
  padding: 28px;
}

.legal-content{
  max-width: 88ch;
  margin: 0;
}

.legal-content p{
  margin: 0 0 12px;
  line-height: 1.75;
  color: black;
}

.legal-content h3{
  margin: 22px 0 10px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.legal-content h4{
  margin: 16px 0 8px;
  font-size: 15px;
  font-weight: 850;
  color: rgba(10,16,28,.88);
}

.legal-content ul{
  margin: 10px 0 14px;
  padding-left: 20px;
  color: black;
}

.legal-content li{
  margin: 6px 0;
  line-height: 1.65;
  color: black;
}

.legal-toc{
  margin: 16px 0 18px;
  padding: 14px 14px;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 16px;
  background: rgba(2,6,23,.03);
}

.legal-toc__title{
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(10,16,28,.55);
}

.legal-toc a{
  color: #1f6bff;
  font-weight: 800;
}
.alert-failed {
  background: #a10101;
}
.alert {
  position: relative;
  padding: 12px 36px 12px 14px;
  border-radius: 8px;
  color: #fff;
  opacity: 1;
  transition: opacity .5s ease, transform .2s ease;
  transform: translateY(0);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
  pointer-events: auto;
  width: min(880px, 100%);
}
.alert-success {
  background: #0da812;
}
.legal-toc a:hover{
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-info{
  margin: 12px 0 16px;
  padding: 14px;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 16px;
  background: rgba(255,255,255,.78);
}

.legal-sep{
  border: 0;
  height: 1px;
  background: rgba(15,23,42,.12);
  margin: 18px 0 12px;
}

.legal-source{
  margin: 0;
  font-size: 13px;
}

.legal-source a{
  color: #1f6bff;
  font-weight: 900;
}

.legal-actions{
  margin-top: 18px;
}

@media (max-width: 900px){
  .legal-card-pro{
    padding: 18px;
  }
}.brand-name,
.brand-sub,
.nav__link{
  text-shadow:
  0 0 3px rgba(0,0,0,1),
  0 2px 6px rgba(0,0,0,.7);
}
@media (max-width: 600px){
  .page-home__features{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 14px;
    align-items: start;
  }

  .feature{
    min-width: 0;           
    gap: 10px;
  }

  .feature__text{
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;    
    line-height: 1.25;
    font-size: 13px;
  }
}

@media (max-width: 360px){
  .page-home__features{
    grid-template-columns: 1fr;
  }
}