*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      /* ─── DARK MODE (Default) ─── */
      --bg:        #07090F;
      --bg2:       #0D1120;
      --bg3:       #111827;
      --accent:    #4EFFC4;
      --accent2:   #3B7AFF;
      --text:      #F0F2F8;
      --muted:     #6B7A99;
      --border:    rgba(255,255,255,0.07);
      --card:      rgba(255,255,255,0.04);
      --font-head: 'Bricolage Grotesque', sans-serif;
      --font-body: 'Instrument Sans', sans-serif;

      /* Nav-Hintergründe */
      --nav-bg:       rgba(7,9,15,0.75);
      --nav-bg-solid: rgba(7,9,15,0.95);
      --hero-card-bg: rgba(13,17,32,0.95);

      /* btn-primary Textfarbe */
      --btn-text: #07090F;
    }

    /* ─── LIGHT MODE ─── */
    [data-theme="light"] {
      --bg:        #F4F6FB;
      --bg2:       #EAEEF7;
      --bg3:       #DFE5F2;
      --accent:    #00A87A;
      --accent2:   #2B5FCC;
      --text:      #0D1120;
      --muted:     #5A6885;
      --border:    rgba(0,0,0,0.08);
      --card:      rgba(0,0,0,0.03);

      --nav-bg:       rgba(244,246,251,0.85);
      --nav-bg-solid: rgba(244,246,251,0.98);
      --hero-card-bg: rgba(255,255,255,0.97);

      --btn-text: #ffffff;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
      transition: background 0.3s ease, color 0.3s ease;
    }

    /* ─── NOISE OVERLAY ─── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 1000;
      opacity: 0.4;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 900;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 48px;
      background: var(--nav-bg);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      transition: background 0.3s ease;
    }

    .nav-logo {
      font-family: var(--font-head);
      font-weight: 800;
      font-size: 22px;
      letter-spacing: -0.5px;
      color: var(--text);
      text-decoration: none;
    }

    .nav-logo span { color: var(--accent); }

    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--text); }

    .nav-cta {
      background: var(--accent);
      color: var(--btn-text);
      padding: 10px 24px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      transition: opacity 0.2s, transform 0.2s;
    }

    .nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }

    /* ─── THEME TOGGLE ─── */
    .theme-toggle {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 20px;
      width: 52px;
      height: 28px;
      cursor: pointer;
      position: relative;
      display: flex;
      align-items: center;
      padding: 4px;
      transition: background 0.3s, border-color 0.3s;
      flex-shrink: 0;
    }

    .theme-toggle-knob {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--accent);
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s;
      transform: translateX(0);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      line-height: 1;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    [data-theme="light"] .theme-toggle-knob {
      transform: translateX(24px);
    }

    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      padding-top: 80px;
      position: relative;
      overflow: hidden;
    }

    .hero-glow {
      position: absolute;
      width: 800px;
      height: 800px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(78,255,196,0.07) 0%, transparent 70%);
      top: -200px;
      left: -200px;
      pointer-events: none;
    }

    .hero-glow2 {
      position: absolute;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(59,122,255,0.08) 0%, transparent 70%);
      bottom: 0;
      right: 0;
      pointer-events: none;
    }

    .hero-left {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px 64px 80px 80px;
      position: relative;
      z-index: 2;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(78,255,196,0.1);
      border: 1px solid rgba(78,255,196,0.25);
      border-radius: 100px;
      padding: 6px 16px;
      font-size: 13px;
      font-weight: 500;
      color: var(--accent);
      margin-bottom: 32px;
      width: fit-content;
      animation: fadeUp 0.6s ease both;
    }

    .hero-badge::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--accent);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.3; }
    }

    h1 {
      font-family: var(--font-head);
      font-size: clamp(42px, 5vw, 68px);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -2px;
      margin-bottom: 24px;
      animation: fadeUp 0.6s 0.1s ease both;
    }

    h1 em {
      font-style: normal;
      color: var(--accent);
    }

    .hero-sub {
      font-size: 18px;
      color: var(--muted);
      line-height: 1.7;
      max-width: 460px;
      margin-bottom: 48px;
      animation: fadeUp 0.6s 0.2s ease both;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      align-items: center;
      animation: fadeUp 0.6s 0.3s ease both;
    }

    .btn-primary {
      background: var(--accent);
      color: var(--btn-text);
      padding: 16px 32px;
      border-radius: 10px;
      font-weight: 700;
      font-size: 15px;
      text-decoration: none;
      transition: all 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 40px rgba(78,255,196,0.25);
    }

    .btn-secondary {
      color: var(--muted);
      font-size: 15px;
      text-decoration: none;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: color 0.2s;
    }

    .btn-secondary:hover { color: var(--text); }

    .hero-trust {
      margin-top: 56px;
      display: flex;
      align-items: center;
      gap: 24px;
      animation: fadeUp 0.6s 0.4s ease both;
    }

    .hero-trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--muted);
    }

    .hero-trust-icon {
      width: 18px; height: 18px;
      color: var(--accent);
      flex-shrink: 0;
    }

    /* HERO IMAGE */
    .hero-right {
      position: relative;
      overflow: hidden;
      animation: fadeIn 0.8s 0.2s ease both;
    }

    .hero-img-placeholder {
      width: 100%;
      height: 100%;
      min-height: 600px;
      background: linear-gradient(135deg, var(--bg2) 0%, var(--bg3) 50%, var(--bg2) 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      position: relative;
    }

    .hero-img-placeholder::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, var(--bg) 0%, var(--bg) 8%, transparent 35%);
      pointer-events: none;
    }

    .placeholder-icon {
      width: 64px; height: 64px;
      border-radius: 16px;
      background: var(--card);
      border: 1px dashed rgba(255,255,255,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      color: var(--muted);
    }

    .placeholder-label {
      font-size: 13px;
      color: var(--muted);
      text-align: center;
    }

    /* HERO FLOATING CARD */
    .hero-card {
      position: absolute;
      bottom: 48px;
      left: -32px;
      background: var(--hero-card-bg);
      backdrop-filter: blur(20px);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 20px 24px;
      min-width: 260px;
      z-index: 10;
      animation: floatCard 0.8s 0.6s ease both;
    }

    @keyframes floatCard {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .card-label { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
    .card-amount {
      font-family: var(--font-head);
      font-size: 28px;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 4px;
    }
    .card-amount span { font-size: 14px; color: var(--muted); font-weight: 400; }
    .card-bar-track {
      height: 4px;
      background: var(--border);
      border-radius: 2px;
      margin-top: 12px;
      overflow: hidden;
    }
    .card-bar-fill {
      height: 100%;
      width: 65%;
      background: linear-gradient(to right, var(--accent2), var(--accent));
      border-radius: 2px;
      animation: growBar 1s 1.2s ease both;
      transform-origin: left;
    }
    @keyframes growBar {
      from { transform: scaleX(0); }
      to   { transform: scaleX(1); }
    }
    .card-meta { font-size: 12px; color: var(--muted); margin-top: 8px; }
    .card-meta strong { color: var(--accent); }

    /* ─── SECTION COMMONS ─── */
    section { position: relative; }

    .container {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 48px;
    }

    .section-tag {
      display: inline-block;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 16px;
    }

    .section-title {
      font-family: var(--font-head);
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -1.5px;
      margin-bottom: 20px;
    }

    .section-sub {
      font-size: 17px;
      color: var(--muted);
      max-width: 520px;
      line-height: 1.7;
    }

    /* ─── LOGOS / SOCIAL PROOF ─── */
    .logos-strip {
      padding: 40px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }

    .logos-track {
      display: flex;
      align-items: center;
      gap: 64px;
      animation: scrollTrack 20s linear infinite;
      width: max-content;
    }

    @keyframes scrollTrack {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    .logo-item {
      height: 28px;
      background: var(--card);
      border-radius: 6px;
      width: 100px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      color: var(--muted);
      font-weight: 500;
      letter-spacing: 1px;
      border: 1px solid var(--border);
    }

    .logos-label {
      text-align: center;
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 24px;
    }

    /* ─── HOW IT WORKS ─── */
    .how {
      position: relative;
      padding: 120px 0;
      background-image: url('../img/happy_female_1.png');
      background-size: cover;
      background-position: center;
    }

    .how::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(10, 12, 16, 0.85) 0%,
        rgba(10, 12, 16, 0.6) 40%,
        rgba(10, 12, 16, 0.85) 100%
      );
      z-index: 0;
    }

     Light-Mode: helleres Overlay 
    [data-theme="light"] .how::before {
      background: linear-gradient(
        to bottom,
        rgba(244, 246, 251, 0.88) 0%,
        rgba(244, 246, 251, 0.65) 40%,
        rgba(244, 246, 251, 0.88) 100%
      );
    }

    .how::after {
      content: '';
      position: absolute;
      inset: 0;
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(6px);
      z-index: 0;
    }

    .how > * {
      position: relative;
      z-index: 1;
    }

    .how-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: end;
      margin-bottom: 80px;
    }

    .how-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .step-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 36px 32px;
      position: relative;
      overflow: hidden;
      transition: border-color 0.3s, transform 0.3s;
    }

    .step-card:hover {
      border-color: rgba(78,255,196,0.2);
      transform: translateY(-4px);
    }

    .step-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(to right, var(--accent2), var(--accent));
      opacity: 0;
      transition: opacity 0.3s;
    }

    .step-card:hover::before { opacity: 1; }

    .step-num {
      font-family: var(--font-head);
      font-size: 64px;
      font-weight: 800;
      color: rgba(255,255,255,0.04);
      line-height: 1;
      margin-bottom: 20px;
      letter-spacing: -3px;
    }

    /* Light Mode: Step-Num anpassen */
    [data-theme="light"] .step-num {
      color: rgba(0,0,0,0.06);
    }

    .step-icon {
      width: 48px; height: 48px;
      border-radius: 12px;
      background: rgba(78,255,196,0.1);
      border: 1px solid rgba(78,255,196,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      margin-bottom: 20px;
    }

    .step-title {
      font-family: var(--font-head);
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 12px;
      letter-spacing: -0.5px;
    }

    .step-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }

    /* ─── PRODUCTS ─── */
    .products {
      padding: 120px 0;
      background: radial-gradient(
        circle at 50% 0%,
        rgba(78,255,196,0.05),
        transparent 60%
      ),
      var(--bg2);
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 64px;
    }

    .product-card {
      background: rgba(255,255,255,0.02);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 32px 28px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      transition: all 0.3s;
    }

    [data-theme="light"] .product-card {
      background: rgba(0,0,0,0.02);
    }

    .product-card:hover {
      background: rgba(255,255,255,0.05);
      border-color: rgba(78,255,196,0.15);
    }

    [data-theme="light"] .product-card:hover {
      background: rgba(0,0,0,0.04);
    }

    .product-card.featured {
      background: linear-gradient(135deg, rgba(78,255,196,0.08), rgba(59,122,255,0.06));
      border-color: rgba(78,255,196,0.25);
      grid-row: span 2;
    }

    .product-emoji { font-size: 32px; }

    .product-name {
      font-family: var(--font-head);
      font-size: 20px;
      font-weight: 700;
      letter-spacing: -0.5px;
    }

    .product-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

    .product-tag {
      display: inline-block;
      padding: 4px 12px;
      background: rgba(78,255,196,0.1);
      border: 1px solid rgba(78,255,196,0.2);
      border-radius: 100px;
      font-size: 12px;
      color: var(--accent);
      font-weight: 500;
      width: fit-content;
    }

    /* PRODUCT IMAGE PLACEHOLDER */
    .product-img-placeholder {
      width: 100%;
      height: 200px;
      background: linear-gradient(135deg, var(--card), rgba(255,255,255,0.01));
      border-radius: 12px;
      border: 1px dashed var(--border);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-size: 12px;
      color: var(--muted);
    }

    /* ─── NUMBERS ─── */
    .numbers {
      padding: 100px 0;
      background: var(--bg);
    }

    .numbers-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: 24px;
      overflow: hidden;
    }

    .number-item {
      background: var(--bg);
      padding: 48px 40px;
      text-align: center;
    }

    .number-value {
      font-family: var(--font-head);
      font-size: 52px;
      font-weight: 800;
      letter-spacing: -2px;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 8px;
    }

    .number-label { font-size: 14px; color: var(--muted); }

    /* ─── TESTIMONIALS ─── */
    .testimonials {
      padding: 120px 0;
      background: var(--bg2);
      overflow: hidden;
    }

    .testimonials-header { text-align: center; margin-bottom: 64px; }
    .testimonials-header .section-sub { margin: 0 auto; }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .review-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 32px 28px;
      transition: all 0.3s;
    }

    .review-card:hover { border-color: rgba(78,255,196,0.15); }

    .stars {
      display: flex;
      gap: 4px;
      margin-bottom: 16px;
    }

    .star { color: var(--accent); font-size: 14px; }

    .review-text {
      font-size: 15px;
      line-height: 1.7;
      color: var(--text);
      margin-bottom: 24px;
      font-style: italic;
    }

    .reviewer {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .reviewer-avatar {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--accent2), var(--accent));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      font-weight: 700;
      font-family: var(--font-head);
      color: #07090F;
      flex-shrink: 0;
    }

    .reviewer-name { font-weight: 600; font-size: 14px; }
    .reviewer-meta { font-size: 12px; color: var(--muted); }

    /* ─── CTA BANNER ─── */
    .cta-banner {
      padding: 120px 0;
      background: var(--bg);
    }

    .cta-inner {
      background: linear-gradient(135deg, rgba(78,255,196,0.08) 0%, rgba(59,122,255,0.06) 100%);
      border: 1px solid rgba(78,255,196,0.2);
      border-radius: 32px;
      padding: 80px 80px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 64px;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .cta-inner::before {
      content: '';
      position: absolute;
      top: -100px; right: -100px;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(78,255,196,0.06), transparent 70%);
      pointer-events: none;
    }

    .cta-title {
      font-family: var(--font-head);
      font-size: clamp(28px, 3.5vw, 48px);
      font-weight: 800;
      letter-spacing: -1.5px;
      margin-bottom: 16px;
    }

    .cta-sub { font-size: 16px; color: var(--muted); }

    .cta-actions {
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: flex-start;
      flex-shrink: 0;
    }

    .cta-note { font-size: 12px; color: var(--muted); }

    /* ─── FOOTER ─── */
    footer {
      padding: 64px 0;
      border-top: 1px solid var(--border);
      background: var(--bg);
    }

    .footer-inner {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 64px;
    }

    .footer-logo {
      font-family: var(--font-head);
      font-size: 22px;
      font-weight: 800;
      margin-bottom: 16px;
      letter-spacing: -0.5px;
    }

    .footer-logo span { color: var(--accent); }
    .footer-tagline { font-size: 14px; color: var(--muted); max-width: 240px; line-height: 1.6; }

    .footer-col-title {
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 20px;
      letter-spacing: 0.5px;
    }

    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .footer-links a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
    .footer-links a:hover { color: var(--text); }

    .footer-bottom {
      margin-top: 48px;
      padding-top: 24px;
      border-top: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      color: var(--muted);
    }

    .footer-bottom a { color: var(--muted); text-decoration: none; }
    .footer-bottom a:hover { color: var(--text); }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
      nav { padding: 16px 24px; }
      .nav-links { display: none; }
      .hero { grid-template-columns: 1fr; }
      .hero-right { display: none; }
      .hero-left { padding: 120px 24px 60px; }
      .container { padding: 0 24px; }
      .how-header { grid-template-columns: 1fr; gap: 32px; }
      .how-steps { grid-template-columns: 1fr; }
      .products-grid { grid-template-columns: 1fr; }
      .numbers-grid { grid-template-columns: 1fr 1fr; }
      .reviews-grid { grid-template-columns: 1fr; }
      .cta-inner { grid-template-columns: 1fr; padding: 48px 32px; }
      .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
      .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

      /* Form section responsive */
      .form-section iframe {
        height: 600px;
        min-height: 500px;
      }

      .form-section .section-title {
        font-size: 36px;
      }

      .form-section .section-sub {
        font-size: 16px;
      }
    }
	
	/* ─────────────────────────────────────────────
   🧠 GLOBAL UI SYSTEM FIX (Vehix Upgrade Layer)
──────────────────────────────────────────── */

