
    :root {
      --bg-dark: #0b2430;
      --bg-darker: #06141c;
      --primary: #00a8c6;
      --primary-soft: #1fb6cf;
      --accent: #ff9b32;
      --accent-soft: #ffb865;
      --text-light: #f5f7fa;
      --text-muted: #a9b7c6;
      --card-bg: #102a36;
      --border-soft: rgba(255, 255, 255, 0.06);
      --radius-lg: 20px;
      --radius-xl: 26px;
      --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.45);
      --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.35);
      --transition-fast: 0.18s ease-out;
      --transition-med: 0.28s ease-out;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
.feature-more {
  margin-top: 0.6rem;
  font-size: 0.8rem;
}

.feature-more a {
  color: var(--primary-soft);
  text-decoration: none;
}

.feature-more a:hover {
  text-decoration: underline;
}

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: radial-gradient(circle at top, #113649 0, var(--bg-dark) 45%, var(--bg-darker) 100%);
      color: var(--text-light);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .page-shell {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(14px);
      background: linear-gradient(to bottom, rgba(6, 20, 28, 0.96), rgba(6, 20, 28, 0.7));
      border-bottom: 1px solid var(--border-soft);
    }

    .nav {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0.9rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }

    .nav-left {
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .nav-logo-circle {
      width: 38px;
      height: 38px;
      border-radius: 999px;
      border: 2px solid var(--primary-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      background: radial-gradient(circle at 30% 0%, rgba(0, 168, 198, 0.35), rgba(0, 0, 0, 0.6));
      box-shadow: 0 0 0 1px rgba(0, 168, 198, 0.3);
    }

    .nav-logo-icon {
      width: 20px;
      height: 20px;
      border-radius: 6px;
      background: #fff;
      position: relative;
    }

    .nav-logo-icon::after {
      content: "";
      position: absolute;
      inset: 4px 6px;
      border-radius: 4px;
      border: 2px solid var(--accent);
    }

    .nav-brand-text {
      display: flex;
      flex-direction: column;
      gap: 0.08rem;
    }

    .nav-title {
      font-weight: 700;
      letter-spacing: 0.12em;
      font-size: 0.85rem;
    }

    .nav-subtitle {
      font-size: 0.72rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.16em;
    }

    .nav-links {
      display: flex;
      gap: 1.5rem;
      align-items: center;
      font-size: 0.88rem;
    }

    .nav-links a {
      position: relative;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.16em;
      font-weight: 500;
      font-size: 0.78rem;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -0.35rem;
      width: 0;
      height: 2px;
      background: linear-gradient(to right, var(--primary), var(--accent));
      border-radius: 999px;
      transition: width var(--transition-fast);
    }

    .nav-links a:hover {
      color: var(--text-light);
    }

    .nav-links a:hover::after {
      width: 18px;
    }

    .nav-cta {
      display: flex;
      gap: 0.75rem;
      align-items: center;
    }

    .btn {
      border-radius: 999px;
      padding: 0.55rem 1.1rem;
      font-size: 0.82rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      border: 1px solid transparent;
      cursor: pointer;
      background: none;
      color: var(--text-light);
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
    }

    .btn-primary {
      background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.16), transparent),
                  linear-gradient(135deg, var(--primary), var(--accent));
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
      border-color: rgba(0, 0, 0, 0.4);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
    }

    .btn-ghost {
      border-color: var(--border-soft);
      background: rgba(16, 42, 54, 0.7);
      color: var(--text-muted);
    }

    .btn-ghost:hover {
      border-color: rgba(255, 255, 255, 0.18);
      color: var(--text-light);
      transform: translateY(-1px);
      box-shadow: var(--shadow-subtle);
    }

    main {
      flex: 1;
    }

    .section {
      max-width: 1140px;
      margin: 0 auto;
      padding: 3.3rem 1.5rem;
    }

    /* Hero */

    .hero {
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
      gap: 3.2rem;
      align-items: center;
      padding-top: 3.8rem;
      padding-bottom: 4rem;
    }

    .hero-kicker {
      text-transform: uppercase;
      letter-spacing: 0.24em;
      font-size: 0.74rem;
      color: var(--primary-soft);
      margin-bottom: 0.9rem;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }

    .hero-kicker span.dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
    }

    .hero-title {
      font-size: clamp(2.4rem, 4vw, 3rem);
      line-height: 1.12;
      margin-bottom: 0.9rem;
    }

    .hero-title span.accent {
      background-image: linear-gradient(120deg, var(--primary-soft), var(--accent-soft));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero-subtitle {
      font-size: 1rem;
      color: var(--text-muted);
      max-width: 34rem;
      margin-bottom: 1.7rem;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      margin-bottom: 1.8rem;
    }

    .hero-badge {
      padding: 0.3rem 0.7rem;
      border-radius: 999px;
      border: 1px solid var(--border-soft);
      font-size: 0.72rem;
      color: var(--text-muted);
      background: rgba(11, 36, 48, 0.9);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      align-items: center;
      margin-bottom: 1.4rem;
    }

    .hero-note {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .hero-note strong {
      color: var(--accent-soft);
      font-weight: 600;
    }

    .hero-right {
      position: relative;
    }

    .hero-card {
      background: radial-gradient(circle at 0% 0%, rgba(0, 168, 198, 0.3), transparent 55%),
                  radial-gradient(circle at 100% 0%, rgba(255, 155, 50, 0.28), transparent 60%),
                  var(--card-bg);
      border-radius: var(--radius-xl);
      padding: 1.8rem 1.6rem 1.6rem;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(255, 255, 255, 0.06);
      position: relative;
      overflow: hidden;
    }

    .hero-logo-row {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      margin-bottom: 1.4rem;
    }

    .hero-logo-circle {
      width: 78px;
      height: 78px;
      border-radius: 999px;
      border: 4px solid var(--primary-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      background: radial-gradient(circle at 30% 0%, rgba(0, 168, 198, 0.4), rgba(0, 0, 0, 0.7));
      position: relative;
      box-shadow: 0 0 0 1px rgba(0, 168, 198, 0.45);
    }

    .hero-logo-circle::before,
    .hero-logo-circle::after {
      content: "";
      position: absolute;
      border-radius: inherit;
      border: 1px dashed rgba(255, 255, 255, 0.12);
      inset: 8px;
    }

    .hero-logo-inner {
      width: 42px;
      height: 62px;
      border-radius: 14px;
      background: #fff;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .hero-logo-inner::before {
      content: "";
      position: absolute;
      inset: 9px 11px;
      border-radius: 10px;
      border: 3px solid var(--accent);
    }

    .hero-logo-inner::after {
      content: "";
      position: absolute;
      width: 14px;
      height: 14px;
      border-radius: 999px;
      border: 3px solid var(--accent);
      border-top-color: transparent;
      top: 7px;
    }

    .hero-logo-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--accent);
      position: relative;
      z-index: 1;
    }

    .hero-product-title {
      font-size: 1.3rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      margin-bottom: 0.25rem;
    }

    .hero-product-subtitle {
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--text-muted);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
      margin-bottom: 1.3rem;
    }

    .metric {
      padding: 0.7rem 0.75rem;
      border-radius: 16px;
      background: rgba(6, 20, 28, 0.9);
      border: 1px solid rgba(255, 255, 255, 0.04);
      display: flex;
      flex-direction: column;
      gap: 0.22rem;
    }

    .metric-label {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--text-muted);
    }

    .metric-value {
      font-size: 1rem;
      font-weight: 600;
    }

    .metric-pill {
      font-size: 0.74rem;
      color: var(--accent-soft);
    }

    .hero-mini-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.75rem;
      color: var(--text-muted);
      gap: 0.9rem;
    }

    .chip-row {
      display: flex;
      gap: 0.3rem;
      flex-wrap: wrap;
    }

    .chip {
      padding: 0.15rem 0.5rem;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      font-size: 0.68rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
    }
	
	.chip_no {
      padding: 0.15rem 0.5rem;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      font-size: 0.68rem;
      text-transform: uppercase;
	  text-decoration:line-through;
      letter-spacing: 0.16em;
    }

    .hero-orbit {
      position: absolute;
      inset: -15%;
      border-radius: 999px;
      border: 1px dashed rgba(0, 168, 198, 0.18);
      pointer-events: none;
    }

    .hero-orbit-dot {
      position: absolute;
      width: 11px;
      height: 11px;
      border-radius: 999px;
      background: var(--primary-soft);
      box-shadow: 0 0 0 4px rgba(0, 168, 198, 0.35);
    }

    .hero-orbit-dot.orange {
      background: var(--accent);
      box-shadow: 0 0 0 4px rgba(255, 155, 50, 0.35);
    }

    .hero-orbit-dot.dot-1 { top: 12%; left: 18%; }
    .hero-orbit-dot.dot-2 { top: 6%; right: 12%; }
    .hero-orbit-dot.dot-3 { bottom: 8%; left: 10%; }
    .hero-orbit-dot.dot-4 { bottom: 16%; right: 20%; }

    /* Features */

    .section-label {
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-size: 0.78rem;
      color: var(--primary-soft);
      margin-bottom: 0.5rem;
    }

    .section-title {
      font-size: 1.65rem;
      margin-bottom: 0.7rem;
    }

    .section-intro {
      color: var(--text-muted);
      max-width: 34rem;
      margin-bottom: 2rem;
      font-size: 0.95rem;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.5rem;
    }

    .feature-card {
      background: radial-gradient(circle at 0 -20%, rgba(0, 168, 198, 0.25), transparent 55%),
                  radial-gradient(circle at 120% 0, rgba(255, 155, 50, 0.18), transparent 50%),
                  rgba(11, 36, 48, 0.95);
      border-radius: var(--radius-lg);
      padding: 1.4rem 1.3rem;
      border: 1px solid var(--border-soft);
      box-shadow: var(--shadow-subtle);
      position: relative;
      overflow: hidden;
      transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med), background var(--transition-med);
    }

    .feature-card:hover {
      transform: translateY(-4px);
      border-color: rgba(255, 255, 255, 0.16);
      box-shadow: 0 22px 50px rgba(0, 0, 0, 0.6);
      background: radial-gradient(circle at 0 -20%, rgba(0, 168, 198, 0.35), transparent 55%),
                  radial-gradient(circle at 120% 0, rgba(255, 155, 50, 0.28), transparent 50%),
                  rgba(11, 36, 48, 0.97);
    }

    .feature-icon {
      width: 34px;
      height: 34px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
      font-size: 0.9rem;
      background: rgba(16, 42, 54, 0.95);
    }

    .feature-title {
      font-size: 1rem;
      margin-bottom: 0.4rem;
    }

    .feature-text {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-bottom: 0.7rem;
    }

    .feature-tag {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--accent-soft);
    }

    /* How it works */

    .steps {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
      gap: 2.5rem;
      align-items: center;
    }

    .steps-list {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .step {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 0.9rem 1rem;
      align-items: flex-start;
    }

    .step-number {
      width: 28px;
      height: 28px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      color: var(--accent-soft);
      background: rgba(11, 36, 48, 0.9);
    }

    .step-title {
      font-size: 0.96rem;
      font-weight: 600;
    }

    .step-text {
      grid-column: 2 / -1;
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    .steps-card {
      background: rgba(11, 36, 48, 0.96);
      border-radius: var(--radius-lg);
      padding: 1.5rem 1.4rem;
      border: 1px solid var(--border-soft);
      box-shadow: var(--shadow-subtle);
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    .steps-card h3 {
      font-size: 1rem;
      margin-bottom: 0.7rem;
      color: var(--text-light);
    }

    .steps-matrix {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.7rem;
      margin-top: 0.9rem;
    }

    .steps-matrix-item {
      padding: 0.5rem 0.55rem;
      border-radius: 12px;
      border: 1px solid var(--border-soft);
    }

    .steps-matrix-item strong {
      font-size: 0.76rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--primary-soft);
    }

    .steps-matrix-item span {
      display: block;
      font-size: 0.78rem;
      margin-top: 0.2rem;
    }

    /* Kontakt */

    .contact {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
      gap: 2.4rem;
      align-items: flex-start;
    }

    .contact-panel {
      background: rgba(11, 36, 48, 0.97);
      border-radius: var(--radius-lg);
      padding: 1.6rem 1.5rem 1.7rem;
      border: 1px solid var(--border-soft);
      box-shadow: var(--shadow-subtle);
    }

    .contact-panel h3 {
      font-size: 1.1rem;
      margin-bottom: 0.4rem;
    }

    .contact-panel p {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-bottom: 1.2rem;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.9rem 0.8rem;
    }

    .form-grid-full {
      grid-column: 1 / -1;
    }

    label {
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--text-muted);
      display: block;
      margin-bottom: 0.25rem;
    }

    input,
    textarea,
    select {
      width: 100%;
      border-radius: 999px;
      border: 1px solid var(--border-soft);
      background: rgba(6, 20, 28, 0.9);
      padding: 0.65rem 0.9rem;
      font-size: 0.86rem;
      color: var(--text-light);
      outline: none;
      transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
      font-family: inherit;
    }

    textarea {
      border-radius: 16px;
      resize: vertical;
      min-height: 80px;
      line-height: 1.4;
    }

    input:focus,
    textarea:focus,
    select:focus {
      border-color: rgba(0, 168, 198, 0.8);
      box-shadow: 0 0 0 1px rgba(0, 168, 198, 0.55);
      background: rgba(11, 36, 48, 0.96);
    }

    .contact-meta {
      font-size: 0.85rem;
      color: var(--text-muted);
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    .contact-meta-block {
      background: rgba(11, 36, 48, 0.85);
      border-radius: var(--radius-lg);
      padding: 1rem 1rem;
      border: 1px solid var(--border-soft);
    }

    .contact-meta-block strong {
      display: block;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      margin-bottom: 0.3rem;
      color: var(--primary-soft);
    }

    .contact-meta-tagline {
      font-size: 0.88rem;
      margin-bottom: 0.4rem;
    }

    .contact-meta ul {
      list-style: none;
      margin: 0;
      padding: 0;
      font-size: 0.83rem;
    }

    .contact-meta li + li {
      margin-top: 0.2rem;
    }

    footer {
      border-top: 1px solid var(--border-soft);
      padding: 1.4rem 1.5rem 1.6rem;
      font-size: 0.78rem;
      color: var(--text-muted);
      background: rgba(6, 20, 28, 0.98);
    }

    .footer-inner {
      max-width: 1140px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.2rem;
      flex-wrap: wrap;
    }

    .footer-links {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .footer-links a {
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-size: 0.72rem;
    }

    .footer-links a:hover {
      color: var(--text-light);
    }

    /* Responsive */

    @media (max-width: 960px) {
      .hero,
      .steps,
      .contact {
        grid-template-columns: minmax(0, 1fr);
      }
      .hero-right {
        order: -1;
      }
      .hero {
        padding-top: 2.6rem;
      }
      .nav-links {
        display: none;
      }
    }

    @media (max-width: 768px) {
      .section {
        padding: 2.6rem 1.3rem;
      }
      .feature-grid {
        grid-template-columns: minmax(0, 1fr);
      }
      .steps-matrix {
        grid-template-columns: minmax(0, 1fr);
      }
      .hero-card {
        padding: 1.5rem 1.3rem;
      }
    }

    @media (max-width: 520px) {
      .nav {
        padding-inline: 1rem;
      }
      .hero-actions {
        flex-direction: column;
        align-items: stretch;
      }
      .btn {
        justify-content: center;
      }
      .hero-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }
