/**
 * Vertragsvorlagen — Main stylesheet
 * Variant A · Klassisch & Vertrauensvoll
 *
 *   1. Tokens
 *   2. Reset & base typography
 *   3. Layout primitives
 *   4. Header / footer
 *   5. Buttons & form controls
 *   6. Cards & generic components
 *   7. Page sections (hero, grid, how, usp, testimonials, faq)
 *   8. Single vertrag (product page)
 *   9. Konfigurator (wizard shell)
 *  10. 404 / search / archive
 *  11. Utilities & a11y
 *  12. Responsive
 */

/* ─────────────────────────────────────────────────────────
   1. TOKENS
   ───────────────────────────────────────────────────────── */
:root {
	--vv-navy:        #0f1e3d;
	--vv-navy-light:  #1d3158;
	--vv-ink:         #1a1a1a;
	--vv-beige:       #f5f0e8;
	--vv-paper:       #fbf9f5;
	--vv-white:       #ffffff;
	--vv-gold:        #b8924a;
	--vv-gold-soft:   #c9a961;
	--vv-border:      #e6dfd2;
	--vv-muted:       #6b6258;
	--vv-success:     #2f7a4d;
	--vv-error:       #b3261e;

	--vv-radius-sm:   3px;
	--vv-radius:      5px;
	--vv-radius-lg:   8px;

	--vv-shadow-sm:   0 1px 2px rgba(15,30,61,0.06);
	--vv-shadow:      0 8px 32px rgba(15,30,61,0.06);
	--vv-shadow-lg:   0 24px 64px rgba(15,30,61,0.12);

	--vv-font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
	--vv-font-display: 'Fraunces', Georgia, 'Times New Roman', serif;

	--vv-container:   1180px;
	--vv-gutter:      56px;

	--vv-step-1:    .8125rem;
	--vv-step-2:    .9375rem;
	--vv-step-3:    1.0625rem;
	--vv-step-4:    1.25rem;
	--vv-step-5:    1.5rem;
	--vv-step-6:    2rem;
	--vv-step-7:    2.5rem;
	--vv-step-8:    3.25rem;
	--vv-step-9:    4rem;
}

/* ─────────────────────────────────────────────────────────
   2. RESET & BASE
   ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--vv-font-body);
	font-size: var(--vv-step-2);
	line-height: 1.6;
	color: var(--vv-ink);
	background: var(--vv-paper);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

a { color: var(--vv-navy); text-underline-offset: 3px; }
a:hover { color: var(--vv-gold); }

h1, h2, h3, h4 {
	font-family: var(--vv-font-display);
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1.1;
	color: var(--vv-navy);
	margin: 0 0 .6em;
	text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 1.5rem + 3vw, 4rem); }
h2 { font-size: clamp(1.75rem, 1rem + 2.2vw, 2.5rem); }
h3 { font-size: var(--vv-step-5); }
h4 { font-size: var(--vv-step-4); }

p { margin: 0 0 1em; text-wrap: pretty; }

::selection { background: var(--vv-gold-soft); color: var(--vv-navy); }

/* ─────────────────────────────────────────────────────────
   3. LAYOUT PRIMITIVES
   ───────────────────────────────────────────────────────── */
.vv-container {
	width: 100%;
	max-width: calc(var(--vv-container) + var(--vv-gutter) * 2);
	margin: 0 auto;
	padding: 0 var(--vv-gutter);
}
.vv-section { padding: clamp(48px, 4vw + 32px, 88px) 0; }
.vv-section--beige { background: var(--vv-beige); border-block: 1px solid var(--vv-border); }
.vv-section--alt   { background: var(--vv-beige); }
.vv-section--navy  { background: var(--vv-navy); color: var(--vv-paper); }
.vv-section--narrow > .vv-container { max-width: 820px; }

.vv-eyebrow {
	font-size: .75rem;
	color: var(--vv-gold);
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	margin-bottom: 12px;
	display: block;
}
.vv-rule {
	width: 32px; height: 1px; background: var(--vv-gold);
	border: 0; margin: 0 0 18px;
}

.vv-grid { display: grid; gap: 16px; }
.vv-grid--4 { grid-template-columns: repeat(4, 1fr); }
.vv-grid--3 { grid-template-columns: repeat(3, 1fr); }
.vv-grid--2 { grid-template-columns: repeat(2, 1fr); }

/* ─────────────────────────────────────────────────────────
   4. HEADER / FOOTER
   ───────────────────────────────────────────────────────── */
.vv-header {
	position: sticky; top: 0; z-index: 50;
	background: var(--vv-paper);
	border-bottom: 1px solid var(--vv-border);
}
.vv-header__inner {
	display: flex; align-items: center;
	gap: 48px; min-height: 76px;
	padding: 14px var(--vv-gutter);
}
.vv-header__brand { flex-shrink: 0; }
.vv-header__actions {
	margin-left: auto;
	display: flex; gap: 12px; align-items: center;
}
.vv-logo__text { font-family: var(--vv-font-display); }
.vv-logo__tld { color: var(--vv-gold); }
.vv-logo {
	display: inline-flex; align-items: center; gap: 10px;
	font-family: var(--vv-font-display);
	font-size: 1.375rem; font-weight: 600;
	color: var(--vv-navy);
	letter-spacing: -.01em; text-decoration: none;
}
.vv-logo__mark {
	width: 32px; height: 32px; border-radius: 6px;
	background: var(--vv-navy); color: var(--vv-gold-soft);
	display: inline-flex; align-items: center; justify-content: center;
	font-family: var(--vv-font-body); font-weight: 700; font-size: .9375rem;
}
.vv-logo__suffix { color: var(--vv-gold); }

.vv-nav { font-size: .875rem; font-weight: 500; }
.vv-nav ul,
.vv-nav__list {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
	display: flex;
	gap: 32px;
	align-items: center;
}
.vv-nav li { margin: 0; }
.vv-nav li::marker,
.vv-nav__list li::marker { content: ''; }
.vv-nav a { color: var(--vv-ink); text-decoration: none; }
.vv-nav a:hover { color: var(--vv-gold); }
.vv-nav__toggle {
	display: none;
	background: transparent; border: 1px solid var(--vv-border);
	border-radius: var(--vv-radius); padding: 8px 12px;
	font-size: 1rem; cursor: pointer; color: var(--vv-navy);
}
@media (max-width: 900px) {
	.vv-nav { display: none; }
	.vv-nav__toggle { display: inline-flex; }
}

.vv-header__cta { margin-left: auto; display: flex; gap: 12px; align-items: center; font-size: .875rem; }
.vv-header__cta a { color: var(--vv-muted); text-decoration: none; }

