/* poppins-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../assets/poppins-v24-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 400;
  src: url('../assets/poppins-v24-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('../assets/poppins-v24-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-700italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 700;
  src: url('../assets/poppins-v24-latin-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root{
  --bg-top: #04070d;
  --bg-bottom: #0a1426;  /* dunkles AI-Blau */
  --accent: #00d1ff;     /* Neon-Cyan */
  --accent-2: #7de3ff;   /* softer cyan */
  --text: #e6f2ff;
  --muted: #a9b7c6;
  --card: rgba(255,255,255,0.03);
  --card-border: rgba(255,255,255,0.08);
  --shadow: 0 10px 30px rgba(0, 209, 255, 0.16);
}

*{box-sizing:border-box}
html,body{
  margin:0; padding:0;

  height: 100%; 
  min-height: 100vh;
	overflow-x: hidden;
  
  font-family:'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: linear-gradient(to bottom, var(--bg-top), var(--bg-bottom));
  color: var(--text);
  line-height:1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}


body.menu-open {
    overflow: hidden;
}

a{ color: var(--accent); text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.header{
  position: sticky;
  top:0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: linear-gradient(to right, rgba(4,7,13,0.85), rgba(10,20,38,0.85));
  border-bottom: 1px solid var(--card-border);
}

.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding: 20px 0;
  position: relative;
}

.logo > a{
  display:flex; align-items:center; gap:16px;
  font-weight:800; letter-spacing:0.5px;
  color: var(--text);
	text-decoration: none;
}

.logo > a img{ height:56px; width:auto; display:block; border-radius:8px; }

.menu a{
  margin-left: 18px; font-weight:600; color: var(--text);
  opacity:0.9;
}
.menu a:hover{ opacity:1; color: var(--accent); }


