:root {

		--radius-lg: 1.5rem;
		--radius-md: 1rem;

		--bg: rgba(255,255,255,1);
		--bg-elevated: rgba(245, 245, 245, 1);
		--text: rgba(15, 23, 42, 1);

		--primary: rgba(232,0,70);                       /* Hauptfarbe */
		--primary-soft: rgba(27,60,80);  /* zarte Hintergründe/Chips */
		--primary-strong: rgba(27,60,139);                /* Zweitfarbe */
		
		--accent: rgba(17,50,129);                        /* sekundärer Akzent */
		--accent-soft: rgba(27,60,139, 0.18);

		--text-soft: rgba(50,50,50,1);
		--border-subtle: rgba(148,163,184,0.4);

		--shadow: rgba(150,150,150,0.3);
	}

    * {
		box-sizing: border-box;
		margin: 0;
		padding: 0;
    }

    img {
		max-width: 100%;
		height: auto;
    }


/* Funnel */

	#funnelCard {
		scroll-margin-top: 150px; /* Abstand nach oben beim Scrollen */
	}	
		
    .funnel-form {
		display: flex;
		flex-direction: column;
		gap: 1rem;
		font-size: 0.85rem;
    }

    .funnel-steps-wrapper {
		min-height: 260px;
    }

    .funnel-step {
		display: none;
    }

    .funnel-step.active {
		display: block;
    }

    .funnel-step h3 {
		font-size: 0.95rem;
		margin-bottom: 0.3rem;
    }

    .funnel-step-subtitle {
		font-size: 0.8rem;
		color: var(--text-soft);
		margin-bottom: 0.75rem;
    }

    .field-row {
		display: grid;
		grid-template-columns: repeat(2, minmax(0,1fr));
		gap: 0.7rem;
    }

    .field {
		display: flex;
		flex-direction: column;
		gap: 0.25rem;
		margin-bottom: 0.65rem;
    }

    .field label {
		font-size: 0.78rem;
		font-weight: 500;
    }

    .field input,
    .field textarea,
    .field select {
		border-radius: 0.75rem;
		border: 1px solid var(--border-subtle);
		background: var(--bg);
		padding: 0.5rem 0.6rem;
		font-size: 0.82rem;
		font-family: inherit;
		outline: none;
    }

    .field input:focus,
    .field textarea:focus,
    .field select:focus {
		border-color: var(--accent);
		box-shadow: 0 0 0 1px rgba(37,99,235,0.2);
    }

    .field textarea {
		min-height: 70px;
		resize: vertical;
    }

    .field-hint,
    .privacy-hint {
		font-size: 0.75rem;
		color: var(--text-soft);
    }

    .funnel-nav {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 0.75rem;
		margin-top: 0.6rem;
    }

    .funnel-nav .btn {
		flex: 1;
		justify-content: center;
    }