.vv-footer {
	background: var(--vv-navy); color: #bfc8d6;
	padding: 64px 0 32px; margin-top: 80px;
}
.vv-footer__cols {
	display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 48px;
}
.vv-footer__brand .vv-logo { color: var(--vv-paper); }
.vv-footer__brand .vv-logo__suffix { color: var(--vv-gold-soft); }
.vv-footer__about { font-size: .8125rem; line-height: 1.7; opacity: .75; max-width: 320px; }
.vv-footer h4 {
	color: var(--vv-paper); font-size: .8125rem; font-weight: 600;
	letter-spacing: .04em; text-transform: uppercase; margin-bottom: 14px;
	font-family: var(--vv-font-body);
}
.vv-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; font-size: .875rem; }
.vv-footer ul a { color: inherit; text-decoration: none; opacity: .75; }
.vv-footer ul a:hover { opacity: 1; color: var(--vv-gold-soft); }
.vv-footer__bottom {
	margin-top: 48px; padding-top: 24px;
	border-top: 1px solid rgba(255,255,255,.1);
	display: flex; justify-content: space-between;
	font-size: .75rem; opacity: .6;
}

/* ─────────────────────────────────────────────────────────
   5. BUTTONS
   ───────────────────────────────────────────────────────── */
.vv-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 13px 24px; border-radius: var(--vv-radius);
	font: 600 .875rem/1 var(--vv-font-body);
	border: 1px solid transparent; cursor: pointer; text-decoration: none;
	transition: background .15s, color .15s, border-color .15s, transform .05s;
}
.vv-btn:active { transform: translateY(1px); }
.vv-btn--primary    { background: var(--vv-navy); color: var(--vv-paper); }
.vv-btn--primary:hover { background: var(--vv-navy-light); color: var(--vv-paper); }
.vv-btn--secondary  { background: transparent; color: var(--vv-navy); border-color: var(--vv-navy); }
.vv-btn--secondary:hover { background: var(--vv-navy); color: var(--vv-paper); }
.vv-btn--ghost      { background: transparent; color: var(--vv-navy); border-color: var(--vv-border); }
.vv-btn--ghost:hover { background: var(--vv-beige); }
.vv-btn--lg { padding: 16px 32px; font-size: .9375rem; }

/* ─────────────────────────────────────────────────────────
   6. CARDS
   ───────────────────────────────────────────────────────── */
.vv-card {
	background: var(--vv-paper);
	border: 1px solid var(--vv-border);
	border-radius: var(--vv-radius-lg);
	padding: 24px 22px;
	display: flex; flex-direction: column;
	text-decoration: none;
	color: inherit;
	transition: border-color .15s, transform .15s, box-shadow .15s;
}
.vv-card,
.vv-card * { text-decoration: none; }
.vv-card:hover { border-color: var(--vv-navy); transform: translateY(-2px); box-shadow: var(--vv-shadow); }
.vv-card__icon {
	width: 40px; height: 40px; border-radius: 6px;
	background: var(--vv-beige); color: var(--vv-navy);
	display: flex; align-items: center; justify-content: center;
	font-family: var(--vv-font-display); font-weight: 600; font-size: 1.25rem;
	margin-bottom: 14px;
}
.vv-card__title  { font-weight: 600; font-size: 1rem; color: var(--vv-navy); margin: 0 0 6px; font-family: var(--vv-font-body); letter-spacing: 0; }
.vv-card__desc   { font-size: .8125rem; color: var(--vv-muted); flex: 1; line-height: 1.55; margin: 0; }
.vv-card__foot {
	display: flex; align-items: center; justify-content: space-between;
	margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--vv-border);
}
.vv-card__price { font-family: var(--vv-font-display); font-size: 1.125rem; color: var(--vv-navy); font-weight: 600; text-decoration: none; }
.vv-card__cta   { font-size: .75rem; color: var(--vv-gold); font-weight: 600; text-decoration: none; }
.vv-card:hover .vv-card__cta { text-decoration: underline; text-underline-offset: 3px; }

/* ─────────────────────────────────────────────────────────
   7. PAGE SECTIONS
   ───────────────────────────────────────────────────────── */

/* Hero */
.vv-hero { background: var(--vv-beige); padding: 88px 0 96px; border-bottom: 1px solid var(--vv-border); text-align: center; }
.vv-hero__inner { max-width: 880px; margin: 0 auto; }
.vv-hero__badge {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 6px 14px; border-radius: 100px;
	background: var(--vv-paper); border: 1px solid var(--vv-border);
	font-size: .75rem; color: var(--vv-muted); font-weight: 500;
	margin-bottom: 28px;
}
.vv-hero__badge-dot { width: 6px; height: 6px; border-radius: 99px; background: var(--vv-gold); }
.vv-hero h1 em,
.vv-hero__title em {
	font-family: 'Fraunces', Georgia, serif !important;
	font-style: italic !important;
	font-weight: 400;
	color: var(--vv-gold);
}
.vv-hero__lede { font-size: 1.125rem; color: var(--vv-muted); max-width: 620px; margin: 0 auto 36px; }
.vv-hero__search {
	background: var(--vv-paper); border: 1px solid var(--vv-border);
	border-radius: var(--vv-radius-lg); padding: 6px;
	display: flex; align-items: center;
	box-shadow: var(--vv-shadow);
	max-width: 560px; margin: 0 auto;
}
.vv-hero__search input {
	flex: 1; border: 0; outline: 0; background: transparent;
	padding: 14px 0; font: inherit; font-size: .9375rem;
}
.vv-hero__search button {
	background: var(--vv-navy); color: var(--vv-paper);
	border: 0; padding: 14px 26px; border-radius: var(--vv-radius);
	font: 600 .875rem/1 var(--vv-font-body); cursor: pointer;
}
.vv-hero__icon { padding: 0 14px; color: var(--vv-muted); font-size: 1.125rem; }
.vv-trust {
	display: flex; gap: 36px; justify-content: center; flex-wrap: wrap;
	margin-top: 44px; font-size: .75rem; color: var(--vv-muted);
}
.vv-trust span { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; }
.vv-trust .vv-check { color: var(--vv-gold); font-size: .875rem; }

/* Markup-compat layer: front-page.php uses .vv-search and .vv-trust__check
   classes — these alias them onto the visual rules above. */
ul.vv-trust {
	list-style: none !important; padding-left: 0 !important;
	margin: 44px 0 0 !important;
	display: flex; gap: 36px; justify-content: center; flex-wrap: wrap;
	font-size: .75rem; color: var(--vv-muted);
}
ul.vv-trust li {
	display: inline-flex; align-items: center; gap: 8px;
	font-weight: 500;
}
ul.vv-trust li::marker,
ul.vv-trust li::before { content: ''; display: none; }
.vv-trust__check {
	color: var(--vv-gold); font-size: .875rem; font-weight: 700;
	background: none; width: auto; height: auto;
	border-radius: 0; display: inline-block;
}

