:root{
    --bg: #0b0d12;
    --panel: rgba(255,255,255,0.06);
    --panel-strong: rgba(255,255,255,0.10);
    --text: rgba(255,255,255,0.92);
    --muted: rgba(255,255,255,0.68);
    --line: rgba(255,255,255,0.12);
    --shadow: 0 18px 60px rgba(0,0,0,0.45);
    --radius: 18px;
  
    --accent: #a78bfa; /* modern lilac */
    --accent2: #22c55e; /* optional */
  }
  
  *{ box-sizing: border-box; }
  html{ scroll-behavior: smooth; }
  body{
    margin:0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
    background:
      radial-gradient(900px 500px at 15% 5%, rgba(167,139,250,0.18), transparent 60%),
      radial-gradient(900px 500px at 85% 15%, rgba(34,197,94,0.10), transparent 65%),
      var(--bg);
    color: var(--text);
  }
  
  a{ color: inherit; text-decoration: none; }
  a:hover{ opacity: 0.9; }
  
  .container{
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
  }
  
  /* NAV */
  .nav-wrap{
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(11,13,18,0.65);
    border-bottom: 1px solid var(--line);
  }
  .nav{
    display:flex;
    align-items:center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 16px;
  }
  .brand{
    display:flex;
    align-items:center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: 0.2px;
  }
  .brand-dot{
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), rgba(255,255,255,0.55));
    box-shadow: 0 0 0 6px rgba(167,139,250,0.12);
  }
  .nav-links{
    display:flex;
    align-items:center;
    gap: 18px;
    color: var(--muted);
    font-weight: 600;
    font-size: 14px;
  }
  .nav-links a{ padding: 10px 10px; border-radius: 12px; }
  .nav-links a:hover{ background: rgba(255,255,255,0.06); color: var(--text); }
  
  /* BUTTONS */
  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.16);
    background: linear-gradient(135deg, rgba(167,139,250,0.95), rgba(167,139,250,0.55));
    color: #0b0d12;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(167,139,250,0.20);
  }
  .btn:hover{ transform: translateY(-1px); }
  .btn:active{ transform: translateY(0px); }
  .btn-small{ padding: 10px 12px; border-radius: 12px; font-size: 14px; }
  .btn-ghost{
    background: rgba(255,255,255,0.06);
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow: none;
  }
  
  /* HERO */
  .hero{
    padding: 62px 0 32px;
  }
  .hero-grid{
    display:grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 26px;
    align-items: stretch;
  }
  .pill{
    display:inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--muted);
    font-weight: 700;
    font-size: 13px;
  }
  h1{
    margin: 14px 0 10px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.02;
    letter-spacing: -0.9px;
  }
  .accent{
    color: rgba(167,139,250,0.95);
  }
  .lead{
    margin: 0;
    font-size: 16px;
    color: var(--muted);
    line-height: 1.6;
    max-width: 58ch;
  }
  .hero-cta{
    margin-top: 18px;
    display:flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  
  .hero-stats{
    margin-top: 20px;
    display:grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
  .stat{
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    padding: 14px;
  }
  .stat-top{ font-size: 18px; margin-bottom: 8px; }
  .stat-text{ font-weight: 700; color: rgba(255,255,255,0.86); font-size: 14px; }
  
  .hero-card{
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
    box-shadow: var(--shadow);
    overflow:hidden;
  }
  .hero-photo{
    height: 280px;
    background: rgba(255,255,255,0.05);
  }
  .hero-photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display:block;
    filter: contrast(1.02) saturate(1.02);
  }
  .hero-card-body{
    padding: 18px;
  }
  .tag-row{
    display:flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
  }
  .tag{
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    color: var(--muted);
    font-weight: 700;
    font-size: 12px;
  }
  .card-title{
    margin: 8px 0 6px;
    font-size: 18px;
  }
  .card-text{
    margin: 0 0 14px;
    color: var(--muted);
    line-height: 1.6;
  }
  .mini-list{
    display:grid;
    gap: 10px;
  }
  .mini-item{
    display:flex;
    align-items:center;
    gap: 10px;
    color: rgba(255,255,255,0.82);
    font-weight: 650;
    font-size: 14px;
  }
  .dot{
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(167,139,250,0.9);
    box-shadow: 0 0 0 6px rgba(167,139,250,0.10);
  }
  
  /* TRUST STRIP */
  .trust{
    padding: 18px 0 8px;
  }
  .trust-grid{
    display:grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
  .trust-item{
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px;
    background: rgba(255,255,255,0.04);
  }
  .trust-title{ font-weight: 800; margin-bottom: 6px; }
  .trust-text{ color: var(--muted); line-height: 1.5; }
  
  /* SECTIONS */
  .section{
    padding: 64px 0;
  }
  .section-alt{
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255,255,255,0.02);
  }
  .section-head{
    display:flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
    margin-bottom: 18px;
  }
  .section-head h2{
    margin:0;
    font-size: 28px;
    letter-spacing: -0.4px;
  }
  .section-head p{
    margin:0;
    color: var(--muted);
    max-width: 62ch;
    line-height: 1.5;
  }
  
  /* CARDS */
  .cards{
    display:grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }
  .card{
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.04);
    border-radius: 18px;
    padding: 18px;
  }
  .card h3{ margin: 0 0 8px; font-size: 16px; }
  .card p{ margin: 0 0 12px; color: var(--muted); line-height: 1.55; }
  .card ul{
    margin: 0;
    padding-left: 18px;
    color: rgba(255,255,255,0.85);
  }
  .card li{ margin: 6px 0; }
  
  /* STEPS */
  .steps{
    display:grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .step{
    display:flex;
    gap: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    padding: 16px;
  }
  .step-nr{
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight: 900;
    background: rgba(167,139,250,0.16);
    border: 1px solid rgba(167,139,250,0.26);
  }
  .step h3{ margin: 0 0 6px; font-size: 16px; }
  .step p{ margin: 0; color: var(--muted); line-height: 1.55; }
  
  /* QUOTES */
  .quotes{
    display:grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
  .quote{
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    padding: 18px;
  }
  .quote blockquote{
    margin: 0 0 12px;
    font-weight: 750;
    line-height: 1.5;
  }
  .quote figcaption{
    color: var(--muted);
    font-size: 14px;
  }
  
  /* PRICING */
  .pricing{
    display:grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
  .price-card{
    position: relative;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    padding: 18px;
  }
  .price-featured{
    border-color: rgba(167,139,250,0.35);
    background: linear-gradient(180deg, rgba(167,139,250,0.14), rgba(255,255,255,0.03));
    box-shadow: 0 14px 60px rgba(167,139,250,0.12);
  }
  .badge{
    position:absolute;
    top: 14px;
    right: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    color: #0b0d12;
    background: rgba(167,139,250,0.95);
  }
  .price-top h3{ margin: 0 0 8px; }
  .price{
    font-weight: 950;
    font-size: 34px;
    letter-spacing: -0.6px;
  }
  .price span{
    font-size: 14px;
    font-weight: 750;
    color: var(--muted);
    margin-left: 6px;
  }
  .price-top p{
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.55;
  }
  .price-card ul{
    margin: 16px 0 16px;
    padding-left: 18px;
    color: rgba(255,255,255,0.85);
  }
  .price-card li{ margin: 7px 0; }
  
  .note{
    margin-top: 16px;
    border: 1px dashed rgba(255,255,255,0.18);
    border-radius: 16px;
    padding: 14px;
    color: var(--muted);
    line-height: 1.6;
  }
  
  /* CONTACT */
  .contact{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    padding: 18px;
  }
  .contact p{ color: var(--muted); line-height: 1.6; }
  .contact-cards{
    display:grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 16px 0 0;
  }
  .contact-card{
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 12px;
    background: rgba(255,255,255,0.03);
  }
  .contact-title{
    color: var(--muted);
    font-weight: 800;
    font-size: 12px;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  
  .form{
    display:grid;
    gap: 12px;
  }
  label{
    display:grid;
    gap: 8px;
    color: rgba(255,255,255,0.86);
    font-weight: 750;
    font-size: 14px;
  }
  input, select, textarea{
    width: 100%;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(11,13,18,0.55);
    color: var(--text);
    outline: none;
  }
  input:focus, select:focus, textarea:focus{
    border-color: rgba(167,139,250,0.45);
    box-shadow: 0 0 0 6px rgba(167,139,250,0.12);
  }
  textarea{ resize: vertical; min-height: 110px; }
  .tiny{
    color: var(--muted);
    font-size: 13px;
  }
  
  /* FOOTER */
  .footer{
    padding: 26px 0 36px;
    border-top: 1px solid var(--line);
  }
  .footer-grid{
    display:grid;
    grid-template-columns: 1fr auto auto;
    gap: 16px;
    align-items: center;
  }
  .footer-links{
    display:flex;
    gap: 12px;
    color: var(--muted);
    font-weight: 700;
    font-size: 14px;
  }
  .footer-brand{ margin-bottom: 8px; }
  
  /* RESPONSIVE */
  @media (max-width: 980px){
    .hero-grid{ grid-template-columns: 1fr; }
    .cards{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .pricing{ grid-template-columns: 1fr; }
    .quotes{ grid-template-columns: 1fr; }
    .trust-grid{ grid-template-columns: 1fr; }
    .contact{ grid-template-columns: 1fr; }
    .footer-grid{ grid-template-columns: 1fr; }
    .nav-links{ display:none; } /* simpel: mobile nav weglassen */
  }
  
  @media (max-width: 520px){
    .hero-stats{ grid-template-columns: 1fr; }
  }
  
  @media (max-width: 520px){

    .contact-cards{
      grid-template-columns: 1fr; /* untereinander statt nebeneinander */
    }
  
    .contact-card{
      padding: 10px;
    }
  
    .contact-card a{
      font-size: 14px;
      word-break: break-word; /* damit Mail umbrechen kann */
    }
  
    .contact-title{
      font-size: 11px;
    }
    .contact-buttons{
      display:flex;
      flex-direction:column;
      gap:10px;
    }
  
  }
  