@media (max-width: 640px) {
	.field-row {
		grid-template-columns: 1fr;
    }
}

	

    body {
		font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
		background: var(--bg);
		min-height: 100vh;
		display: flex;
		flex-direction: column;
		-webkit-font-smoothing: antialiased;
    }

    .shell {
		max-width: 1400px;
		margin: 0 auto;
		padding: 1.75rem 1.25rem 4rem;
		width: 100%;
		flex: 1;
		display: flex;
		flex-direction: column;
    }

    main {
		flex: 1;
    }

    header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 1.5rem;
		margin-bottom: 2.5rem;
		border-bottom: 1px solid rgba(148,163,184,0.4);
		padding-bottom: 1rem;
    }

    .brand {
		display: flex;
		align-items: center;
		gap: 0.75rem;
		flex-wrap: wrap;
    }
	
	.brand h1 {
		margin: 0;                 /* Standard-H1-Ränder weg */
		transform: translateY(2px); /* höhe */
		font-size: 1.6rem;
		line-height: 1;
		background: linear-gradient(-90deg, var(--primary), var(--accent));
		-webkit-background-clip: text;
		background-clip: text;
		color: transparent;
	}

    .brand-logo span {
		color: #ffffff;
		font-weight: 700;
		font-size: 1.05rem;
    }
	
	.logo-vdk {
			transform: translateY(4px);
	}
	
	.logo-freenow {
			transform: translateY(3px);
	}

    nav {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		gap: 1.25rem;
		font-size: 1.1rem;
    }

    nav a {
		text-decoration: none;
		color: rgba(120,120,120,1);
		padding: 0.25rem 0;
		position: relative;
		transition: color 0.2s ease;
    }

    nav a::after {
		content: "";
		position: absolute;
		left: 0;
		bottom: 0;
		width: 0;
		height: 6px;
		border-radius: 999px;
		background: linear-gradient(-90deg, var(--primary), var(--accent));
		transition: width 0.2s ease;
    }

    nav a:hover {
		color: rgba(1,1,1,1);
    }

    nav a:hover::after {
		width: 100%;
    }

    .header-actions {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		gap: 0.75rem;
    }

    .btn {
		border: none;
		border-radius: 999px;
		font-size: 0.9rem;
		font-weight: 700;
		letter-spacing: 1px;
		padding: 0.6rem 2.3rem;
		cursor: pointer;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 0.4rem;
		white-space: nowrap;
		text-decoration: none;
		transition: transform 0.5s ease, box-shadow 0.5s ease, background 0.5s ease, color 0.5s ease;
    }

    .btn-primary {
		background: linear-gradient(135deg, var(--primary), var(--primary-strong));
		color: #ffffff;
		box-shadow: 3px 2px 10px rgba(100,50,200,0.7);
    }

    .btn-primary:hover {
		background: linear-gradient(135deg, var(--primary), var(--primary-strong));
		transform: translateY(-3px);
		box-shadow: 4px 3px 15px rgba(90,20,120,1);
    }

    .btn-ghost {
		background: var(--bg-elevated);
		color: var(--text);
		border-radius: 999px;
		padding: 0.5rem 1.1rem;
		border: 1px solid rgba(148,163,184,0.25);
		backdrop-filter: blur(12px);
		box-shadow: 6px 4px 15px var(--shadow);
    }

    .btn-ghost:hover {
      background: rgba(148,163,184,0.06);
    }

    /* Hero */
    .hero {
		display: grid;
		grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
		gap: 2.5rem;
		align-items: top;
		margin-bottom: 3.5rem;
    }

    .hero h1 {
		font-size: clamp(2.2rem, 3.1vw, 2.8rem);
		line-height: 1.08;
		margin-bottom: 0.9rem;
		letter-spacing: -0.03em;
    }

    .hero h1 span.highlight {
		background: linear-gradient(120deg, var(--primary), var(--primary-strong));
		-webkit-background-clip: text;
		color: transparent;
    }
	
	.section-header h2 span.highlight {
		background: linear-gradient(120deg, var(--primary), var(--primary-strong));
		-webkit-background-clip: text;
		color: transparent;
    }

    .hero-subtitle {
		font-size: 0.98rem;
		color: var(--text-soft);
		max-width: 36rem;
		margin-bottom: 1.4rem;
    }

    .hero-badges {
		display: flex;
		flex-wrap: wrap;
		gap: 0.75rem;
		margin-bottom: 1.6rem;
    }

    .badge {
		display: inline-flex;
		align-items: center;
		gap: 0.4rem;
		font-size: 0.8rem;
		padding: 0.45rem 0.85rem;
		border-radius: 999px;
		background: var(--bg);
		border: 1px solid var(--text);
		box-shadow: 6px 4px 15px var(--shadow);
		color: var(--text);
    }


    .badge span.icon {
		width: 18px;
		height: 18px;
		border-radius: 999px;
		background: var(--accent-soft);
		display: inline-flex;
		align-items: center;
		justify-content: center;
		font-size: 0.85rem;
		color: var(--accent);
    }

    .hero-actions {
		display: flex;
		flex-wrap: wrap;
		gap: 0.75rem;
		margin-bottom: 0.4rem;
    }

    .landing-actions {
		display: flex;
		flex-wrap: wrap;
    align-items: center;
    justify-content: center;
		gap: 0.75rem;
		margin-bottom: 0.4rem;
    }

    /* Hero card */
    .hero-card {
		border-radius: var(--radius-lg);
		background: var(--bg-elevated);
		box-shadow: 6px 4px 15px var(--shadow);
		padding: 1.4rem 1.4rem 1.35rem;
		border: 1px solid var(--text);
		position: relative;
		overflow: hidden;
    }
	
	.hero-card--hidden {
		display: none;
	}


    .hero-card-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
		margin-bottom: 0.9rem;
		gap: 0.75rem;
    }

    .hero-card-title {
		display: flex;
		flex-direction: column;
		gap: 0.2rem;
    }

    .hero-card-title strong {
		font-size: 0.95rem;
    }

    .hero-card-title span {
		font-size: 0.78rem;
		color: var(--text-soft);
	}

    .hero-card-chip {
		font-size: 0.78rem;
		padding: 0.35rem 0.75rem;
		border-radius: 999px;
		background: var(--accent-soft);
		color: var(--accent);
		border: 1px solid var(--accent);
		display: inline-flex;
		align-items: center;
		gap: 0.4rem;
    }

    .hero-card-chip-dot {
		width: 8px;
		height: 8px;
		border-radius: 999px;
		background: var(--accent);
    }

    .hero-progress {
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-wrap: wrap;
		gap: 0.75rem;
		margin-bottom: 1.1rem;
    }

    .hero-progress-label {
		font-size: 0.8rem;
		color: var(--text-soft);
    }

    .hero-progress-bar {
		flex: 1;
		height: 6px;
		border-radius: 999px;
		background: rgba(148,163,184,0.32);
		overflow: hidden;
		position: relative;
    }

    .hero-progress-fill {
		width: 100%;
		height: 100%;
		border-radius: inherit;
		background: linear-gradient(90deg, var(--primary), var(--accent));
		box-shadow: 0 0 18px rgba(37,99,235,0.8);
    }

    .hero-steps {
		display: grid;
		grid-template-columns: repeat(3, minmax(0,1fr));
		gap: 0.5rem;
		margin-bottom: 1.4rem;
		font-size: 0.78rem;
    }

    .hero-step {
		background: var(--accent-soft);
		border-radius: 1rem;
		padding: 0.6rem 0.6rem 0.55rem;
		border: 1px solid rgba(148,163,184,0.2);
		display: flex;
		flex-direction: column;
		gap: 0.2rem;
    }

    .hero-step-index {
		font-size: 0.7rem;
		font-weight: 600;
		color: var(--primary-strong);
		text-transform: uppercase;
		letter-spacing: 0.08em;
    }

    .hero-step strong {
		font-size: 0.78rem;
    }

    .hero-price-row {
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
		gap: 0.75rem;
		font-size: 0.9rem;
		padding-top: 1rem;
		border-top: 1px dashed rgba(148,163,184,0.5);
    }

    .hero-price-main {
		max-width: 70%;
		transform: translateY(-9px);
    }

    .hero-price-main strong {
		font-size: 1.05rem;
    }

    .hero-price-main span {
		font-size: 0.78rem;
		color: var(--text-soft);
    }

    /* Sections */
    section {
		margin-top: 4rem;
		margin-bottom: 3rem;
    }

	section.hero{
		margin-bottom: 1.5rem;
	}

    .section-header {
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
		flex-wrap: wrap;
		gap: 1rem;
		margin-bottom: 1.5rem;
    }

    .section-header h2 {
      font-size: 1.3rem;
      letter-spacing: -0.02em;
    }

    .section-header p {
      font-size: 0.9rem;
      color: var(--text-soft);
      max-width: 80rem;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 1.2rem;
    }

    .card {
      background: var(--bg-elevated);
      border-radius: var(--radius-md);
      border: 1px solid var(--border-subtle);
      padding: 1.1rem 1.1rem 1rem;
      box-shadow: 6px 4px 15px var(--shadow);
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      font-size: 0.9rem;
      position: relative;
      overflow: hidden;
    }

    .card-icon {
      width: 34px;
      height: 34px;
      border-radius: 999px;
      background: var(--primary-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      margin-bottom: 0.1rem;
    }

    .card h3 {
      font-size: 1rem;
      margin-bottom: 0.2rem;
    }

    .card p {
      color: var(--text-soft);
      font-size: 0.88rem;
    }

    .card-meta {
      margin-top: auto;
      font-size: 0.78rem;
      color: var(--text-soft);
      display: flex;
      align-items: center;
      gap: 0.3rem;
    }

    .dot-row {
      display: inline-flex;
      gap: 0.12rem;
    }

    .dot-row span {
      width: 3px;
      height: 3px;
      border-radius: 999px;
      background: rgba(148,163,184,0.9);
    }

    /* Produktkacheln */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap: 1rem;
    }

    .product-card {
      border-radius: 1.1rem;
      padding: 1rem;
      background:       
        var(--bg-elevated);
      border-color: rgba(148,163,184,0.6);
      display: flex;
      flex-direction: column;
      gap: 1rem;
      font-size: 0.88rem;
	  box-shadow: 6px 4px 15px var(--shadow);
    }

    .product-tag {
      font-size: 0.7rem;
      padding: 0.2rem 0.6rem;
      border-radius: 999px;
      background: rgba(15,23,42,0.9);
      color: #e5e7eb;
      display: inline-flex;
      width: fit-content;
    }

    .product-card h3 {
      font-size: 0.95rem;
    }

    .product-badge {
		border: none;
      margin-top: auto;
      font-size: 0.75rem;
      padding: 0.4rem 0.7rem;
      border-radius: 999px;
      background: 
		var(--accent-soft);
      color: var(--accent);
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
	  box-shadow: 6px 4px 10px rgba(17,50,129,0.5);
	  transition: transform 0.5s ease, box-shadow 0.5s ease, background 0.5s ease, color 0.1s ease;
    }
	
	.product-badge:hover {
		background: linear-gradient(135deg, var(--primary), var(--primary-strong));
      transform: translateY(-3px);
      box-shadow: 4px 3px 15px rgba(90,20,120,1);
	  color: white;
	}

    /* Bewertungen */
    .split-layout {
      display: grid;
      grid-template-columns: minmax(0,1.05fr) minmax(0,1.1fr);
      gap: 1.5rem;
    }

    .quote-card {
      border-radius: var(--radius-md);
      padding: 1.1rem 1.1rem 1rem;
      background: var(--bg-elevated);
      border: 1px solid var(--text);
      box-shadow: 6px 4px 15px var(--shadow);
      font-size: 0.92rem;
    }

    .quote-body {
      font-style: italic;
      margin-bottom: 0.9rem;
      color: var(--text);
    }

    .quote-author {
      font-size: 0.82rem;
      color: var(--text-soft);
    }

    .stars {
      display: inline-flex;
      gap: 0.1rem;
      font-size: 0.9rem;
      margin-bottom: 0.35rem;
      color: #facc15;
    }

	.multi-dropdown {
		position: relative;
		font-size: 0.85rem;
	}

	.multi-dropdown-toggle {
		display: flex;
		align-items: center;
		justify-content: space-between;
		border-radius: 0.75rem;
		border: 1px solid var(--border-subtle);
		background: var(--bg);
		padding: 0.5rem 0.6rem;
		cursor: pointer;
	}

	.multi-dropdown-toggle:focus-visible {
		outline: 2px solid var(--accent);
		outline-offset: 2px;
	}

	.multi-dropdown-arrow {
		font-size: 0.75rem;
		opacity: 0.7;
	}

	.multi-dropdown-menu {
		position: absolute;
		left: 0;
		right: 0;
		margin-top: 0.25rem;
		background: var(--bg);
		border-radius: 0.75rem;
		border: 1px solid var(--border-subtle);
		box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
		padding: 0.35rem 0;
		max-height: 200px;
		overflow-y: auto;
		display: none;
		z-index: 30;
	}

	.multi-dropdown.open .multi-dropdown-menu {
		display: block;
	}

	.multi-dropdown-option {
		display: flex;
		align-items: center;
		gap: 0.4rem;
		padding: 0.35rem 0.6rem;
		cursor: pointer;
		font-size: 0.85rem;
	}

	.multi-dropdown-option:hover {
		background: rgba(148, 163, 184, 0.12);
	}

	.multi-dropdown-option input[type="checkbox"] {
		width: 14px;
		height: 14px;
	}






    footer {
		margin-top: 3rem;
		padding-top: 1.6rem;
		border-top: 1px solid rgba(148,163,184,0.4);
		display: flex;
		flex-wrap: wrap;
		gap: 1rem;
		justify-content: space-between;
		font-size: 0.8rem;
		color: var(--text-soft);
    }

    footer a {
      color: inherit;
      text-decoration: none;
    }

    footer a:hover {
      text-decoration: underline;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
    }

    /* Responsive */
    @media (max-width: 960px) {
      .hero {
        grid-template-columns: minmax(0,1fr);
      }
	  
      .hero-card {
        order: -1;
      }
	  
      .features-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
      }
	  
      .products-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
      }

      header {
        flex-wrap: wrap;
      }
	  
      nav {
        display: none; /* Mobile Navigation könnte später als Burger-Menü umgesetzt werden */
      }
    }

    @media (max-width: 640px) {
      .shell {
        padding-inline: 1rem;
      }
      .features-grid,
      .products-grid {
        grid-template-columns: minmax(0,1fr);
      }
      .split-layout {
        grid-template-columns: minmax(0,1fr);
      }
      .hero-actions {
        flex-direction: column;
        align-items: stretch;
      }
    }

    @media (max-width: 960px) {
      .shell {
        padding: 1.25rem 1rem 3rem;
      }

      header {
        justify-content: center;
        margin-bottom: 1.75rem;
      }

      .brand {
        width: 100%;
        justify-content: center;
      }

      .brand > a:first-child img,
      .brand > a:last-child img {
        width: clamp(120px, 28vw, 180px);
      }

      nav {
        display: flex;
        width: 100%;
        justify-content: center;
        gap: 0.85rem 1.25rem;
        font-size: 1rem;
      }

      .header-actions {
        width: 100%;
        justify-content: center;
      }

      .hero {
        gap: 1.5rem;
      }

      .hero-subtitle,
      .section-header p,
      .hero-price-main {
        max-width: 100%;
      }

      .hero-price-main {
        transform: none;
      }
    }

    @media (max-width: 640px) {
      .shell {
        padding: 1rem 0.85rem 2.5rem;
      }

      header {
        gap: 1rem;
      }

      .brand {
        gap: 0.5rem;
      }

      .brand h1 {
        font-size: 1.2rem;
      }

      .brand > a:first-child img,
      .brand > a:last-child img {
        width: clamp(110px, 38vw, 150px);
      }

      nav {
        gap: 0.65rem 1rem;
        font-size: 0.95rem;
      }

      nav a {
        padding: 0.15rem 0;
      }

      .header-actions,
      .header-actions .btn,
      .btn {
        width: 100%;
      }

      .btn {
        justify-content: center;
        padding: 0.75rem 1.2rem;
        white-space: normal;
        text-align: center;
      }

      .hero {
        gap: 1.25rem;
        margin-bottom: 2rem;
      }

      .hero h1 {
        font-size: clamp(1.75rem, 9vw, 2.3rem);
      }

      .hero-subtitle {
        font-size: 0.92rem;
      }

      .hero-badges {
        gap: 0.5rem;
        margin-bottom: 1.1rem;
      }

      .badge {
        width: 100%;
        justify-content: center;
        text-align: center;
      }

      .hero-card,
      .card,
      .product-card,
      .quote-card {
        padding: 1rem;
      }

      .hero-steps {
        grid-template-columns: 1fr;
      }

      .hero-progress {
        align-items: stretch;
      }

      .hero-progress-bar {
        width: 100%;
      }

      .hero-price-row {
        justify-content: flex-start;
      }

      .funnel-form {
        font-size: 0.82rem;
      }

      .funnel-steps-wrapper {
        min-height: auto;
      }

      .funnel-nav {
        flex-direction: column;
      }

      .funnel-nav .btn {
        width: 100%;
      }

      footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .footer-links {
        justify-content: center;
      }
    }

    .landing-hero {
      display: block;
      margin-top: 0;
      margin-bottom: 2.5rem;
      padding: 0;
    }

    .landing-main {
      text-align: center;
    }

    .landing-hero > div {
      max-width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .landing-hero h1 {
      width: 100%;
      text-align: center;
      margin-inline: auto;
    }

    .landing-hero .hero-badges {
      justify-content: center;
    }

    .landing-hero .hero-subtitle {
      max-width: 80%;
      margin-inline: auto;
      text-align: center;
    }

    .landing-selection {
      margin-top: 0;
    }

    .landing-selection .section-header {
      justify-content: center;
      text-align: center;
    }

    .landing-selection .section-header p {
      margin-inline: auto;
    }

    .landing-selection-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-selection-grid .card {
      min-height: 100%;
      justify-content: space-between;
      text-align: center;
      align-items: center;
    }

    .landing-selection-grid .hero-actions {
      display: flex;
      justify-content: center;
      align-items: center;
      width: fit-content;
      margin-inline: auto;
    }

    .landing-selection-grid .hero-actions .btn {
      margin-inline: 0;
    }

    .landing-selection-grid .card p {
      max-width: 32rem;
    }

    @media (max-width: 960px) {
      .landing-hero {
        padding: 1.75rem 1.5rem;
      }
    }

    @media (max-width: 640px) {
      .landing-hero {
        padding: 1.25rem 1rem;
      }

      .landing-selection-grid {
        grid-template-columns: 1fr;
      }
    }