form.vv-search {
	display: flex !important; align-items: center;
	background: var(--vv-paper); border: 1px solid var(--vv-border);
	border-radius: 8px; padding: 6px;
	max-width: 560px; margin: 0 auto; box-shadow: var(--vv-shadow);
	gap: 0;
}
form.vv-search input[type="search"] {
	flex: 1; border: 0; outline: 0; background: transparent;
	padding: 14px 0; font: inherit; font-size: .9375rem;
}
form.vv-search .vv-search__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: auto; padding: 0 14px; color: var(--vv-muted); font-size: 1.125rem;
	background: none; flex-shrink: 0;
}
form.vv-search .vv-btn--primary { padding: 14px 26px; border-radius: 5px; }

/* ─── Markup-compat shim (BEM aliases used by template-parts) ─── */
.vv-section { padding: 88px 0; }
.vv-section + .vv-section { border-top: 1px solid var(--vv-border); }
.vv-section--dark {
	background: var(--vv-navy); color: var(--vv-paper);
}
.vv-section--dark .vv-quote blockquote,
.vv-section--dark p { color: #e8e0d0; }

.vv-eyebrow {
	display: inline-block;
	padding: 0;
	border-radius: 0;
	background: transparent;
	border: 0;
	font-size: .75rem;
	color: var(--vv-gold);
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	margin-bottom: 12px;
}

/* Hero variant — pill with dot */
.vv-hero .vv-eyebrow {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 6px 14px; border-radius: 100px;
	background: var(--vv-paper); border: 1px solid var(--vv-border);
	font-size: .75rem; font-weight: 500;
	letter-spacing: .04em; text-transform: none;
	color: var(--vv-muted); margin-bottom: 28px;
}
.vv-eyebrow__dot {
	display: inline-block; width: 6px; height: 6px; border-radius: 50%;
	background: var(--vv-gold); flex-shrink: 0;
}

.vv-display {
	font-family: var(--vv-font-display);
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 500; line-height: 1.1; color: var(--vv-navy);
	letter-spacing: -.01em; margin: 0 0 14px;
}
.vv-hero__title { font-size: clamp(2.5rem, 5.5vw, 4.25rem); }
.vv-hero__lead { font-size: 1.125rem; color: var(--vv-muted); max-width: 620px; margin: 0 auto 36px; line-height: 1.55; }

.vv-section__head {
	margin-bottom: 48px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}
.vv-section__head > div { flex: 1 1 auto; }
.vv-section__head--center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; display: block; }

.vv-link-arrow {
	display: inline-flex; align-items: center; gap: 6px;
	color: var(--vv-navy);
	font-size: .875rem;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 4px;
	flex-shrink: 0;
}
.vv-link-arrow:hover { color: var(--vv-gold); }
.vv-section__title { margin-bottom: 14px; }
.vv-section__lead { font-size: 1.0625rem; color: var(--vv-muted); line-height: 1.6; max-width: 640px; }