/* FIX: Navbar Overlay Problem */
body {
  padding-top: 84px; /* verhindert Überschneidung */
}

/* ─── SECTION SYSTEM (WICHTIGSTE FIX) ─── */
section {
  position: relative;
  padding: 120px 0;
}

/* alternierender Rhythmus (Checkout Feeling) 
section:nth-of-type(even) {
  background: rgba(255,255,255,0.01);
}

[data-theme="light"] section:nth-of-type(even) {
  background: rgba(0,0,0,0.02);
}*/

/* ─── CONTAINER FIX (zentrierter Checkout-Look) ─── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
}

/* ─── SECTION HEADER ALIGNMENT FIX ─── */
.section-tag {
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-sub {
  margin-bottom: 0;
}

/* ─────────────────────────────────────────────
   🧭 HERO → klarer „Input + Decision Layer“
──────────────────────────────────────────── */

.hero {
  padding-top: 0; /* weil body padding übernimmt */
}

.hero-left {
  justify-content: center;
  gap: 0;
}

/* bessere Input-Hierarchie */
.hero-sub {
  margin-bottom: 36px;
}

/* ─────────────────────────────────────────────
   💳 PRODUCTS → CARD GRID FIX (kein Chaos mehr)
──────────────────────────────────────────── */

.products-grid {
  align-items: stretch;
}

/* bessere Card Struktur */
.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* featured Karte klarer Checkout Fokus */
.product-card.featured {
  position: relative;
  overflow: hidden;
}

.product-card.featured::after {
  content: "MOST USED";
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  letter-spacing: 1px;
  padding: 6px 10px;
  background: var(--accent);
  color: #000;
  border-radius: 100px;
}

/* ─────────────────────────────────────────────
   📊 NUMBERS → FINTECH DASHBOARD LOOK
──────────────────────────────────────────── */

.numbers {
  padding: 140px 0;
}

.numbers-grid {
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

/* jede Zelle wirkt wie KPI Card */
.number-item {
  transition: all 0.3s ease;
}

.number-item:hover {
  background: rgba(255,255,255,0.04);
}

[data-theme="light"] .number-item:hover {
  background: rgba(0,0,0,0.04);
}

/* ─────────────────────────────────────────────
   🧭 HOW SECTION → CLEANER FLOW (Checkout Step UI)
──────────────────────────────────────────── */



/* Steps wirken jetzt wie Prozess-Karten */
.step-card {
  backdrop-filter: blur(12px);
}

/* bessere visuelle Hierarchie */
.step-num {
  opacity: 0.08;
}

/* ─────────────────────────────────────────────
   💡 CTA → stärkerer Checkout Fokus
──────────────────────────────────────────── */

.cta-banner {
  padding: 140px 0;
}

.cta-inner {
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

/* ─────────────────────────────────────────────
   🧠 NAV FIX (Z-Index + Blur Stabilität)
──────────────────────────────────────────── */

nav {
  z-index: 999;
}

/* verhindert Content „unter Navbar kleben“ */
.hero,
,
.products,
.numbers,
.testimonials {
  scroll-margin-top: 100px;
}

/* ─────────────────────────────────────────────
   📱 MOBILE FIX (wichtig für Checkout UX)
──────────────────────────────────────────── */

@media (max-width: 900px) {

  body {
    padding-top: 72px;
  }

  section {
    padding: 80px 0;
  }

  .container {
    padding: 0 20px;
  }

  .numbers-grid {
    grid-template-columns: 1fr;
  }

  .product-card.featured::after {
    top: 12px;
    right: 12px;
  }
}
/* ===== START PAGE FIX ===== */

.start-hero {
  padding: 120px 20px 60px;
  text-align: center;
}

.start-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.start-hero p {
  font-size: 18px;
  opacity: 0.8;
}

/* GRID */
.start-wrapper {
  padding: 40px 0 80px;
}

.start-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* CARDS */
.start-card {
  display: block;
  padding: 25px;
  border-radius: 16px;
  background: #111;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
  border: 1px solid rgba(255,255,255,0.08);
}

.start-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.2);
}

.start-card h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.start-card p {
  font-size: 14px;
  opacity: 0.7;
}

/* SECTIONS */
.start-section {
  padding: 80px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.start-section h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .start-grid {
    grid-template-columns: 1fr;
  }

  .start-hero h1 {
    font-size: 32px;
  }
}