.mobile-menu,
.menu-toggle {
    display: none;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 14px 20px; border-radius: 12px; border: 1px solid rgba(0,209,255,0.35);
  background: radial-gradient(120% 120% at 50% 120%, rgba(0,209,255,0.25) 0%, rgba(0,0,0,0) 60%) , rgba(255,255,255,0.02);
  color: var(--text); font-weight:700; letter-spacing:0.3px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.btn:hover{ transform: translateY(-2px); filter: brightness(1.05); }
.btn.primary{ background: linear-gradient(180deg, rgba(0,209,255,0.24), rgba(0,0,0,0)); }

.hero{
  padding: 64px 0 32px;
  border-bottom: 1px solid var(--card-border);
  background:
    radial-gradient(1200px 500px at 50% 100%, rgba(0,209,255,0.20), rgba(0,0,0,0) 60%);
}

.hero-grid{
  display:grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items:center;
}
.hero h1{ font-size: clamp(32px, 6vw, 56px); margin: 0 0 10px; line-height:1.1; }
.hero p.lead{ font-size: clamp(16px, 2.2vw, 22px); color: var(--muted); margin: 0 0 20px; }
.hero .tag{ display:inline-block; font-weight:700; color: var(--accent-2); text-transform:uppercase; letter-spacing:1.6px; font-size: 13px; margin-bottom:10px; }

.card{
  background: var(--card);
  border:1px solid var(--card-border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.section{ padding: 52px 0; }
.section h2{ font-size: clamp(24px, 4vw, 36px); margin: 0 0 10px; }
.section p.sub{ color: var(--muted); margin-top:4px; }

.grid-3{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.grid-2{
  display:grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
}

.kicker{ text-transform:uppercase; letter-spacing:1.6px; color: var(--accent-2); font-weight:700; font-size:12px; }

.price{
  display:grid; grid-template-columns: 1.1fr 0.9fr; gap: 22px; align-items: stretch;
}

.price .box{
  padding: 26px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(0,209,255,0.10), rgba(255,255,255,0.02));
  border:1px solid rgba(0,209,255,0.30);
}

.list{ margin: 0; padding-left: 18px; }
.list li{ margin: 8px 0; }

.footer{
  margin-top: 50px;
  padding: 30px 0 60px;
  border-top:1px solid var(--card-border);
  color: var(--muted);
  font-size: 14px;
}

.hero-img{ border-radius: 16px; border:1px solid var(--card-border); width:100%; height:auto; display:block; }

.audio-btn{ position: relative; }
.audio-btn .icon{ margin-left:8px; font-size: 18px; }

.small{ font-size: 14px; color: var(--muted); }

/* Features page */
.page-header{ padding: 42px 0 12px; border-bottom:1px solid var(--card-border); }
.back{ display:inline-flex; align-items:center; gap:8px; }

.gallery{ display:grid; grid-template-columns: 1fr; gap: 16px; }
.gallery img{ width:100%; height:auto; border-radius: 14px; border:1px solid var(--card-border); }



.honeypot-field {
    position: absolute; 
    left: -9999px;    
    opacity: 0;       
    visibility: hidden;
    height: 0;
    width: 0;
    overflow: hidden;
}
@media (max-width: 900px){
  .hero-grid, .price{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  

  .nav .menu { 
    display: none !important; 
  }
  .nav .menu-toggle { 
    display: block; 
  }

  .menu-toggle {
      background: none; border: none; padding: 10px;
      cursor: pointer; z-index: 100;
      color: var(--accent-2);
      font-size: 28px;
      line-height: 1;
      margin-right: -10px;
  }


  .mobile-menu {
      display: flex; 
      width: 100vw; 
      height: 100vh;
      position: fixed;
      top: 0; left: 0; 
      z-index: 90;
      background: var(--bg-top);
      backdrop-filter: blur(12px);
      transform: translateX(100%); 
      transition: transform 0.3s ease-out;
      padding: 80px 5vw 20px;
      flex-direction: column;
      align-items: flex-start;
      overflow-y: auto; 
  }


  body.menu-open .mobile-menu {
      transform: translateX(0);
  }

  .mobile-menu a {
      display: block;
      font-size: 24px;
      font-weight: 600;
      padding: 12px 0;
      margin: 0;
      width: 100%;
      border-bottom: 1px solid var(--card-border);
      opacity: 0.9;
  }

  .mobile-menu .btn {
      margin-top: 20px;
      width: 100%;
      display: block;
      text-align: center;
  }
}


@media (min-width: 901px) {
    .nav .menu {
        display: flex !important;
		align-items: center;
    }
    .nav .menu-toggle,
    .mobile-menu {
        display: none !important;
    }
}



:root{ --accent: #00d1ff; --text: #e6f2ff; --muted:#a9b7c6; --card: rgba(255,255,255,0.03); --card-border: rgba(255,255,255,0.08);}
.header{ position: sticky; top:0; z-index: 50; backdrop-filter: blur(10px);
  background: linear-gradient(to right, rgba(4,7,13,0.85), rgba(10,20,38,0.85));
  border-bottom: 1px solid var(--card-border); overflow: visible; }
.logo img{ height:64px; border-radius:14px; margin-bottom:-12px;
  box-shadow: 0 0 0 1px rgba(0,209,255,0.35), 0 14px 28px rgba(0,209,255,0.22); }
.footer{ margin-top: 50px; padding: 28px 0 60px; border-top:1px solid var(--card-border); color: var(--muted); font-size:14px; }
h1, h2, .kicker { color: var(--accent); }
.card h2{ font-size: clamp(22px, 3.2vw, 28px); margin-top:0; }
.section h2[style]{ color: var(--accent) !important; }
.btn{ border:1px solid rgba(0,209,255,0.35); color: var(--text); }
.audio-btn{ margin: 14px 0 16px; }
.icon-list{ list-style:none; padding-left:0; margin: 8px 0 0; }
.icon-list li{ display:flex; align-items:center; gap:10px; margin:10px 0; }
.icon{ width:18px; height:18px; display:inline-block; flex:0 0 18px; }
.icon svg{ width:18px; height:18px; fill: var(--accent); opacity: 0.95; }
.list li::marker{ color: var(--accent); }
.hero .section{ padding-top: 8px !important; }


.list{ margin: 0; padding-left: 18px; }
.list li{ margin: 8px 0; list-style: disc; }


.contact-form .row{ margin: 8px 0; }
.contact-form input, .contact-form textarea{
  width: 100%; background: var(--card); border:1px solid var(--card-border);
  color: var(--text); padding: 10px 12px; border-radius: 10px; font: inherit;
}
.contact-form button.btn{ width: 100%; }