/* USPs — two-col split, right side is 2x2 card grid */
.vv-usps {
	display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: start;
}
.vv-usps__grid {
	display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.vv-usps .vv-usp {
	display: block; padding: 28px 26px;
	background: var(--vv-paper); border: 1px solid var(--vv-border);
	border-radius: var(--vv-radius); box-shadow: var(--vv-shadow);
}
.vv-usps .vv-usp__check {
	width: 32px; height: 32px; border-radius: 50%;
	background: var(--vv-gold); color: #fff;
	display: inline-grid; place-items: center;
	font-size: .8125rem; font-weight: 700; margin-bottom: 16px;
}

/* Testimonials (.vv-quote markup, lives inside .vv-section--dark) */
.vv-quote {
	margin: 0; padding: 32px 28px;
	background: rgba(255,255,255,.03);
	border: 1px solid rgba(255,255,255,.1);
	border-radius: var(--vv-radius);
}
.vv-quote__mark {
	font-family: var(--vv-font-display);
	font-size: 3.5rem; line-height: .4; color: var(--vv-gold-soft);
	margin-bottom: 14px;
}
.vv-quote blockquote {
	font-size: .9375rem; line-height: 1.65; margin: 0 0 24px;
	color: #e8e0d0; quotes: none;
}
.vv-quote blockquote::before, .vv-quote blockquote::after { content: none; }
.vv-quote figcaption { padding-top: 18px; border-top: 1px solid rgba(255,255,255,.15); }
.vv-quote__name { font-weight: 600; font-size: .875rem; color: #fff; }
.vv-quote__role { font-size: .75rem; color: var(--vv-gold-soft); margin-top: 2px; }

/* FAQ — template uses .vv-faq__list / .vv-faq__answer + summary (no <span class="vv-faq__q">) */
.vv-faq { max-width: 760px; margin: 0 auto; }
.vv-faq__list { display: flex; flex-direction: column; }
.vv-faq__item {
	border: 1px solid var(--vv-border);
	border-radius: var(--vv-radius);
	background: var(--vv-white);
	padding: 0; margin-bottom: 12px;
	box-shadow: 0 1px 0 rgba(11,18,32,.02);
}
.vv-faq__item > summary {
	list-style: none; cursor: pointer;
	display: flex; align-items: center; justify-content: space-between;
	padding: 22px 26px;
	font-family: var(--vv-font-display);
	font-weight: 600; font-size: 1.0625rem; color: var(--vv-navy);
}
.vv-faq__item > summary::-webkit-details-marker { display: none; }
.vv-faq__item > summary::marker { content: ''; }
.vv-faq__icon {
	width: 16px; height: 16px; flex-shrink: 0; position: relative;
}
.vv-faq__icon::before, .vv-faq__icon::after {
	content: ''; position: absolute; background: var(--vv-gold);
	transition: transform .2s ease;
}
.vv-faq__icon::before { left: 0; right: 0; top: 50%; height: 2px; margin-top: -1px; }
.vv-faq__icon::after  { top: 0; bottom: 0; left: 50%; width: 2px; margin-left: -1px; }
.vv-faq__item[open] .vv-faq__icon::after { transform: scaleY(0); }
.vv-faq__answer {
	padding: 0 26px 24px;
	font-size: .9375rem; color: var(--vv-muted); line-height: 1.65;
}

/* Footer — template uses .vv-footer__inner (not __cols) */
.vv-footer { background: var(--vv-navy); color: var(--vv-paper); padding: 64px 0 28px; margin-top: 80px; }
.vv-footer__inner {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 48px;
}
.vv-footer__brand .vv-footer__logo {
	font-family: var(--vv-font-display); font-size: 1.25rem;
	font-weight: 600; color: #fff;
}
.vv-footer__tld { color: var(--vv-gold); }
.vv-footer__logo .vv-logo__mark { display: none; }
.vv-footer__tagline { font-size: .875rem; color: rgba(255,255,255,.6); margin-top: 14px; line-height: 1.6; max-width: 320px; }
.vv-footer__heading {
	font-size: .85rem; font-weight: 700; letter-spacing: .12em;
	text-transform: uppercase; color: #fff;
	margin-bottom: 18px;
}
.vv-footer__list, .vv-footer .menu, .vv-footer ul {
	list-style: none; padding: 0; margin: 0;
	display: flex; flex-direction: column; gap: 10px;
}
.vv-footer__list a, .vv-footer .menu a {
	color: rgba(255,255,255,.75); text-decoration: none; font-size: .875rem;
}
.vv-footer__list a:hover { color: #fff; }
.vv-footer__bottom {
	display: flex; justify-content: space-between; align-items: center;
	padding-top: 24px; font-size: .8125rem; color: rgba(255,255,255,.55); flex-wrap: wrap; gap: 12px;
}

/* "How it works" template uses .vv-step / .vv-step__num */
.vv-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.vv-step {
	background: var(--vv-paper);
	border: 1px solid var(--vv-border);
	border-radius: 6px;
	padding: 32px 28px;
}
.vv-step__num {
	font-family: var(--vv-font-display);
	font-size: 48px;
	font-weight: 500;
	color: var(--vv-gold);
	line-height: 1;
	margin-bottom: 18px;
	font-style: normal;
	letter-spacing: 0;
}
.vv-step__title {
	font-family: var(--vv-font-body);
	font-size: 19px;
	font-weight: 600;
	color: var(--vv-navy);
	margin: 0 0 8px;
	letter-spacing: 0;
}
.vv-step__desc {
	font-size: 14px;
	color: var(--vv-muted);
	line-height: 1.6;
	margin: 0;
}
.vv-section__head--center { text-align: center; margin-bottom: 56px; }
.vv-section__head--center .vv-eyebrow { display: block; }
.vv-section__title { font-family: var(--vv-font-display); font-size: 2rem; font-weight: 500; color: var(--vv-navy); margin: 0; letter-spacing: -0.02em; line-height: 1.1; }

@media (max-width: 960px) {
	.vv-usps, .vv-footer__inner { grid-template-columns: 1fr; gap: 32px; }
	.vv-usps__grid, .vv-steps { grid-template-columns: 1fr; }
}

/* Section heading row */
.vv-section-head {
	display: flex; align-items: flex-end; justify-content: space-between;
	margin-bottom: 40px; gap: 24px;
}
.vv-section-head h2 { margin: 0; }
.vv-link {
	color: var(--vv-navy); font-size: .875rem; font-weight: 600;
	text-decoration: underline; text-underline-offset: 4px;
}

/* How it works */
.vv-how__num {
	font-family: var(--vv-font-display); font-size: 3rem;
	color: var(--vv-gold); line-height: 1; margin-bottom: 18px; font-weight: 500;
}
.vv-how .vv-card { padding: 32px 28px; }

/* USPs split */
.vv-usp { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.vv-usp__list { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.vv-usp__check {
	width: 28px; height: 28px; border-radius: 4px;
	background: var(--vv-navy); color: var(--vv-gold-soft);
	display: flex; align-items: center; justify-content: center;
	font-weight: 700; font-size: .875rem; margin-bottom: 12px;
}
.vv-usp__title { font-weight: 600; font-size: .9375rem; color: var(--vv-navy); margin: 0 0 6px; font-family: var(--vv-font-body); letter-spacing: 0; }
.vv-usp__desc  { font-size: .8125rem; color: var(--vv-muted); line-height: 1.55; margin: 0; }

/* Testimonials */
.vv-testimonials { background: var(--vv-navy); color: var(--vv-paper); padding: 80px 0; }
.vv-testimonials .vv-grid--3 { gap: 36px; }
.vv-testimonial__quote { color: var(--vv-gold-soft); font-family: var(--vv-font-display); font-size: 3rem; line-height: .5; margin-bottom: 18px; }
.vv-testimonial p { font-size: .9375rem; color: #e8e0d0; line-height: 1.65; margin: 0 0 24px; }
.vv-testimonial__author { padding-top: 18px; border-top: 1px solid rgba(255,255,255,.15); }
.vv-testimonial__name { font-weight: 600; font-size: .875rem; }
.vv-testimonial__role { font-size: .75rem; color: var(--vv-gold-soft); }

/* FAQ */
.vv-faq__item { border-bottom: 1px solid var(--vv-border); padding: 22px 0; }
.vv-faq__q {
	display: flex; justify-content: space-between; align-items: center;
	font-family: var(--vv-font-display); font-weight: 600; font-size: 1rem; color: var(--vv-navy);
	cursor: pointer; list-style: none;
}
.vv-faq__q::-webkit-details-marker { display: none; }
.vv-faq__q::after { content: "+"; color: var(--vv-muted); font-size: 1.125rem; font-family: var(--vv-font-body); }
.vv-faq__item[open] .vv-faq__q::after { content: "−"; color: var(--vv-gold); }
.vv-faq__a { font-size: .875rem; color: var(--vv-muted); line-height: 1.65; padding: 12px 32px 0 0; margin: 0; }

/* ─────────────────────────────────────────────────────────
   8. SINGLE VERTRAG (PRODUCT)
   ───────────────────────────────────────────────────────── */
.vv-breadcrumb { padding: 20px 0; font-size: .8125rem; color: var(--vv-muted); }
.vv-breadcrumb a { color: inherit; text-decoration: none; }
.vv-breadcrumb [aria-current] { color: var(--vv-navy); font-weight: 500; }
.vv-breadcrumb .sep { margin: 0 8px; }

.vv-product { padding: 0 0 72px; }
.vv-product__hero { padding: 32px 0 72px; }
.vv-product__hero-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 64px;
	align-items: start;
}
.vv-product__intro { min-width: 0; }
.vv-product__cat {
	display: inline-block; padding: 4px 12px;
	background: var(--vv-beige); color: var(--vv-gold);
	font-size: .75rem; font-weight: 600; border-radius: 100px;
	margin-bottom: 20px; letter-spacing: .05em;
}
.vv-product__title { font-size: 3.5rem; line-height: 1.05; margin: 0 0 20px; color: var(--vv-navy); }
.vv-product__lead { font-size: 1.125rem; color: var(--vv-muted); line-height: 1.6; margin: 0 0 32px; max-width: 60ch; }
.vv-product__lead p { margin: 0 0 1em; }
.vv-product__lead p:last-child { margin-bottom: 0; }
.vv-product__cta { display: flex; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.vv-product__stats {
	display: grid; grid-template-columns: repeat(3, 1fr);
	gap: 24px; padding-top: 28px; margin: 0;
	border-top: 1px solid var(--vv-border);
}
.vv-product__stats > div { margin: 0; }
.vv-product__stats dt {
	font-size: .8125rem; color: var(--vv-muted);
	font-weight: 400; letter-spacing: 0; text-transform: none;
	order: 2; margin-top: 4px;
}
.vv-product__stats dd {
	font-family: var(--vv-font-display); font-size: 1.75rem;
	color: var(--vv-navy); font-weight: 600;
	margin: 0; order: 1;
}
.vv-product__stats > div { display: flex; flex-direction: column; }
.vv-product__stats dd small {
	display: block;
	font-family: var(--vv-font-body); font-size: .75rem;
	color: var(--vv-muted); font-weight: 400; margin-top: 2px;
}

.vv-product__preview { position: relative; min-width: 0; }
.vv-product__thumb {
	width: 100%; height: auto; display: block;
	border: 1px solid var(--vv-border);
	box-shadow: var(--vv-shadow-lg);
	border-radius: var(--vv-radius-sm);
}
.vv-product__badge {
	position: absolute; top: 16px; right: 16px;
	padding: 6px 12px; background: var(--vv-gold); color: var(--vv-paper);
	font-size: .6875rem; font-weight: 700; border-radius: 2px;
	letter-spacing: .12em;
}

.vv-doc {
	background: var(--vv-white); border: 1px solid var(--vv-border);
	box-shadow: var(--vv-shadow-lg); padding: 40px 36px;
	font-size: .6875rem; line-height: 1.55; color: #222;
	border-radius: var(--vv-radius-sm); position: relative;
}
.vv-doc__head { text-align: center; padding-bottom: 16px; border-bottom: 1px solid var(--vv-border); margin-bottom: 24px; }
.vv-doc__title { font-family: var(--vv-font-display); font-size: 1.25rem; font-weight: 600; color: var(--vv-navy); }
.vv-doc__sub { font-size: .625rem; color: var(--vv-muted); margin-top: 4px; }
.vv-doc__section { margin-bottom: 14px; }
.vv-doc__heading-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
}
.vv-doc__heading { font-weight: 600; color: var(--vv-navy); flex-shrink: 0; }
.vv-doc__heading-bar {
	height: 8px;
	background: var(--vv-navy);
	opacity: .5;
	border-radius: 1px;
	display: block;
}
.vv-doc__line { height: 6px; background: #e8e3d8; border-radius: 1px; margin-bottom: 4px; }
.vv-doc__line--short { width: 70%; }

.vv-features {
	list-style: none; padding: 0;
	display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px;
	max-width: 100%; margin: 0;
}
.vv-features__item {
	display: flex; gap: 12px; align-items: flex-start;
	padding: 16px 0; background: transparent;
	border: 0; border-bottom: 1px solid var(--vv-border); border-radius: 0;
	font-size: .9375rem; color: var(--vv-ink); line-height: 1.5;
}
.vv-features__item span { color: var(--vv-gold); font-weight: 700; flex-shrink: 0; }
.vv-features__item:last-child { border-bottom: 0; }
.vv-features__item:nth-last-child(2):nth-child(odd) { border-bottom: 0; }
.vv-feature {
	display: flex; gap: 14px; align-items: flex-start;
	padding: 16px 20px; background: var(--vv-paper);
	border: 1px solid var(--vv-border); border-radius: var(--vv-radius-sm);
	font-size: .875rem;
}
.vv-feature .vv-check { color: var(--vv-gold); font-weight: 700; font-size: 1rem; }

.vv-included { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.vv-included li { display: flex; gap: 12px; font-size: .9375rem; }
.vv-included .vv-check { color: var(--vv-gold); }

.vv-callout {
	background: var(--vv-beige); border: 1px solid var(--vv-border);
	border-left: 3px solid var(--vv-gold);
	border-radius: var(--vv-radius); padding: 20px 24px;
}
.vv-callout strong { font-family: var(--vv-font-display); font-size: 1.0625rem; color: var(--vv-navy); display: block; margin-bottom: 8px; font-weight: 600; }
.vv-callout p { font-size: .875rem; color: var(--vv-muted); margin: 0; line-height: 1.65; }

.vv-product__bundle {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 56px;
	align-items: start;
}
.vv-product__bundle-title { font-size: 1.5rem; color: var(--vv-navy); margin: 0; line-height: 1.2; }
.vv-product__bundle-col--narrow {
	background: var(--vv-paper);
	border: 1px solid var(--vv-border);
	border-radius: var(--vv-radius-sm);
	padding: 28px 32px;
	box-shadow: 0 2px 8px rgba(15,30,61,.04);
}
.vv-product__bundle-col--narrow .vv-product__bundle-title {
	font-size: 1.25rem; margin: 0;
	padding-bottom: 14px; border-bottom: 1px solid var(--vv-border);
}
.vv-product__bundle-col--narrow .vv-included__list { gap: 14px; }
.vv-product__bundle-col--narrow .vv-included__list li { font-size: .9375rem; }
.vv-included__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.vv-included__list--grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 32px; }
.vv-included__list li { display: flex; gap: 12px; font-size: .9375rem; color: var(--vv-ink); line-height: 1.5; }
.vv-included__list li span { color: var(--vv-gold); font-weight: 700; flex-shrink: 0; }

/* Ratgeber section */
.vv-ratgeber__grid {
	display: grid;
	grid-template-columns: 1fr 1.6fr;
	gap: 64px;
	align-items: start;
}
.vv-ratgeber__intro { position: sticky; top: 100px; }
.vv-ratgeber__title { font-size: 1.5rem; color: var(--vv-navy); margin: 8px 0 16px; line-height: 1.15; }
.vv-ratgeber__lede { font-size: 1rem; color: var(--vv-muted); line-height: 1.6; margin: 0; }
.vv-ratgeber__body { max-width: none; }

/* FAQ */
.vv-faq-wrap { max-width: 760px; }
.vv-faq { display: flex; flex-direction: column; }
.vv-faq__item { border-bottom: 1px solid var(--vv-border); padding: 24px 0; }
.vv-faq__item[open] .vv-faq__q::after { transform: rotate(45deg); }
.vv-faq__q {
	font-family: var(--vv-font-display);
	font-weight: 600; font-size: 1rem;
	color: var(--vv-navy);
	cursor: pointer; list-style: none;
	display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.vv-faq__q::-webkit-details-marker { display: none; }
.vv-faq__q::after {
	content: '+'; font-family: var(--vv-font-body);
	font-size: 1.5rem; color: var(--vv-gold); font-weight: 300;
	transition: transform .2s ease;
	flex-shrink: 0;
}
.vv-faq__a { font-size: .9375rem; color: var(--vv-muted); line-height: 1.65; margin-top: 0; padding: 8px 48px 16px 0; }

/* CTA band at bottom of product page */
.vv-section--cta { background: var(--vv-beige); border-top: 1px solid var(--vv-border); }
.vv-cta-band {
	display: flex; align-items: center; justify-content: space-between;
	gap: 32px; flex-wrap: wrap;
}
.vv-cta-band h2 { font-size: 1.75rem; color: var(--vv-navy); margin: 0 0 8px; }
.vv-cta-band p { font-size: 1rem; color: var(--vv-muted); margin: 0; }

/* ─────────────────────────────────────────────────────────
   9. KONFIGURATOR (Wizard shell — wraps Gravity Form)
   ───────────────────────────────────────────────────────── */
.vv-konfigurator { padding-bottom: 80px; }
.vv-konfigurator__head {
	background: var(--vv-beige);
	padding: 40px 0 28px;
	border-bottom: 1px solid var(--vv-border);
}
.vv-konfigurator__title-row {
	display: flex; align-items: center; justify-content: space-between;
	margin-bottom: 24px; gap: 24px; flex-wrap: wrap;
}
.vv-konfigurator__title h1 {
	font-family: var(--vv-font-display);
	font-size: clamp(1.75rem, 2.4vw + 1rem, 2.25rem);
	font-weight: 500;
	color: var(--vv-navy);
	letter-spacing: -.02em;
	line-height: 1.1;
	margin: 0;
}
.vv-konfigurator__meta { text-align: right; font-size: .8125rem; color: var(--vv-muted); }
.vv-konfigurator__meta-step { margin-bottom: 4px; }
.vv-konfigurator__meta strong { display: block; color: var(--vv-navy); margin-top: 4px; font-weight: 600; }

.vv-konfigurator__body {
	padding: 48px 0;
	display: grid; grid-template-columns: 1fr 360px; gap: 56px;
}

/* Solo (no sidebar) — centered, narrower for readability. */
.vv-konfigurator__body--solo {
	grid-template-columns: 1fr;
	max-width: 820px;
	margin: 0 auto;
}

/* Stepper — lives in the konfigurator head; mirrors variant-a wizard exactly */
.vv-konfigurator__head .vv-stepper {
	display: flex; align-items: center;
	gap: 0;
	margin: 0;
	padding: 0;
	border: 0;
	overflow-x: auto;
}
.vv-konfigurator__head .vv-stepper__step {
	display: inline-flex; align-items: center; gap: 10px;
	flex-shrink: 0; flex: 0 0 auto;
}
.vv-konfigurator__head .vv-stepper__step--pending { opacity: .5; }
.vv-konfigurator__head .vv-stepper__num {
	width: 28px; height: 28px; border-radius: 99px;
	background: var(--vv-paper); border: 1px solid var(--vv-border);
	color: var(--vv-muted);
	display: inline-flex; align-items: center; justify-content: center;
	font: 700 .75rem/1 var(--vv-font-body);
	flex-shrink: 0;
}
.vv-konfigurator__head .vv-stepper__step--active .vv-stepper__num {
	background: var(--vv-navy); color: var(--vv-paper); border-color: var(--vv-navy);
}
.vv-konfigurator__head .vv-stepper__step--done .vv-stepper__num {
	background: var(--vv-gold); color: var(--vv-paper); border-color: var(--vv-gold);
}
.vv-konfigurator__head .vv-stepper__label {
	font-size: .8125rem; font-weight: 500; color: var(--vv-muted);
	line-height: 1.2; white-space: nowrap;
}
.vv-konfigurator__head .vv-stepper__step--active .vv-stepper__label {
	color: var(--vv-navy); font-weight: 600;
}
.vv-konfigurator__head .vv-stepper__sep {
	flex: 1 1 auto; min-width: 16px;
	height: 1px; background: var(--vv-border);
	margin: 0 12px;
	align-self: center;
}
.vv-konfigurator__head .vv-stepper__step--done + .vv-stepper__sep {
	background: var(--vv-gold);
}

/* Sidebar summary */
.vv-summary {
	background: var(--vv-paper); border: 1px solid var(--vv-border);
	border-radius: var(--vv-radius-lg); padding: 24px 26px;
	position: sticky; top: 100px;
}
.vv-summary__eyebrow { font-size: .6875rem; color: var(--vv-gold); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.vv-summary__title { font-family: var(--vv-font-display); font-size: 1.25rem; color: var(--vv-navy); font-weight: 600; margin-bottom: 20px; }
.vv-summary__rows { font-size: .8125rem; line-height: 2; padding-bottom: 16px; border-bottom: 1px solid var(--vv-border); }
.vv-summary__row { display: flex; justify-content: space-between; }
.vv-summary__row span:first-child { color: var(--vv-muted); }
.vv-summary__row span:last-child  { font-weight: 600; color: var(--vv-ink); }
.vv-summary__price {
	display: flex; justify-content: space-between; align-items: baseline;
	padding: 16px 0;
}
.vv-summary__price-value { font-family: var(--vv-font-display); font-size: 1.75rem; color: var(--vv-navy); font-weight: 600; }
.vv-summary__notice {
	margin-top: 12px; padding: 14px 16px; background: var(--vv-beige);
	border-radius: var(--vv-radius-sm); font-size: .75rem; color: var(--vv-muted);
	line-height: 1.55;
}
.vv-summary__notice strong { display: block; color: var(--vv-navy); margin-bottom: 4px; }

/* ─────────────────────────────────────────────────────────
   10. 404 / SEARCH / ARCHIVE
   ───────────────────────────────────────────────────────── */
.vv-404, .vv-search-empty {
	text-align: center; padding: 96px 0;
}
.vv-404__code {
	font-family: var(--vv-font-display); font-size: clamp(6rem, 18vw, 12rem);
	color: var(--vv-gold); line-height: .9; margin-bottom: 16px; font-weight: 400;
	font-style: italic;
}
.vv-404 h1 { margin-bottom: 12px; }
.vv-404 p { font-size: 1.0625rem; color: var(--vv-muted); max-width: 520px; margin: 0 auto 32px; }
.vv-404__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.vv-archive-head { padding: 56px 0 32px; border-bottom: 1px solid var(--vv-border); background: var(--vv-beige); }
.vv-archive-head h1 { margin: 0 0 8px; }
.vv-archive-head p  { color: var(--vv-muted); margin: 0; max-width: 640px; }

.vv-pagination {
	margin-top: 48px;
	display: flex; gap: 6px; justify-content: center;
	font-size: .875rem;
}
.vv-pagination a, .vv-pagination span {
	padding: 10px 14px; border: 1px solid var(--vv-border);
	border-radius: var(--vv-radius-sm); text-decoration: none; color: var(--vv-ink);
}
.vv-pagination .current { background: var(--vv-navy); color: var(--vv-paper); border-color: var(--vv-navy); }

.vv-post {
	max-width: 720px; margin: 0 auto; padding: 64px 0;
}
.vv-post__meta { font-size: .8125rem; color: var(--vv-muted); margin-bottom: 12px; }
.vv-post__content { font-size: 1.0625rem; line-height: 1.7; }
.vv-post__content > * + * { margin-top: 1em; }

/* ─────────────────────────────────────────────────────────
   11. UTILITIES & A11Y
   ───────────────────────────────────────────────────────── */
.screen-reader-text {
	border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
	height: 1px; width: 1px; margin: -1px; overflow: hidden;
	padding: 0; position: absolute !important; word-wrap: normal !important;
}
.skip-link,
.vv-skiplink {
	position: absolute !important; left: -9999px !important; top: 8px; z-index: 100;
	background: var(--vv-navy); color: var(--vv-paper);
	padding: 12px 20px; border-radius: var(--vv-radius); font-weight: 600;
	text-decoration: none;
}
.skip-link:focus,
.vv-skiplink:focus { left: 8px !important; }

:focus-visible { outline: 2px solid var(--vv-gold); outline-offset: 2px; border-radius: 2px; }

/* ─────────────────────────────────────────────────────────
   12. RESPONSIVE
   ───────────────────────────────────────────────────────── */
@media (max-width: 960px) {
	:root { --vv-gutter: 28px; }
	.vv-grid--4 { grid-template-columns: repeat(2, 1fr); }
	.vv-grid--3 { grid-template-columns: 1fr; }
	.vv-product__hero-grid,
	.vv-konfigurator__body,
	.vv-usp,
	.vv-section-head { grid-template-columns: 1fr; display: grid; }
	.vv-konfigurator__body { gap: 32px; }
	.vv-summary { position: static; }
	.vv-footer__cols { grid-template-columns: 1fr 1fr; }
	.vv-features { grid-template-columns: 1fr; }
	.vv-product__bundle { grid-template-columns: 1fr; gap: 40px; }
	.vv-ratgeber__grid { grid-template-columns: 1fr; gap: 32px; }
	.vv-ratgeber__intro { position: static; }
	.vv-cta-band { flex-direction: column; align-items: flex-start; }
	.vv-section-head { display: flex; flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
	.vv-header__inner { gap: 16px; height: 64px; }
	.vv-nav { display: none; }
	.vv-grid--4, .vv-grid--2 { grid-template-columns: 1fr; }
	.vv-footer__cols { grid-template-columns: 1fr; gap: 32px; }
	.vv-trust { gap: 18px; }
	.vv-product__title { font-size: 1.875rem; line-height: 1.15; }
	.vv-product__stats dd { font-size: 1.4rem; }
	.vv-section__title { font-size: 1.5rem; }
	.vv-header__actions .vv-btn--primary { display: none; }
	.vv-product__cta { flex-direction: column; align-items: stretch; }
	.vv-product__cta .vv-btn { width: 100%; }
	.vv-konfigurator__title-row { flex-direction: column; align-items: flex-start; }
	.vv-konfigurator__meta { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation: none !important; transition: none !important; }
	html { scroll-behavior: auto; }
}

/* ─────────────────────────────────────────────────────────
   10. GRAVITY FORMS — wizard styling for the /erstellen/ ghost page
   ───────────────────────────────────────────────────────── */
.vv-gf-wrapper { font-family: var(--vv-font-body); }
.vv-gf-wrapper .gform_wrapper { max-width: 100%; }
.vv-gf-wrapper .gform_title,
.vv-gf-wrapper .gform_description { display: none; }
.vv-gf-wrapper .gform_required_legend {
	font-size: .8125rem; color: var(--vv-muted);
	margin: 0 0 24px; padding: 0;
}

/* Progress bar — keep GF's own but restyle */
.vv-gf-wrapper .gf_progressbar_wrapper {
	margin: 0 0 32px;
}
.vv-gf-wrapper .gf_progressbar_title {
	font-family: var(--vv-font-display); font-weight: 600;
	font-size: 1.0625rem; color: var(--vv-navy);
	margin: 0 0 12px;
}
.vv-gf-wrapper .gf_progressbar {
	background: var(--vv-border); height: 6px;
	border-radius: 999px; overflow: hidden; padding: 0;
}
.vv-gf-wrapper .gf_progressbar_percentage {
	background: var(--vv-navy); height: 6px;
	border-radius: 999px; transition: width .3s ease;
}
.vv-gf-wrapper .gf_progressbar_percentage span { display: none; }

/* Our custom stepper */
/* (Stepper styles live in section 9 — scoped to .vv-konfigurator__head .vv-stepper) */

/* Fields */
.vv-gf-wrapper .gform_fields {
	display: grid; grid-template-columns: repeat(12, 1fr);
	gap: 22px 24px; padding: 0; list-style: none;
}
.vv-gf-wrapper .gfield { grid-column: span 12; }
.vv-gf-wrapper .gfield--width-half,
.vv-gf-wrapper .gf_left_half,
.vv-gf-wrapper .gf_right_half { grid-column: span 6; }
.vv-gf-wrapper .gfield--width-third { grid-column: span 4; }
.vv-gf-wrapper .gfield--width-two-thirds { grid-column: span 8; }
.vv-gf-wrapper .gfield--type-section { grid-column: 1 / -1; margin-top: 24px; }
.vv-gf-wrapper .gfield--type-section:first-child { margin-top: 0; }
.vv-gf-wrapper .gfield--type-section .gsection_title {
	font-family: var(--vv-font-display); font-size: 1.0625rem;
	color: var(--vv-navy); margin: 0 0 4px; font-weight: 600;
}
.vv-gf-wrapper .gfield--type-section .gsection_description {
	font-size: .8125rem; color: var(--vv-muted); margin: 0 0 4px;
	padding-bottom: 16px; border-bottom: 1px solid var(--vv-border);
}
.vv-gf-wrapper .gfield--type-html { color: var(--vv-muted); font-size: .875rem; }

.vv-gf-wrapper .gfield_label {
	display: block; font-size: .8125rem; font-weight: 600;
	color: var(--vv-navy); margin: 0 0 8px;
	font-family: var(--vv-font-body);
}
.vv-gf-wrapper .gfield_required { color: var(--vv-gold); }
.vv-gf-wrapper .gfield_description,
.vv-gf-wrapper .gform_fileupload_rules {
	font-size: .75rem; color: var(--vv-muted); margin-top: 6px; line-height: 1.5;
}

/* Inputs */
.vv-gf-wrapper input[type="text"],
.vv-gf-wrapper input[type="email"],
.vv-gf-wrapper input[type="tel"],
.vv-gf-wrapper input[type="number"],
.vv-gf-wrapper input[type="date"],
.vv-gf-wrapper input[type="url"],
.vv-gf-wrapper input[type="password"],
.vv-gf-wrapper select,
.vv-gf-wrapper textarea {
	width: 100%; box-sizing: border-box;
	padding: 12px 14px; font-size: .9375rem;
	font-family: var(--vv-font-body); color: var(--vv-ink);
	background: var(--vv-paper);
	border: 1px solid var(--vv-border);
	border-radius: var(--vv-radius-sm);
	transition: border-color .15s ease, box-shadow .15s ease;
}
.vv-gf-wrapper textarea { min-height: 120px; line-height: 1.55; resize: vertical; }
.vv-gf-wrapper input:focus,
.vv-gf-wrapper select:focus,
.vv-gf-wrapper textarea:focus {
	outline: none; border-color: var(--vv-navy);
	box-shadow: 0 0 0 3px rgba(15,30,61,.12);
}
.vv-gf-wrapper input::placeholder,
.vv-gf-wrapper textarea::placeholder { color: #98a0ad; }

/* Radio / checkbox — full styling lives in gravityforms.css (card layout +
   native-input hiding). Don't add per-.gchoice borders/margins here or they
   stack on top of the card and the native radio re-appears. */

/* Validation */
.vv-gf-wrapper .gfield_error input,
.vv-gf-wrapper .gfield_error select,
.vv-gf-wrapper .gfield_error textarea { border-color: #c0392b; }
.vv-gf-wrapper .gfield_validation_message,
.vv-gf-wrapper .validation_message {
	margin-top: 6px; font-size: .8125rem; color: #c0392b;
}
.vv-gf-wrapper .validation_error {
	background: #fdecea; color: #913930; padding: 14px 18px;
	border-radius: var(--vv-radius-sm); margin: 0 0 24px;
	border-left: 3px solid #c0392b; font-size: .875rem;
}

/* Page footer / buttons */
.vv-gf-wrapper .gform_page_footer,
.vv-gf-wrapper .gform_footer {
	display: flex; justify-content: space-between; align-items: center;
	gap: 12px; margin-top: 36px; padding-top: 24px;
	border-top: 1px solid var(--vv-border);
}
.vv-gf-wrapper .gform_page_footer .gform_previous_button { margin-right: auto; }
.vv-gf-wrapper .gform_next_button,
.vv-gf-wrapper .gform_previous_button,
.vv-gf-wrapper .gform_button {
	font-family: var(--vv-font-body);
	font-weight: 600; font-size: .9375rem;
	padding: 12px 24px; border-radius: var(--vv-radius-sm);
	cursor: pointer; border: 1px solid transparent;
	transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
}
.vv-gf-wrapper .gform_next_button,
.vv-gf-wrapper .gform_button {
	background: var(--vv-navy); color: var(--vv-paper); border-color: var(--vv-navy);
}
.vv-gf-wrapper .gform_next_button:hover,
.vv-gf-wrapper .gform_button:hover {
	background: var(--vv-navy-800, #142142);
	box-shadow: 0 4px 12px rgba(15,30,61,.18);
}
.vv-gf-wrapper .gform_previous_button {
	background: transparent; color: var(--vv-navy); border-color: var(--vv-border);
}
.vv-gf-wrapper .gform_previous_button:hover {
	background: var(--vv-beige);
}

/* Spinner — absolutely positioned (see gravityforms.css for details) */
.vv-gf-wrapper .gform_ajax_spinner {
	position: absolute; right: -32px; top: 50%;
	transform: translateY(-50%);
	width: 20px; height: 20px; margin: 0;
}

/* AJAX confirmation */
.vv-gf-wrapper .gform_confirmation_wrapper {
	padding: 32px; border-radius: var(--vv-radius);
	background: var(--vv-paper); border: 1px solid var(--vv-border);
	text-align: center;
}

/* Mobile */
@media (max-width: 720px) {
	.vv-gf-wrapper .gform_fields { gap: 18px; }
	.vv-gf-wrapper .gfield--width-half,
	.vv-gf-wrapper .gf_left_half,
	.vv-gf-wrapper .gf_right_half,
	.vv-gf-wrapper .gfield--width-third,
	.vv-gf-wrapper .gfield--width-two-thirds { grid-column: span 12; }
	.vv-stepper { gap: 4px; }
	.vv-stepper__label { display: none; }
	.vv-gf-wrapper .gform_page_footer { flex-direction: column-reverse; align-items: stretch; }
	.vv-gf-wrapper .gform_page_footer .gform_next_button,
	.vv-gf-wrapper .gform_page_footer .gform_previous_button,
	.vv-gf-wrapper .gform_button { width: 100%; }
}

/* ─────────────────────────────────────────────────────────
   GF validation summary — neutralise focus ring/outline
   ───────────────────────────────────────────────────────── */
.gform-theme--framework .gform_validation_errors:focus,
.vv-gf-wrapper .gform_validation_errors:focus {
	border-color: inherit !important;
	outline: none !important;
	outline-offset: 0 !important;
	box-shadow: none !important;
}

/* ─────────────────────────────────────────────────────────
   Konfigurator — benefits box under the form
   ───────────────────────────────────────────────────────── */
.vv-konfigurator__benefits {
	margin-top: 28px;
	background: var(--vv-white);
	border: 1px solid var(--vv-border);
	border-radius: var(--vv-radius);
	box-shadow: var(--vv-shadow);
	padding: 24px 28px;
}
.vv-konfigurator__benefits-list {
	list-style: none; padding: 0; margin: 0;
	display: flex; flex-wrap: wrap; gap: 16px 60px;
	justify-content: center;
	font-size: .875rem; color: var(--vv-navy); font-weight: 500;
}
.vv-konfigurator__benefits-list li {
	display: inline-flex; align-items: center; gap: 10px;
}
.vv-konfigurator__benefits-check {
	display: inline-flex; align-items: center; justify-content: center;
	width: 22px; height: 22px; border-radius: 50%;
	background: var(--vv-gold); color: #fff;
	font-size: .75rem; font-weight: 700; line-height: 1;
	flex-shrink: 0;
}
@media (max-width: 600px) {
	.vv-konfigurator__benefits { padding: 20px 22px; }
	.vv-konfigurator__benefits-list {
		flex-direction: column; align-items: flex-start; gap: 12px;
	}
}
