/* =============================================================================
   Travelmatcher – Main Stylesheet
   All colours defined as CSS custom properties for easy customisation.
   ============================================================================= */

/* ── 1. Custom Properties ──────────────────────────────────────────────────── */
:root {
	/* Teal-Akzent (Logo, Headline-Span, Häkchen, Trust) */
	--tm-primary:        #2A9D8F;
	--tm-primary-dark:   #1F8275;
	--tm-primary-light:  rgba(42, 157, 143, 0.12);

	/* Petrol-CTA (Header + linker Kachel-Button) */
	--tm-cta:            #1F8D7F;
	--tm-cta-dark:       #166F65;

	/* Navy (Headlines, Body, rechter Kachel-Button) */
	--tm-navy:           #1F3D54;
	--tm-navy-button:    #1F3F8F;
	--tm-navy-mid:       #2C4A73;

	/* Card-Tints */
	--tm-tile-teal:      #E5F3F0;
	--tm-tile-blue:      #E8EEF6;

	--tm-bg-light:       #F4F8F8;
	--tm-bg-soft:        #EAF4F3;
	--tm-white:          #ffffff;
	--tm-text:           #1F3D54;
	--tm-text-mid:       #495D6E;
	--tm-text-light:     #7C8A99;
	--tm-border:         #E2EBEF;
	--tm-success:        #22c55e;
	--tm-error:          #ef4444;

	--tm-font-heading: 'Nunito Sans', system-ui, sans-serif;
	--tm-font-body:    'Manrope', system-ui, sans-serif;

	--tm-radius-sm:  8px;
	--tm-radius:     12px;
	--tm-radius-lg:  20px;
	--tm-radius-xl:  28px;

	--tm-shadow-sm:  0 2px 8px rgba(0, 0, 0, 0.08);
	--tm-shadow:     0 4px 20px rgba(0, 0, 0, 0.10);
	--tm-shadow-lg:  0 8px 40px rgba(0, 0, 0, 0.15);
	--tm-shadow-xl:  0 16px 60px rgba(0, 0, 0, 0.20);

	--tm-transition: 0.28s ease;
	--tm-container:  1440px;
}

/* ── 2. Reset & Base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
	font-family: var(--tm-font-body);
	color:       var(--tm-text);
	line-height: 1.65;
	background:  var(--tm-white);
	-webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

button { cursor: pointer; font-family: inherit; border: none; background: none; }

ul, ol { list-style: none; }

/* ── 3. Utilities ──────────────────────────────────────────────────────────── */
.container {
	max-width:  var(--tm-container);
	margin:     0 auto;
	padding:    0 1.5rem;
}

.screen-reader-text {
	clip:     rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height:   1px;
	width:    1px;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
}

.skip-link { /* visible on focus */
	position:  absolute;
	top:       -9999px;
	left:      1rem;
	z-index:   9999;
	padding:   0.5rem 1rem;
	background: var(--tm-primary);
	color:     var(--tm-navy);
	font-weight: 700;
	border-radius: var(--tm-radius-sm);
}
.skip-link:focus { top: 1rem; }

/* ── 4. Buttons ────────────────────────────────────────────────────────────── */
.tm-btn {
	display:        inline-flex;
	align-items:    center;
	justify-content: center;
	gap:            0.5rem;
	padding:        0.875rem 1.875rem;
	border-radius:  50px;
	font-family:    var(--tm-font-heading);
	font-weight:    700;
	font-size:      0.9375rem;
	line-height:    1.2;
	min-height:     48px;          /* Touch-Target */
	cursor:         pointer;
	border:         2px solid transparent;
	transition:     all var(--tm-transition);
	text-decoration: none;
}

.tm-btn--primary {
	background: var(--tm-cta);
	color:      var(--tm-white);
	box-shadow: 0 4px 14px rgba(30, 157, 139, 0.25);
}
.tm-btn--primary:hover,
.tm-btn--primary:focus-visible {
	background: var(--tm-cta-dark);
	transform:  translateY(-2px);
	box-shadow: 0 8px 22px rgba(30, 157, 139, 0.35);
}

.tm-btn--navy {
	background: var(--tm-navy-button);
	color:      var(--tm-white);
	box-shadow: 0 4px 14px rgba(31, 63, 143, 0.28);
}
.tm-btn--navy:hover,
.tm-btn--navy:focus-visible {
	background: #1A357E;
	transform:  translateY(-2px);
	box-shadow: 0 8px 22px rgba(31, 63, 143, 0.40);
}

.tm-btn--outline {
	background:   transparent;
	border-color: var(--tm-border);
	color:        var(--tm-text);
}
.tm-btn--outline:hover,
.tm-btn--outline:focus-visible {
	border-color: var(--tm-primary);
	color:        var(--tm-primary);
}

.tm-btn:focus-visible { outline: 3px solid var(--tm-primary); outline-offset: 3px; }

/* ── 5. Section Shared ─────────────────────────────────────────────────────── */
.tm-section-header { text-align: center; margin-bottom: 3.5rem; }

.tm-section-header__title {
	font-family: var(--tm-font-heading);
	font-size:   clamp(1.75rem, 4vw, 2.75rem);
	font-weight: 800;
	line-height: 1.2;
	color:       var(--tm-text);
	margin-bottom: 1rem;
}

.tm-section-header__sub {
	font-size:  1.0625rem;
	color:      var(--tm-text-mid);
	max-width:  560px;
	margin:     0 auto;
}

.tm-section-header--light .tm-section-header__title,
.tm-section-header--light .tm-section-header__sub { color: var(--tm-white); }
.tm-section-header--light .tm-section-header__sub { color: rgba(255,255,255,0.75); }

/* ── 6. Animations ─────────────────────────────────────────────────────────── */
@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(28px); }
	to   { opacity: 1; transform: translateY(0); }
}

@keyframes floatUp {
	0%, 100% { transform: translateY(0px); }
	50%       { transform: translateY(-14px); }
}

@keyframes floatUpSlow {
	0%, 100% { transform: translateY(0px) rotate(-2deg); }
	50%       { transform: translateY(-10px) rotate(2deg); }
}

@keyframes destinationsScroll {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

@keyframes pulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(0, 200, 200, 0.4); }
	50%       { box-shadow: 0 0 0 12px rgba(0, 200, 200, 0); }
}

/* Scroll-triggered fade-in */
.tm-animate {
	opacity:   0;
	transform: translateY(24px);
	transition: opacity 0.55s ease, transform 0.55s ease;
}
.tm-animate--delay-1 { transition-delay: 0.10s; }
.tm-animate--delay-2 { transition-delay: 0.20s; }
.tm-animate--delay-3 { transition-delay: 0.30s; }
.tm-animate--delay-4 { transition-delay: 0.40s; }

.tm-animate--visible {
	opacity:   1;
	transform: translateY(0);
}

/* ── 7. Header / Navigation ────────────────────────────────────────────────── */
.tm-header {
	position:   fixed;
	top:        0;
	left:       0;
	right:      0;
	z-index:    1000;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(220, 229, 234, 0.6);
	transition: background var(--tm-transition), box-shadow var(--tm-transition), transform var(--tm-transition);
}

.tm-header.scrolled {
	background: var(--tm-white);
	box-shadow: 0 2px 16px rgba(30, 58, 95, 0.08);
}

.tm-header.hidden { transform: translateY(-100%); }

.tm-header__inner {
	display:         flex;
	align-items:     center;
	justify-content: space-between;
	height:          90px;
	gap:             1.5rem;
}

/* Logo: deutlich größer (70px), damit der Schriftzug klar lesbar ist; leichter Linksversatz */
.tm-header__logo {
	display:      inline-flex;
	align-items:  center;
	margin-left:  -0.75rem;
}
.tm-header__logo img { height: 70px; width: auto; display: block; }
.tm-header__logo .custom-logo { height: 70px; width: auto; display: block; }
.tm-header__logo .custom-logo-link { display: inline-flex; align-items: center; }

/* Desktop nav */
.tm-header__nav { flex: 1; display: flex; justify-content: center; }

.tm-nav__list {
	display:     flex;
	align-items: center;
	gap:         2rem;
}

.tm-nav__list li a {
	color:       var(--tm-text);
	font-weight: 600;
	font-size:   0.9375rem;
	opacity:     0.85;
	transition:  opacity var(--tm-transition), color var(--tm-transition);
	padding:     0.25rem 0;
	position:    relative;
}

.tm-nav__list li a::after {
	content:    '';
	position:   absolute;
	bottom:     -2px;
	left:       0;
	right:      100%;
	height:     2px;
	background: var(--tm-primary);
	transition: right var(--tm-transition);
}

.tm-nav__list li a:hover { opacity: 1; }
.tm-nav__list li a:hover::after { right: 0; }

.tm-header__cta { padding: 0.875rem 1.75rem; font-size: 0.95rem; border-radius: 10px; }

/* Hamburger */
.tm-hamburger {
	display:        none;
	flex-direction: column;
	gap:            5px;
	padding:        0.375rem;
	border-radius:  6px;
}

.tm-hamburger__line {
	display:    block;
	width:      24px;
	height:     2px;
	background: var(--tm-text);
	border-radius: 2px;
	transition: all var(--tm-transition);
}

.tm-hamburger.is-open .tm-hamburger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.tm-hamburger.is-open .tm-hamburger__line:nth-child(2) { opacity: 0; }
.tm-hamburger.is-open .tm-hamburger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.tm-mobile-nav {
	background: var(--tm-navy);
	padding:    1.5rem;
	border-top: 1px solid rgba(255,255,255,0.1);
}

.tm-mobile-nav__list { display: flex; flex-direction: column; gap: 0; margin-bottom: 1.5rem; }

.tm-mobile-nav__list li a {
	display:   block;
	padding:   0.875rem 0;
	color:     var(--tm-white);
	font-size: 1.125rem;
	font-weight: 600;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}

.tm-mobile-nav__cta { width: 100%; justify-content: center; }

/* Body locked when mobile nav open */
body.tm-nav-open { overflow: hidden; }

/* ── 8. Hero Section ───────────────────────────────────────────────────────── */
.tm-hero {
	position:    relative;
	min-height:  100svh;
	display:     flex;
	align-items: center;
	overflow:    hidden;
	padding:     8rem 0 5rem;
}

.tm-hero__bg {
	position:   absolute;
	inset:      0;
	background: var(--tm-navy);
	background-image:
		radial-gradient(ellipse 60% 50% at 70% 40%, rgba(0, 200, 200, 0.15) 0%, transparent 60%),
		radial-gradient(ellipse 40% 60% at 20% 80%, rgba(0, 200, 200, 0.08) 0%, transparent 50%);
	z-index: 0;
}

/* ── 8b. Hero – Light Variant (zwei Kacheln) ───────────────────────────────── */
.tm-hero--light {
	min-height: auto;
	display:    block;
	padding:    6rem 0 1.5rem;
}

.tm-hero--light .tm-hero__bg {
	background: var(--tm-white);
}

.tm-hero--light .tm-hero__container {
	display:        block;
	position:       relative;
	z-index:        1;
}

.tm-hero__head {
	text-align:    center;
	max-width:     920px;
	margin:        0 auto 2.25rem;
}

.tm-hero__headline {
	font-family:    var(--tm-font-heading);
	font-size:      clamp(1.85rem, 5.5vw, 3.5rem);
	font-weight:    900;
	line-height:    1.1;
	color:          #1F3D54 !important;   /* Navy hartcoded — kann nicht durch Plugin/Cache überschrieben werden */
	margin-bottom:  1rem;
	letter-spacing: -0.01em;
}

.tm-hero__headline .tm-hero__accent { color: #2A9D8F !important; }

.tm-hero--light .tm-hero__subtext {
	font-size:   clamp(1rem, 1.3vw, 1.125rem);
	color:       var(--tm-text-mid);
	max-width:   none;
	margin:      0 auto;
	line-height: 1.55;
}

/* Two-Card Grid */
.tm-cards {
	display:               grid;
	grid-template-columns: 1fr clamp(72px, 8vw, 120px) 1fr;
	gap:                   clamp(1rem, 2.2vw, 2rem);
	align-items:           stretch;
	max-width:             1340px;
	margin:                0 auto;
}

.tm-card {
	position:       relative !important;
	display:        block !important;
	background:     var(--tm-white);
	border-radius:  24px;
	padding:        2rem !important;   /* v3.42: kein Puzzle-Bild mehr */
	box-shadow:     0 4px 24px rgba(30, 58, 95, 0.06);
	border:         1px solid var(--tm-border);
	overflow:       hidden !important;                  /* Bild bleibt IN der Card */
	transition:     transform var(--tm-transition), box-shadow var(--tm-transition);
	min-height:     460px;
}

.tm-card:hover {
	transform:  translateY(-4px);
	box-shadow: 0 14px 38px rgba(30, 58, 95, 0.13);
}

.tm-card:focus-within {
	box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.18), 0 14px 38px rgba(30, 58, 95, 0.13);
}

@media (prefers-reduced-motion: reduce) {
	.tm-card, .tm-btn { transition: none !important; }
	.tm-card:hover { transform: none !important; }
	.tm-btn:hover  { transform: none !important; }
}

.tm-card--teal { background: linear-gradient(160deg, var(--tm-tile-teal) 0%, var(--tm-white) 70%); border-color: rgba(31, 168, 158, 0.18); }
.tm-card--navy { background: linear-gradient(160deg, var(--tm-tile-blue) 0%, var(--tm-white) 70%); border-color: rgba(30, 58, 95, 0.12); }

.tm-card__body {
	position:       relative;
	display:        flex;
	flex-direction: column;
	min-width:      0;
	min-height:     100%;
}

.tm-card__image {
	position:            absolute !important;
	top:                 0 !important;
	right:               0 !important;
	bottom:              0 !important;
	width:               260px !important;
	margin:              0 !important;
	padding:             0 !important;
	overflow:            hidden !important;
	background-size:     contain !important;        /* ganzes Puzzle sichtbar */
	background-position: right center !important;   /* bündig am rechten Rand */
	background-repeat:   no-repeat !important;
	z-index:             2;
	pointer-events:      none;
}

/* Falls jemand doch <img>/<svg> ins Image-Div legt: voll & beschnitten */
.tm-card__image svg,
.tm-card__image img {
	width:           100%;
	height:          100%;
	object-fit:      cover;
	display:         block;
}

/* ── Kompass-Spur zwischen den Kacheln (v3.41/v3.42) ───────────────────────── */
.tm-cards__compass { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; align-self: center; gap: 0.6rem; padding: 1rem 0; text-align: center; }
.tm-cards__compass::before { content: ""; position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%); border-left: 2px dotted var(--tm-border); z-index: 0; }
.tm-cards__compass-badge { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 50%; background: var(--tm-white); border: 2px solid var(--tm-primary); color: var(--tm-primary); box-shadow: var(--tm-shadow-sm); }
.tm-cards__compass-label { position: relative; z-index: 1; font-family: var(--tm-font-heading); font-weight: 700; font-size: 0.92rem; line-height: 1.25; color: var(--tm-navy); }
.tm-cards__compass-arrows { position: relative; z-index: 1; display: flex; gap: 0.4rem; color: var(--tm-primary); }

/* ── Hinweis-/Gebühren-Box in den Kacheln (v3.41) ──────────────────────────── */
.tm-card__note, .tm-card__fee { display: flex; gap: 0.55rem; align-items: flex-start; font-size: 0.86rem; line-height: 1.45; border-radius: var(--tm-radius-sm); padding: 0.7rem 0.85rem; margin: 0.25rem 0 1rem; max-width: 100%; }
.tm-card__note { background: var(--tm-primary-light); color: var(--tm-primary-dark); }
.tm-card__fee  { background: rgba(31, 63, 143, 0.08); color: var(--tm-navy-mid); }
.tm-card__note-icon, .tm-card__fee-icon { flex: 0 0 auto; margin-top: 1px; }

.tm-card__head {
	display:       flex;
	align-items:   center;
	gap:           1rem;
	margin-bottom: 1rem;
}

.tm-card__icon {
	flex-shrink:   0;
	width:         56px;
	height:        56px;
	border-radius: 50%;
	display:       inline-flex;
	align-items:   center;
	justify-content: center;
	background:    var(--tm-white);
	border:        2px solid currentColor;
}

.tm-card__icon--teal { color: var(--tm-primary); background: rgba(42,157,143,0.08); }
.tm-card__icon--navy { color: var(--tm-navy);    background: rgba(31,63,143,0.06); }

.tm-card__title {
	font-family: var(--tm-font-heading);
	font-size:   clamp(1.25rem, 1.8vw, 1.5rem);
	font-weight: 800;
	color:       var(--tm-text);
	line-height: 1.2;
}

.tm-card__desc {
	font-size:     0.95rem;
	color:         var(--tm-text-mid);
	line-height:   1.55;
	margin-bottom: 1.25rem;
}

.tm-card__list {
	display:        flex;
	flex-direction: column;
	gap:            0.85rem;
	margin-bottom:  1.5rem;
}

.tm-card__list-item {
	display:     flex;
	align-items: flex-start;
	gap:         0.7rem;
	font-size:   0.9375rem;
	line-height: 1.45;
	color:       var(--tm-text);
}

.tm-card__check {
	flex-shrink:   0;
	width:         22px;
	height:        22px;
	border-radius: 50%;
	display:       inline-flex;
	align-items:   center;
	justify-content: center;
	margin-top:    2px;
}

.tm-card__check--teal {
	background: var(--tm-primary);
	color:      var(--tm-white);
}

.tm-card__check--navy {
	background: var(--tm-navy);
	color:      var(--tm-white);
}

.tm-card__cta {
	margin-top:      auto;
	width:           100%;
	justify-content: center;
	padding:         0.9rem 1.5rem;
	border-radius:   10px;
	gap:             0.75rem;
	text-align:      left;
}

.tm-card__cta-icon { font-size: 1.125rem; }
.tm-card__cta-text { display: flex; flex-direction: column; line-height: 1.15; }
.tm-card__cta-text strong { font-size: 1rem; font-weight: 800; }
.tm-card__cta-text small  { font-size: 0.8125rem; font-weight: 500; opacity: 0.88; }

@media (max-width: 900px) {
	.tm-card { grid-template-columns: 1fr 160px; gap: 1rem; padding: 1.75rem; }
	.tm-card__image svg { max-width: 160px; }
}

/* Tablet ≤ 980px – Cards stapeln; Image als Cover-Bild oben (16:9) */
@media (max-width: 980px) {
	.tm-cards { grid-template-columns: 1fr; gap: 1.5rem; }
	.tm-cards__compass { flex-direction: row; gap: 0.85rem; padding: 0.25rem 0; }
	.tm-cards__compass::before { left: 0; right: 0; top: 50%; bottom: auto; transform: translateY(-50%); border-left: 0; border-top: 2px dotted var(--tm-border); }
	.tm-cards__compass-label { text-align: left; }
	.tm-card  {
		padding: 2rem !important;   /* v3.42: kein Cover-Bild mehr */
		min-height: auto !important;
	}
	.tm-card__image {
		position:            absolute !important;
		top:                 0 !important;
		right:               0 !important;
		left:                0 !important;
		bottom:              auto !important;
		width:               auto !important;
		height:              220px !important;
		min-height:          220px !important;
		margin:              0 !important;
		border-radius:       24px 24px 0 0 !important;
		background-size:     cover !important;
		background-position: center center !important;
		box-shadow:          inset 0 -40px 60px -20px rgba(31,61,84,0.10);
	}
}

/* Mobile ≤ 768px – Bild weg, Fokus auf Inhalt + CTA (UX-Best-Practice) */
@media (max-width: 768px) {
	.tm-hero--light { padding: 5rem 0 2rem; }
	.tm-hero__head  { margin-bottom: 1.75rem; }
	.tm-card        { padding: 1.75rem !important; border-radius: 18px; grid-template-columns: 1fr !important; gap: 0 !important; }
	.tm-card__head  { gap: 0.75rem; margin-bottom: 0.875rem; }
	.tm-card__icon  { width: 44px; height: 44px; }
	.tm-card__icon svg { width: 22px; height: 22px; }
	.tm-card__title { font-size: 1.15rem; }
	.tm-card__desc  { font-size: 0.9375rem; }
	.tm-card__list  { font-size: 0.9rem; }
	.tm-card__cta   { padding: 0.875rem 1.25rem; }
	.tm-card__cta-text strong { font-size: 0.95rem; }
	.tm-card__cta-text small  { font-size: 0.75rem; }
	.tm-card__image { display: none !important; }
	.tm-card        { padding: 1.75rem !important; min-height: auto !important; }
}

.tm-hero__container {
	position:    relative;
	z-index:     1;
	display:     grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap:         4rem;
}

/* Hero text */
.tm-hero__eyebrow {
	display:       inline-flex;
	align-items:   center;
	gap:           0.5rem;
	padding:       0.375rem 1rem;
	background:    var(--tm-primary-light);
	border:        1px solid rgba(0, 200, 200, 0.3);
	border-radius: 50px;
	color:         var(--tm-primary);
	font-size:     0.8125rem;
	font-weight:   700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 1.25rem;
}

.tm-hero__headline {
	font-family:  var(--tm-font-heading);
	font-size:    clamp(2rem, 5vw, 3.5rem);
	font-weight:  900;
	line-height:  1.1;
	color:        var(--tm-white);
	margin-bottom: 1.5rem;
}

.tm-hero__subtext {
	font-size:   1.0625rem;
	color:       rgba(255,255,255,0.72);
	max-width:   520px;
	margin-bottom: 2.25rem;
	line-height: 1.7;
}

.tm-hero__actions {
	display:  flex;
	gap:      1rem;
	flex-wrap: wrap;
}

/* Hero Widget */
.tm-hero__widget-wrap {
	position: relative;
	padding:  2rem 0 2rem 2rem;
}

.tm-hero-widget {
	background:    rgba(255,255,255,0.07);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border:        1px solid rgba(255,255,255,0.15);
	border-radius: var(--tm-radius-xl);
	padding:       1.75rem;
	animation:     floatUp 5s ease-in-out infinite;
	position:      relative;
	z-index:       2;
}

.tm-hero-widget__header {
	display:     flex;
	align-items: center;
	gap:         0.875rem;
	margin-bottom: 1.25rem;
}

.tm-hero-widget__icon { font-size: 1.75rem; }

.tm-hero-widget__header strong {
	display:     block;
	color:       var(--tm-white);
	font-family: var(--tm-font-heading);
	font-weight: 700;
}

.tm-hero-widget__header small { color: rgba(255,255,255,0.5); font-size: 0.8125rem; }

.tm-hero-widget__dest {
	display:       flex;
	align-items:   center;
	gap:           0.625rem;
	padding:       0.625rem 1rem;
	background:    var(--tm-primary-light);
	border:        1px solid rgba(0,200,200,0.25);
	border-radius: 50px;
	color:         var(--tm-primary);
	font-weight:   700;
	font-size:     1rem;
	margin-bottom: 1rem;
}

.tm-hero-widget__modules {
	display:   flex;
	flex-wrap: wrap;
	gap:       0.5rem;
	margin-bottom: 1.25rem;
}

.tm-hero-widget__pill {
	padding:       0.375rem 0.875rem;
	border-radius: 50px;
	font-size:     0.8125rem;
	font-weight:   600;
	border:        1px solid rgba(255,255,255,0.2);
	color:         rgba(255,255,255,0.55);
	background:    rgba(255,255,255,0.05);
}

.tm-hero-widget__pill--active {
	background:  rgba(0, 200, 200, 0.15);
	border-color: rgba(0, 200, 200, 0.4);
	color:        var(--tm-primary);
}

.tm-hero-widget__saving {
	display:       flex;
	align-items:   center;
	gap:           0.6rem;
	margin-bottom: 1rem;
	padding:       0.65rem 0.875rem;
	background:    rgba(74,222,128,0.12);
	border:        1px solid rgba(74,222,128,0.3);
	border-radius: var(--tm-radius-sm);
}

.tm-hero-widget__saving-icon { font-size: 1.5rem; flex-shrink: 0; }

.tm-hero-widget__saving-body {
	display:        flex;
	flex-direction: column;
	gap:            0.05rem;
}

.tm-hero-widget__saving-label {
	font-size: 0.7rem;
	color:     rgba(255,255,255,0.6);
}

.tm-hero-widget__saving-amount {
	font-family: var(--tm-font-heading);
	font-size:   1.6rem;
	font-weight: 900;
	color:       #4ade80;
	line-height: 1.1;
}

.tm-hero-widget__saving-sub {
	font-size: 0.7rem;
	color:     rgba(255,255,255,0.5);
}

.tm-hero-widget__badge {
	display:       inline-flex;
	align-items:   center;
	gap:           0.375rem;
	padding:       0.375rem 0.875rem;
	background:    var(--tm-primary);
	color:         var(--tm-navy);
	border-radius: 50px;
	font-size:     0.8125rem;
	font-weight:   800;
	animation:     pulse 2.5s ease-in-out infinite;
}

/* Floating Chips */
.tm-chip {
	position:      absolute;
	display:       flex;
	align-items:   center;
	gap:           0.5rem;
	padding:       0.5rem 1rem;
	background:    var(--tm-white);
	border-radius: 50px;
	box-shadow:    var(--tm-shadow-lg);
	font-size:     0.8125rem;
	font-weight:   700;
	color:         var(--tm-text);
	z-index:       3;
	white-space:   nowrap;
}

.tm-chip--reviews  { top: 0.5rem; right: -1rem; animation: floatUpSlow 6s ease-in-out infinite; }
.tm-chip--travelers{ bottom: 1rem; left: 0; animation: floatUpSlow 7s ease-in-out infinite 1s; }

/* ── 9. Stats Bar ──────────────────────────────────────────────────────────── */
.tm-stats {
	background: var(--tm-primary);
	padding:    2.5rem 0;
}

.tm-stats__grid {
	display:         grid;
	grid-template-columns: repeat(4, 1fr);
	gap:             1.5rem;
}

.tm-stats__item {
	display:     flex;
	flex-direction: column;
	align-items: center;
	text-align:  center;
	gap:         0.25rem;
}

.tm-stats__value {
	font-family:  var(--tm-font-heading);
	font-size:    clamp(1.75rem, 3vw, 2.5rem);
	font-weight:  900;
	color:        var(--tm-navy);
	line-height:  1;
}

.tm-stats__label {
	font-size:   0.875rem;
	font-weight: 600;
	color:       var(--tm-navy);
	opacity:     0.75;
}

/* ── 10. Konfigurator Section ──────────────────────────────────────────────── */
.tm-konfigurator {
	background: var(--tm-bg-light);
	padding:    5rem 0;
}

.tm-konfigurator__layout {
	display:  grid;
	grid-template-columns: 1fr 380px;
	gap:      2.5rem;
	align-items: start;
}

/* Steps */
.tm-step {
	background:    var(--tm-white);
	border-radius: var(--tm-radius-lg);
	padding:       2rem;
	margin-bottom: 1.5rem;
	box-shadow:    var(--tm-shadow-sm);
}

.tm-step:last-child { margin-bottom: 0; }

.tm-step__heading {
	display:     flex;
	align-items: center;
	gap:         0.875rem;
	font-family: var(--tm-font-heading);
	font-size:   1.125rem;
	font-weight: 800;
	color:       var(--tm-text);
	margin-bottom: 1.25rem;
}

.tm-step__num {
	font-size:     0.75rem;
	font-weight:   900;
	color:         var(--tm-primary);
	background:    var(--tm-primary-light);
	border:        1px solid rgba(0,200,200,0.25);
	border-radius: 50px;
	padding:       0.25rem 0.625rem;
	letter-spacing: 0.05em;
}

.tm-step__hint {
	font-size:     0.8125rem;
	color:         var(--tm-text-light);
	margin-top:    -0.75rem;
	margin-bottom: 1rem;
}

/* Destination Pills */
.tm-pills { display: flex; flex-wrap: wrap; gap: 0.625rem; }

.tm-pill {
	padding:       0.5rem 1.125rem;
	border-radius: 50px;
	font-size:     0.9rem;
	font-weight:   600;
	border:        2px solid var(--tm-border);
	color:         var(--tm-text-mid);
	background:    var(--tm-white);
	transition:    all var(--tm-transition);
}

.tm-pill:hover {
	border-color: var(--tm-primary);
	color:        var(--tm-primary);
}

.tm-pill.active {
	background:   var(--tm-primary);
	border-color: var(--tm-primary);
	color:        var(--tm-navy);
}

/* Module cards */
.tm-modules {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.75rem;
}

.tm-module {
	display:        flex;
	flex-direction: column;
	align-items:    flex-start;
	gap:            0.2rem;
	padding:        1rem;
	border-radius:  var(--tm-radius);
	border:         2px solid var(--tm-border);
	background:     var(--tm-white);
	text-align:     left;
	transition:     all var(--tm-transition);
	position:       relative;
	cursor:         pointer;
}

.tm-module:hover { border-color: var(--tm-primary); }

.tm-module.active {
	border-color: var(--tm-primary);
	background:   var(--tm-primary-light);
}

.tm-module__check {
	position:  absolute;
	top:       0.5rem;
	right:     0.5rem;
	width:     18px;
	height:    18px;
	border:    2px solid var(--tm-border);
	border-radius: 50%;
	transition: all var(--tm-transition);
}

.tm-module.active .tm-module__check {
	background:  var(--tm-primary);
	border-color: var(--tm-primary);
}

.tm-module.active .tm-module__check::after {
	content:  '✓';
	position: absolute;
	top:      50%;
	left:     50%;
	transform: translate(-50%, -50%);
	font-size: 10px;
	font-weight: 900;
	color:    var(--tm-navy);
}

.tm-module__icon  { font-size: 1.75rem; margin-bottom: 0.25rem; }
.tm-module__name  { font-weight: 700; font-size: 0.9375rem; color: var(--tm-text); }
.tm-module__sub   { font-size: 0.78rem; color: var(--tm-text-light); line-height: 1.45; margin-top: 0.1rem; }
.tm-module__price { font-size: 0.8125rem; font-weight: 700; color: var(--tm-primary); margin-top: 0.25rem; }

/* Duration / Budget options */
.tm-options { display: flex; flex-wrap: wrap; gap: 0.625rem; }

.tm-option {
	padding:       0.625rem 1.25rem;
	border-radius: 50px;
	font-size:     0.9rem;
	font-weight:   600;
	border:        2px solid var(--tm-border);
	color:         var(--tm-text-mid);
	background:    var(--tm-white);
	transition:    all var(--tm-transition);
}

.tm-option:hover { border-color: var(--tm-primary); color: var(--tm-primary); }

.tm-option.active {
	background:   var(--tm-primary);
	border-color: var(--tm-primary);
	color:        var(--tm-navy);
}

/* Result Panel */
.tm-konfigurator__result { position: sticky; top: 100px; }

.tm-result-panel {
	background:    var(--tm-navy);
	border-radius: var(--tm-radius-lg);
	padding:       2rem;
	box-shadow:    var(--tm-shadow-xl);
	color:         var(--tm-white);
}

.tm-result-panel__badge {
	display:       inline-flex;
	align-items:   center;
	gap:           0.375rem;
	padding:       0.375rem 0.875rem;
	background:    var(--tm-primary);
	color:         var(--tm-navy);
	border-radius: 50px;
	font-size:     0.8125rem;
	font-weight:   800;
	margin-bottom: 1rem;
}

.tm-result-panel__title {
	display:     flex;
	align-items: center;
	gap:         0.625rem;
	font-family: var(--tm-font-heading);
	font-size:   1.375rem;
	font-weight: 800;
	margin-bottom: 1.25rem;
}

.tm-result-panel__items {
	display:    flex;
	flex-direction: column;
	gap:        0.5rem;
	min-height: 80px;
}

.tm-result-item {
	display:         flex;
	justify-content: space-between;
	align-items:     center;
	padding:         0.5rem 0.75rem;
	background:      rgba(255,255,255,0.06);
	border-radius:   var(--tm-radius-sm);
	font-size:       0.9rem;
}

.tm-result-empty { color: rgba(255,255,255,0.5); font-size: 0.875rem; text-align: center; padding: 1rem 0; }

.tm-result-panel__divider {
	height:     1px;
	background: rgba(255,255,255,0.1);
	margin:     1.25rem 0;
}

.tm-result-panel__total {
	display:         flex;
	justify-content: space-between;
	align-items:     center;
	margin-bottom:   0.5rem;
	font-size:       0.9rem;
	color:           rgba(255,255,255,0.7);
}

.tm-result-panel__price {
	font-family: var(--tm-font-heading);
	font-size:   1.625rem;
	font-weight: 900;
	color:       var(--tm-primary);
}

.tm-result-panel__note {
	font-size:     0.75rem;
	color:         rgba(255,255,255,0.45);
	margin-bottom: 1.25rem;
}

.tm-result-panel__cta { width: 100%; justify-content: center; margin-top: 0.25rem; }

/* ── 11. How It Works ──────────────────────────────────────────────────────── */
.tm-hiw {
	padding:    5rem 0;
	background: var(--tm-white);
}

.tm-hiw__layout {
	display:     grid;
	grid-template-columns: 1fr auto;
	gap:         4rem;
	align-items: start;
}

.tm-hiw__steps { display: flex; flex-direction: column; gap: 0; }

.tm-hiw__step {
	display:   grid;
	grid-template-columns: 48px 1fr;
	gap:       1.25rem;
	position:  relative;
	padding-bottom: 2.5rem;
}

.tm-hiw__step:last-child { padding-bottom: 0; }

.tm-hiw__step-number {
	width:       48px;
	height:      48px;
	border-radius: 50%;
	background:  var(--tm-primary);
	color:       var(--tm-navy);
	font-family: var(--tm-font-heading);
	font-weight: 900;
	font-size:   0.875rem;
	display:     flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	position:    relative;
	z-index:     1;
}

.tm-hiw__connector {
	position:   absolute;
	top:        48px;
	left:       23px;
	bottom:     0;
	width:      2px;
	background: linear-gradient(to bottom, var(--tm-primary), rgba(0,200,200,0.15));
}

.tm-hiw__step-icon  { font-size: 1.5rem; margin-bottom: 0.375rem; }
.tm-hiw__step-title {
	font-family: var(--tm-font-heading);
	font-size:   1.125rem;
	font-weight: 800;
	color:       var(--tm-text);
	margin-bottom: 0.375rem;
}
.tm-hiw__step-desc { font-size: 0.9375rem; color: var(--tm-text-mid); }

/* Phone Mockup */
.tm-phone {
	width:         240px;
	height:        480px;
	background:    var(--tm-navy);
	border-radius: 36px;
	border:        8px solid #2d3a50;
	box-shadow:    var(--tm-shadow-xl), inset 0 0 0 1px rgba(255,255,255,0.08);
	position:      relative;
	overflow:      hidden;
}

.tm-phone__notch {
	width:         90px;
	height:        24px;
	background:    #2d3a50;
	border-radius: 0 0 16px 16px;
	margin:        0 auto;
}

.tm-phone__screen { padding: 0.875rem; height: calc(100% - 24px); overflow: hidden; }

.tm-phone-ui { display: flex; flex-direction: column; gap: 0.5rem; }

.tm-phone-ui__header {
	display:     flex;
	align-items: center;
	gap:         0.5rem;
	color:       var(--tm-white);
	font-weight: 700;
	font-size:   0.875rem;
	margin-bottom: 0.25rem;
}

.tm-phone-ui__dest {
	padding:       0.375rem 0.75rem;
	border-radius: 50px;
	font-size:     0.75rem;
	font-weight:   600;
	color:         rgba(255,255,255,0.5);
	background:    rgba(255,255,255,0.05);
	cursor:        default;
}

.tm-phone-ui__dest.active {
	background:  var(--tm-primary-light);
	color:       var(--tm-primary);
}

.tm-phone-ui__sep { height: 1px; background: rgba(255,255,255,0.08); margin: 0.25rem 0; }

.tm-phone-ui__modules {
	display: flex;
	gap:     0.375rem;
}

.tm-phone-ui__modules span {
	font-size:     1rem;
	padding:       0.25rem;
	border-radius: 6px;
	background:    rgba(255,255,255,0.05);
	opacity:       0.4;
}

.tm-phone-ui__modules span.on { opacity: 1; background: var(--tm-primary-light); }

.tm-phone-ui__saving {
	display:       inline-block;
	font-family:   var(--tm-font-heading);
	font-size:     0.9rem;
	font-weight:   800;
	color:         #4ade80;
	background:    rgba(74,222,128,0.12);
	border:        1px solid rgba(74,222,128,0.25);
	border-radius: 6px;
	padding:       0.2rem 0.55rem;
	margin-top:    0.25rem;
}

.tm-phone-ui__btn {
	background:    var(--tm-primary);
	color:         var(--tm-navy);
	border-radius: 50px;
	padding:       0.5rem 0.75rem;
	font-size:     0.75rem;
	font-weight:   800;
	text-align:    center;
	margin-top:    0.25rem;
}

/* ── 12. Destinations Carousel ─────────────────────────────────────────────── */
.tm-destinations {
	background: var(--tm-navy);
	padding:    5rem 0;
	overflow:   hidden;
}

.tm-destinations__carousel {
	overflow:   hidden;
	margin-top: 1rem;
	cursor:     grab;
}

.tm-destinations__track {
	display:   flex;
	width:     max-content;
	animation: destinationsScroll 32s linear infinite;
	gap:       1.25rem;
	padding:   0.5rem 1.25rem;
}

.tm-destinations__carousel:hover .tm-destinations__track { animation-play-state: paused; }

.tm-dest-card {
	width:         300px;
	height:        360px;
	border-radius: var(--tm-radius-lg);
	position:      relative;
	overflow:      hidden;
	flex-shrink:   0;
	box-shadow:    var(--tm-shadow-lg);
	transition:    transform var(--tm-transition);
}

.tm-dest-card:hover { transform: scale(1.03); }

.tm-dest-card__overlay {
	position:   absolute;
	inset:      0;
	background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 50%);
}

.tm-dest-card__content {
	position:       absolute;
	bottom:         0;
	left:           0;
	right:          0;
	padding:        1.5rem;
	display:        flex;
	flex-direction: column;
	gap:            0.25rem;
}

.tm-dest-card__flag    { font-size: 1.75rem; }
.tm-dest-card__country { font-size: 0.8125rem; color: rgba(255,255,255,0.7); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.tm-dest-card__city    { font-family: var(--tm-font-heading); font-size: 1.5rem; font-weight: 900; color: var(--tm-white); }
.tm-dest-card__saving  { display: inline-block; padding: 0.25rem 0.75rem; background: #22c55e; color: #fff; border-radius: 50px; font-size: 0.8125rem; font-weight: 700; width: max-content; margin-top: 0.25rem; letter-spacing: 0.01em; }

/* ── 13. Features ──────────────────────────────────────────────────────────── */
.tm-features {
	background: var(--tm-white);
	padding:    4rem 0 5rem;
}

.tm-features--four { background: var(--tm-white); padding: 0 0 1rem; }

.tm-features__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.tm-features--four .tm-features__grid {
	grid-template-columns: repeat(4, 1fr);
	gap: 2.5rem;
	max-width: 1340px;
	margin: 0 auto;
}

.tm-features--four .tm-feature-card {
	background:    transparent;
	box-shadow:    none;
	padding:       1.25rem 0.75rem 0.25rem;
	border-top:    1px solid var(--tm-border);
	border-radius: 0;
	text-align:    left;
	display:       grid;
	grid-template-columns: 52px 1fr;
	gap:           0.875rem;
	align-items:   start;
}

.tm-features--four .tm-feature-card:hover {
	transform: none;
	box-shadow: none;
}

.tm-features--four .tm-feature-card__icon {
	display:         inline-flex;
	align-items:     center;
	justify-content: center;
	width:           44px;
	height:          44px;
	border-radius:   50%;
	background:      transparent;
	border:          2px solid var(--tm-primary);
	color:           var(--tm-primary);
	margin-bottom:   0;
	font-size:       inherit;
}

.tm-features--four .tm-feature-card__title {
	font-size: 1rem;
	margin-bottom: 0.5rem;
	line-height: 1.3;
	color: var(--tm-text);
}

.tm-features--four .tm-feature-card__desc {
	font-size: 0.875rem;
	line-height: 1.55;
	color: var(--tm-text-mid);
}

.tm-features__trust {
	margin-top:  1rem;
	padding-bottom: 2rem;
	text-align:  center;
	font-size:   0.875rem;
	color:       var(--tm-primary);
	display:     flex;
	align-items: center;
	justify-content: center;
	gap:         0.5rem;
}

.tm-features__trust-icon {
	display:     inline-flex;
	align-items: center;
}

@media (max-width: 1024px) {
	.tm-features--four .tm-features__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
	.tm-features--four .tm-features__grid { grid-template-columns: 1fr; }
}

.tm-feature-card {
	background:    var(--tm-white);
	border-radius: var(--tm-radius-lg);
	padding:       2rem;
	box-shadow:    var(--tm-shadow-sm);
	transition:    transform var(--tm-transition), box-shadow var(--tm-transition);
}

.tm-feature-card:hover {
	transform:  translateY(-4px);
	box-shadow: var(--tm-shadow);
}

.tm-feature-card__icon {
	font-size:     2rem;
	margin-bottom: 1rem;
	display:       block;
}

.tm-feature-card__title {
	font-family:   var(--tm-font-heading);
	font-size:     1.125rem;
	font-weight:   800;
	color:         var(--tm-text);
	margin-bottom: 0.625rem;
}

.tm-feature-card__desc { font-size: 0.9375rem; color: var(--tm-text-mid); line-height: 1.65; }

/* ── 14. Testimonials ──────────────────────────────────────────────────────── */
.tm-testimonials {
	background: var(--tm-white);
	padding:    5rem 0;
}

.tm-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.tm-testimonial-card {
	background:    var(--tm-bg-light);
	border-radius: var(--tm-radius-lg);
	padding:       2rem;
	border-top:    3px solid var(--tm-primary);
	transition:    transform var(--tm-transition), box-shadow var(--tm-transition);
}

.tm-testimonial-card:hover {
	transform:  translateY(-4px);
	box-shadow: var(--tm-shadow);
}

.tm-testimonial-card__stars {
	color:         var(--tm-primary);
	font-size:     1.125rem;
	margin-bottom: 1rem;
	letter-spacing: 2px;
}

.tm-testimonial-card__quote {
	font-size:     0.9375rem;
	color:         var(--tm-text-mid);
	line-height:   1.7;
	margin-bottom: 1.5rem;
}

.tm-testimonial-card__footer { display: flex; align-items: center; gap: 0.875rem; }

.tm-testimonial-card__avatar {
	width:           44px;
	height:          44px;
	border-radius:   50%;
	background:      var(--tm-primary);
	color:           var(--tm-navy);
	font-family:     var(--tm-font-heading);
	font-weight:     800;
	font-size:       0.875rem;
	display:         flex;
	align-items:     center;
	justify-content: center;
	flex-shrink:     0;
}

.tm-testimonial-card__name  { display: block; font-weight: 700; color: var(--tm-text); }
.tm-testimonial-card__dest  { display: block; font-size: 0.8125rem; color: var(--tm-text-light); }

/* ── 15. Impressum Strip ───────────────────────────────────────────────────── */
.tm-impressum-strip {
	background: var(--tm-bg-light);
	border-top: 1px solid var(--tm-border);
	padding:    1.25rem 0;
	text-align: center;
}

.tm-impressum-strip p {
	font-size: 0.875rem;
	color:     var(--tm-text-mid);
}

/* ── 16. CTA Banner ────────────────────────────────────────────────────────── */
.tm-cta-banner {
	position:  relative;
	padding:   5rem 0;
	overflow:  hidden;
}

.tm-cta-banner__bg {
	position:   absolute;
	inset:      0;
	background: var(--tm-navy);
	background-image:
		radial-gradient(ellipse 50% 80% at 80% 50%, rgba(0,200,200,0.2) 0%, transparent 60%),
		radial-gradient(ellipse 30% 50% at 10% 60%, rgba(0,200,200,0.1) 0%, transparent 50%);
}

.tm-cta-banner__inner {
	position:    relative;
	z-index:     1;
	display:     flex;
	align-items: center;
	justify-content: space-between;
	gap:         3rem;
}

.tm-cta-banner__content { flex: 1; }

.tm-cta-banner__headline {
	font-family:   var(--tm-font-heading);
	font-size:     clamp(1.75rem, 4vw, 2.75rem);
	font-weight:   900;
	color:         var(--tm-white);
	margin-bottom: 1rem;
}

.tm-cta-banner__sub {
	font-size:     1rem;
	color:         rgba(255,255,255,0.72);
	max-width:     480px;
	margin-bottom: 2rem;
}

.tm-cta-banner__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.tm-cta-banner__badges {
	display:  flex;
	flex-direction: column;
	gap:      0.875rem;
	flex-shrink: 0;
}

.tm-cta-badge {
	display:       flex;
	align-items:   center;
	gap:           0.625rem;
	padding:       0.625rem 1.25rem;
	background:    rgba(255,255,255,0.07);
	border:        1px solid rgba(255,255,255,0.12);
	border-radius: 50px;
	color:         var(--tm-white);
	font-size:     0.875rem;
	font-weight:   600;
	white-space:   nowrap;
}

.tm-cta-badge__icon { font-size: 1.1rem; }

/* ── 17. Footer (Navy + Teal Akzent – passend zur neuen Theme-Palette) ─────── */
.tm-footer {
	position:   relative;
	background: var(--tm-navy);
	color:      var(--tm-white);
	padding:    4.5rem 0 0;
}

/* Teal Akzent-Streifen am oberen Rand */
.tm-footer__accent {
	display:    block;
	position:   absolute;
	top:        0; left: 0; right: 0;
	height:     4px;
	background: linear-gradient(90deg, var(--tm-primary) 0%, var(--tm-cta) 100%);
}

.tm-footer__grid {
	display: grid;
	grid-template-columns: 1.6fr repeat(3, 1fr);
	gap: 3rem;
	padding-bottom: 3rem;
	border-bottom: 1px solid rgba(255,255,255,0.10);
}

.tm-footer__logo-link {
	display: inline-block;
	margin-bottom: 1rem;
}
.tm-footer__logo-link img,
.tm-footer__logo-link .custom-logo {
	height:  48px;
	width:   auto;
	opacity: 0.95;
}

.tm-footer__tagline {
	font-family:   var(--tm-font-heading);
	font-size:     1rem;
	font-weight:   700;
	color:         var(--tm-primary);
	margin-bottom: 0.5rem;
}

.tm-footer__desc {
	font-size:   0.9rem;
	color:       rgba(255,255,255,0.62);
	line-height: 1.65;
	max-width:   320px;
}

.tm-footer__heading {
	font-family:    var(--tm-font-heading);
	font-size:      0.875rem;
	font-weight:    800;
	color:          var(--tm-white);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom:  1.25rem;
	position:       relative;
	padding-bottom: 0.625rem;
}
.tm-footer__heading::after {
	content:  '';
	position: absolute;
	left: 0; bottom: 0;
	width:    28px;
	height:   2px;
	background: var(--tm-primary);
	border-radius: 2px;
}

.tm-footer__list { display: flex; flex-direction: column; gap: 0.6rem; }

.tm-footer__list li a {
	font-size:  0.9rem;
	color:      rgba(255,255,255,0.68);
	transition: color var(--tm-transition);
}
.tm-footer__list li a:hover,
.tm-footer__list li a:focus-visible { color: var(--tm-primary); }

.tm-footer__list--contact { gap: 0.875rem; }
.tm-footer__list--contact li {
	display:     flex;
	align-items: flex-start;
	gap:         0.625rem;
	font-size:   0.9rem;
	color:       rgba(255,255,255,0.68);
}
.tm-footer__list--contact li a {
	color: rgba(255,255,255,0.85);
	transition: color var(--tm-transition);
	border-bottom: 1px solid transparent;
}
.tm-footer__list--contact li a:hover,
.tm-footer__list--contact li a:focus-visible {
	color: var(--tm-primary);
	border-bottom-color: var(--tm-primary);
}

.tm-footer__icon {
	flex-shrink: 0;
	width:  32px;
	height: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(42, 157, 143, 0.12);
	color: var(--tm-primary);
	border-radius: 8px;
	margin-top: -2px;
}

.tm-footer__bottom {
	display:         flex;
	justify-content: space-between;
	align-items:     center;
	gap:             1rem;
	padding:         1.5rem 0;
	flex-wrap:       wrap;
}

.tm-footer__impressum { font-size: 0.8125rem; color: rgba(255,255,255,0.55); }
.tm-footer__copy      { font-size: 0.8125rem; color: rgba(255,255,255,0.45); white-space: nowrap; }
.tm-footer__impressum strong { color: var(--tm-primary); font-weight: 700; }

/* ── 18. Page Hero (Konfigurator Page) ─────────────────────────────────────── */
.tm-page-hero {
	background: var(--tm-navy);
	padding:    9rem 0 5rem;
	text-align: center;
}

.tm-page-hero__title {
	font-family:   var(--tm-font-heading);
	font-size:     clamp(2rem, 5vw, 3rem);
	font-weight:   900;
	color:         var(--tm-white);
	margin-bottom: 1rem;
}

.tm-page-hero__headline {
	font-family:   var(--tm-font-heading);
	font-size:     clamp(1.25rem, 2.4vw, 1.625rem);
	font-weight:   700;
	color:         var(--tm-white);
	max-width:     680px;
	margin:        0 auto 0.85rem;
	line-height:   1.3;
}

.tm-page-hero__sub { font-size: 1.0625rem; color: rgba(255,255,255,0.75); max-width: 640px; margin: 0 auto; line-height: 1.55; }

.tm-page-hero__eyebrow {
	display:        inline-block;
	font-size:      0.78rem;
	font-weight:    700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color:          var(--tm-primary);
	margin-bottom:  0.75rem;
}

.tm-page-hero__chips {
	display:         flex;
	flex-wrap:       wrap;
	justify-content: center;
	gap:             0.5rem;
	margin-top:      1.75rem;
}

.tm-trust-chip {
	display:       inline-flex;
	align-items:   center;
	gap:           0.35rem;
	background:    rgba(255,255,255,0.08);
	border:        1px solid rgba(255,255,255,0.15);
	border-radius: 999px;
	padding:       0.3rem 0.85rem;
	font-size:     0.82rem;
	color:         rgba(255,255,255,0.85);
	white-space:   nowrap;
}

/* ── 18b. Tour-Concept Hero (linksbündig + Vorteils-Checkliste) ───────────────── */
.tm-page-hero--tourconcept { text-align: left; }

.tm-tc-hero {
	max-width: 720px;
	margin:    0 auto;
}

.tm-tc-hero__title { margin-bottom: 1rem; }

.tm-tc-hero__sub {
	margin:    0 0 1.75rem;
	max-width: 640px;
}

.tm-tc-hero__list {
	list-style: none;
	margin:     0;
	padding:    1.75rem 0 0;
	border-top: 1px solid rgba(255,255,255,0.12);
	display:    grid;
	gap:        0.9rem;
}

.tm-tc-hero__list li {
	position:     relative;
	padding-left: 2.4rem;
	font-size:    1.0625rem;
	line-height:  1.5;
	color:        rgba(255,255,255,0.9);
}

.tm-tc-hero__list li::before {
	content:       "";
	position:      absolute;
	left:          0;
	top:           0.05em;
	width:         1.6rem;
	height:        1.6rem;
	border-radius: 50%;
	background:    var(--tm-primary)
	               url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
	               center / 0.9rem no-repeat;
}

@media (max-width: 560px) {
	.tm-tc-hero__list li { padding-left: 2.1rem; font-size: 1rem; }
	.tm-tc-hero__list li::before { width: 1.4rem; height: 1.4rem; background-size: 0.8rem; }
}

/* ── 19. Modal ─────────────────────────────────────────────────────────────── */
.tm-modal {
	position: fixed;
	inset:    0;
	z-index:  2000;
	display:  flex;
	align-items: center;
	justify-content: center;
	padding:  1rem;
}

.tm-modal[hidden] { display: none; }

.tm-modal__overlay {
	position:   absolute;
	inset:      0;
	background: rgba(10, 15, 25, 0.75);
	backdrop-filter: blur(4px);
}

.tm-modal__content {
	position:      relative;
	background:    var(--tm-white);
	border-radius: var(--tm-radius-xl);
	padding:       2.5rem;
	width:         100%;
	max-width:     620px;
	max-height:    90svh;
	overflow-y:    auto;
	box-shadow:    var(--tm-shadow-xl);
	z-index:       1;
}

.tm-modal__close {
	position:      absolute;
	top:           1.25rem;
	right:         1.25rem;
	width:         36px;
	height:        36px;
	border-radius: 50%;
	background:    var(--tm-bg-light);
	color:         var(--tm-text-mid);
	font-size:     1rem;
	display:       flex;
	align-items:   center;
	justify-content: center;
	transition:    background var(--tm-transition), color var(--tm-transition);
}
.tm-modal__close:hover { background: var(--tm-primary); color: var(--tm-navy); }

.tm-modal__title {
	font-family:   var(--tm-font-heading);
	font-size:     1.5rem;
	font-weight:   900;
	color:         var(--tm-text);
	margin-bottom: 0.375rem;
}

.tm-modal__sub { font-size: 0.9375rem; color: var(--tm-text-light); margin-bottom: 1.25rem; }

/* Modal Summary */
.tm-modal-summary {
	display:       flex;
	flex-wrap:     wrap;
	gap:           0.5rem;
	padding:       1rem;
	background:    var(--tm-bg-light);
	border-radius: var(--tm-radius);
	margin-bottom: 1.5rem;
	font-size:     0.875rem;
	color:         var(--tm-text-mid);
}

.tm-modal-summary__total { font-weight: 700; color: var(--tm-primary); }

/* ── 20. Form ──────────────────────────────────────────────────────────────── */
.tm-form { display: flex; flex-direction: column; gap: 1rem; }

.tm-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.tm-form__group { display: flex; flex-direction: column; gap: 0.375rem; }

.tm-form__group label {
	font-size:   0.875rem;
	font-weight: 600;
	color:       var(--tm-text);
}

.tm-form__group label span { color: var(--tm-error); }

.tm-form__group input,
.tm-form__group textarea {
	padding:       0.75rem 1rem;
	border:        2px solid var(--tm-border);
	border-radius: var(--tm-radius-sm);
	font-family:   var(--tm-font-body);
	font-size:     0.9375rem;
	color:         var(--tm-text);
	background:    var(--tm-white);
	transition:    border-color var(--tm-transition), box-shadow var(--tm-transition);
	width:         100%;
}

.tm-form__group input:focus,
.tm-form__group textarea:focus {
	outline:      none;
	border-color: var(--tm-primary);
	box-shadow:   0 0 0 3px rgba(0, 200, 200, 0.15);
}

.tm-form__group textarea { resize: vertical; }

.tm-form__message {
	padding:       0.875rem 1rem;
	border-radius: var(--tm-radius-sm);
	font-size:     0.9rem;
	font-weight:   600;
}

.tm-form__message--success { background: rgba(34, 197, 94, 0.1); color: #15803d; border: 1px solid rgba(34,197,94,0.25); }
.tm-form__message--error   { background: rgba(239, 68, 68, 0.1);  color: #b91c1c; border: 1px solid rgba(239,68,68,0.25); }

.tm-form__submit { width: 100%; justify-content: center; padding: 1rem; }
.tm-form__submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none !important; }

.tm-form__legal { font-size: 0.8125rem; color: var(--tm-text-light); text-align: center; }
.tm-form__legal a { color: var(--tm-primary); text-decoration: underline; }

body.tm-modal-open { overflow: hidden; }

/* ── 21. Article Fallback (index.php) ──────────────────────────────────────── */
.tm-main > .container { padding-top: 120px; padding-bottom: 4rem; }

.tm-article { max-width: 720px; margin: 0 auto; }

.tm-article__title {
	font-family:   var(--tm-font-heading);
	font-size:     clamp(1.75rem, 4vw, 2.5rem);
	font-weight:   900;
	margin-bottom: 2rem;
}

.tm-article__content { font-size: 1rem; line-height: 1.8; color: var(--tm-text-mid); }

/* ── 22. Responsive ────────────────────────────────────────────────────────── */

/* Tablet: 1024px */
@media (max-width: 1024px) {
	.tm-konfigurator__layout { grid-template-columns: 1fr; }
	.tm-konfigurator__result { position: static; }

	.tm-hiw__layout { grid-template-columns: 1fr; }
	.tm-hiw__phone-wrap { display: none; }

	.tm-footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

	.tm-hero__container { grid-template-columns: 1fr 1fr; gap: 2rem; }

	.tm-cta-banner__inner { flex-direction: column; text-align: center; }
	.tm-cta-banner__sub { max-width: 100%; margin-left: auto; margin-right: auto; }
	.tm-cta-banner__actions { justify-content: center; }
	.tm-cta-banner__badges { flex-direction: row; flex-wrap: wrap; justify-content: center; }

	/* Features & Testimonials: 3 → 2 columns at tablet */
	.tm-features__grid { grid-template-columns: repeat(2, 1fr); }
	.tm-testimonials__grid { grid-template-columns: repeat(2, 1fr); }

	/* Destinations: slightly smaller cards on tablet */
	.tm-dest-card { width: 260px; height: 320px; }
}

/* Mobile: 768px */
@media (max-width: 768px) {
	/* Nav */
	.tm-header__nav, .tm-header__cta { display: none; }
	.tm-hamburger { display: flex; }

	/* Hero */
	.tm-hero { padding: 6.5rem 0 4rem; }
	.tm-page-hero { padding: 7rem 0 3.5rem; }
	.tm-hero__container { grid-template-columns: 1fr; gap: 2.5rem; }
	.tm-hero__widget-wrap { display: none; }

	/* Stats */
	.tm-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }

	/* Modules grid */
	.tm-modules { grid-template-columns: 1fr; }

	/* Features */
	.tm-features__grid { grid-template-columns: 1fr; }

	/* Testimonials */
	.tm-testimonials__grid { grid-template-columns: 1fr; }

	/* Footer */
	.tm-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
	.tm-footer__bottom { flex-direction: column; text-align: center; }

	/* Modal */
	.tm-modal__content { padding: 1.75rem 1.25rem; }
	.tm-form__row { grid-template-columns: 1fr; }

	/* Section padding */
	.tm-konfigurator,
	.tm-hiw,
	.tm-destinations,
	.tm-features,
	.tm-testimonials,
	.tm-cta-banner,
	.tm-form-page { padding: 3.5rem 0; }

	/* Destinations: smaller cards on mobile */
	.tm-dest-card { width: 220px; height: 270px; }
	.tm-dest-card__content { padding: 1.25rem; }
	.tm-dest-card__city { font-size: 1.25rem; }

	/* Upload area */
	.tm-upload-area { padding: 1.25rem 1rem; }
	.tm-upload-area p { font-size: 0.8125rem; }

	/* Savings box: stack vertically on mobile */
	.tm-savings-box { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
}

/* Small mobile: 480px */
@media (max-width: 480px) {
	.tm-hero__actions { flex-direction: column; }
	.tm-btn { width: 100%; justify-content: center; }
	.tm-cta-banner__actions { flex-direction: column; }
	.tm-modules { grid-template-columns: 1fr; }
	.tm-stats__grid { grid-template-columns: repeat(2, 1fr); }

	/* Destinations: even smaller on very small screens */
	.tm-dest-card { width: 190px; height: 240px; }
	.tm-dest-card__flag { font-size: 1.4rem; }
	.tm-dest-card__city { font-size: 1.1rem; }
	.tm-dest-card__saving { font-size: 0.75rem; padding: 0.2rem 0.6rem; }

	/* Features & Testimonials: 1-column (already set at 768px, but ensure here too) */
	.tm-features__grid { grid-template-columns: 1fr; }
	.tm-testimonials__grid { grid-template-columns: 1fr; }
}

/* =============================================================================
   Wizard / Mehrstufiges Formular
   ============================================================================= */

/* ── Wizard Step Navigator ─────────────────────────────────────────────────── */
.tm-wizard-nav {
	display:         flex;
	align-items:     center;
	justify-content: center;
	gap:             0;
	margin-bottom:   2.5rem;
}

.tm-wizard-nav__step {
	display:        flex;
	flex-direction: column;
	align-items:    center;
	gap:            0.375rem;
	position:       relative;
	z-index:        1;
}

.tm-wizard-nav__circle {
	width:           38px;
	height:          38px;
	border-radius:   50%;
	border:          2px solid var(--tm-border);
	background:      var(--tm-white);
	color:           var(--tm-text-light);
	font-family:     var(--tm-font-heading);
	font-weight:     800;
	font-size:       0.875rem;
	display:         flex;
	align-items:     center;
	justify-content: center;
	transition:      all var(--tm-transition);
}

.tm-wizard-nav__label {
	font-size:   0.7rem;
	font-weight: 600;
	color:       var(--tm-text-light);
	white-space: nowrap;
	transition:  color var(--tm-transition);
}

.tm-wizard-nav__line {
	flex:           1;
	height:         2px;
	background:     var(--tm-border);
	min-width:      40px;
	max-width:      80px;
	margin:         0 4px;
	margin-bottom:  20px;
	transition:     background var(--tm-transition);
}

/* Active step */
.tm-wizard-nav__step.is-active .tm-wizard-nav__circle {
	background:   var(--tm-primary);
	border-color: var(--tm-primary);
	color:        var(--tm-navy);
}
.tm-wizard-nav__step.is-active .tm-wizard-nav__label { color: var(--tm-primary); }

/* Completed step */
.tm-wizard-nav__step.is-done .tm-wizard-nav__circle {
	background:   var(--tm-primary);
	border-color: var(--tm-primary);
	color:        var(--tm-navy);
}
.tm-wizard-nav__step.is-done .tm-wizard-nav__circle::after {
	content:     '✓';
	font-size:   0.875rem;
	font-weight: 900;
}
.tm-wizard-nav__step.is-done .tm-wizard-nav__label { color: var(--tm-text-mid); }
.tm-wizard-nav__line.is-done { background: var(--tm-primary); }

/* ── Wizard Step Content ───────────────────────────────────────────────────── */
.tm-wizard-step { display: none; }
.tm-wizard-step.is-active { display: block; }

/* ── Step Navigation Buttons ──────────────────────────────────────────────── */
.tm-step-buttons {
	display:         flex;
	justify-content: space-between;
	align-items:     center;
	gap:             1rem;
	margin-top:      1.5rem;
	padding-top:     1.5rem;
	border-top:      1px solid var(--tm-border);
}

.tm-step-buttons .tm-btn--back {
	background:   transparent;
	border:       2px solid var(--tm-border);
	color:        var(--tm-text-mid);
	padding:      0.75rem 1.5rem;
	border-radius: 50px;
	font-weight:  700;
	font-size:    0.9rem;
	transition:   all var(--tm-transition);
}
.tm-step-buttons .tm-btn--back:hover {
	border-color: var(--tm-primary);
	color:        var(--tm-primary);
}
.tm-step-buttons .tm-btn--back[hidden] { display: none; }

.tm-step-buttons .tm-btn--next {
	margin-left: auto;
}

/* ── Best Rate Check Paket ─────────────────────────────────────────────────── */
.tm-paket-group {
	display:               grid;
	grid-template-columns: repeat(3, 1fr);
	gap:                   0.75rem;
	margin-top:            0.5rem;
}

.tm-paket-option {
	position:       relative;
	cursor:         default;
	pointer-events: none; /* Nur per JS via autoSelectPaket() steuerbar */
}

.tm-paket-option input[type="radio"] {
	position: absolute;
	opacity:  0;
	width:    0;
	height:   0;
}

.tm-paket-card {
	display:        flex;
	flex-direction: column;
	align-items:    center;
	gap:            0.375rem;
	padding:        1.125rem 0.75rem;
	border:         2px solid var(--tm-border);
	border-radius:  var(--tm-radius);
	background:     var(--tm-white);
	text-align:     center;
	transition:     all var(--tm-transition);
	cursor:         default;
}

.tm-paket-card__icon { font-size: 1.5rem; }
.tm-paket-card__name {
	font-family: var(--tm-font-heading);
	font-weight: 800;
	font-size:   0.875rem;
	color:       var(--tm-text);
}
.tm-paket-card__desc {
	font-size: 0.75rem;
	color:     var(--tm-text-light);
}

.tm-paket-option input:checked + .tm-paket-card {
	border-color: var(--tm-primary);
	background:   var(--tm-primary-light);
}
.tm-paket-option input:checked + .tm-paket-card .tm-paket-card__name {
	color: var(--tm-primary);
}

/* ── Persons Input ─────────────────────────────────────────────────────────── */
.tm-personen-group {
	display:               grid;
	grid-template-columns: 1fr 1fr;
	gap:                   0.75rem;
}

/* Kinder-Alter */
.tm-kinder-alter-wrap {
	margin-top: 1rem;
}
.tm-kinder-alter__heading {
	font-size:   0.8125rem;
	font-weight: 600;
	color:       var(--tm-text-mid);
	margin:      0 0 0.5rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.tm-kinder-alter {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}
.tm-kinder-alter__item {
	display:        flex;
	align-items:    center;
	gap:            0.4rem;
	font-size:      0.875rem;
	font-weight:    500;
	color:          var(--tm-text);
	white-space:    nowrap;
}
.tm-kinder-alter__select {
	padding:       0.35rem 0.5rem;
	border:        2px solid var(--tm-border);
	border-radius: var(--tm-radius-sm);
	background:    var(--tm-white);
	font-size:     0.875rem;
	color:         var(--tm-text);
	cursor:        pointer;
	transition:    border-color var(--tm-transition);
}
.tm-kinder-alter__select:focus {
	outline:       none;
	border-color:  var(--tm-primary);
}

.tm-number-input {
	display:     flex;
	align-items: center;
	gap:         0;
	border:      2px solid var(--tm-border);
	border-radius: var(--tm-radius-sm);
	overflow:    hidden;
	background:  var(--tm-white);
	transition:  border-color var(--tm-transition);
}
.tm-number-input:focus-within { border-color: var(--tm-primary); }

.tm-number-input button {
	width:       40px;
	height:      44px;
	font-size:   1.25rem;
	font-weight: 700;
	color:       var(--tm-text-mid);
	flex-shrink: 0;
	transition:  background var(--tm-transition), color var(--tm-transition);
}
.tm-number-input button:hover { background: var(--tm-primary-light); color: var(--tm-primary); }

.tm-number-input input[type="number"] {
	width:       100%;
	border:      none;
	padding:     0;
	text-align:  center;
	font-weight: 700;
	font-size:   1rem;
	color:       var(--tm-text);
	background:  transparent;
	-moz-appearance: textfield;
}
.tm-number-input input[type="number"]::-webkit-outer-spin-button,
.tm-number-input input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; }

/* ── Flexibilität Radio ────────────────────────────────────────────────────── */
.tm-flex-group {
	display: flex;
	gap:     0.625rem;
}

.tm-flex-option { position: relative; }
.tm-flex-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }

.tm-flex-label {
	display:       inline-flex;
	align-items:   center;
	gap:           0.375rem;
	padding:       0.5rem 1.25rem;
	border:        2px solid var(--tm-border);
	border-radius: 50px;
	font-size:     0.9rem;
	font-weight:   600;
	color:         var(--tm-text-mid);
	cursor:        pointer;
	transition:    all var(--tm-transition);
}
.tm-flex-option input:checked + .tm-flex-label {
	background:   var(--tm-primary);
	border-color: var(--tm-primary);
	color:        var(--tm-navy);
}
.tm-flex-label:hover { border-color: var(--tm-primary); color: var(--tm-primary); }
.tm-flex-option input:focus-visible + .tm-flex-label {
	outline: 3px solid var(--tm-primary);
	outline-offset: 2px;
}

/* ── Checkbox Options (Sammelzahlung / Datenschutz) ───────────────────────── */
.tm-checkbox-option {
	display:      flex;
	align-items:  flex-start;
	gap:          0.75rem;
	padding:      1rem 1.125rem;
	border:       2px solid var(--tm-border);
	border-radius: var(--tm-radius);
	background:   var(--tm-white);
	cursor:       pointer;
	transition:   border-color var(--tm-transition), background var(--tm-transition);
}
.tm-checkbox-option:has(input:checked) {
	border-color: var(--tm-primary);
	background:   var(--tm-primary-light);
}

.tm-checkbox-option input[type="checkbox"] {
	width:        20px;
	height:       20px;
	flex-shrink:  0;
	accent-color: var(--tm-primary);
	cursor:       pointer;
	margin-top:   1px;
}

.tm-checkbox-option__text {
	font-size:   0.9375rem;
	color:       var(--tm-text);
	line-height: 1.5;
}
.tm-checkbox-option__text strong { font-weight: 700; display: block; margin-bottom: 0.125rem; }
.tm-checkbox-option__text small  { font-size: 0.8125rem; color: var(--tm-text-light); }

/* Datenschutz (inline, kleiner) */
.tm-dsgvo-check {
	display:     flex;
	align-items: flex-start;
	gap:         0.625rem;
	margin-top:  0.25rem;
}
.tm-dsgvo-check input[type="checkbox"] {
	width:        18px;
	height:       18px;
	flex-shrink:  0;
	accent-color: var(--tm-primary);
	margin-top:   2px;
}
.tm-dsgvo-check label {
	font-size:   0.8125rem;
	color:       var(--tm-text-mid);
	line-height: 1.5;
	cursor:      pointer;
}
.tm-dsgvo-check label a { color: var(--tm-primary); text-decoration: underline; }

/* ── File Upload Area ──────────────────────────────────────────────────────── */
.tm-upload-area {
	border:        2px dashed var(--tm-border);
	border-radius: var(--tm-radius);
	padding:       1.75rem 1.25rem;
	text-align:    center;
	cursor:        pointer;
	transition:    border-color var(--tm-transition), background var(--tm-transition);
	background:    var(--tm-white);
	position:      relative;
}
.tm-upload-area:hover,
.tm-upload-area.is-drag-over {
	border-color: var(--tm-primary);
	background:   var(--tm-primary-light);
}

.tm-upload-area input[type="file"] {
	position: absolute;
	inset:    0;
	opacity:  0;
	cursor:   pointer;
	width:    100%;
	height:   100%;
}

.tm-upload-area__icon  { font-size: 2rem; margin-bottom: 0.5rem; }
.tm-upload-area__text  { font-weight: 600; color: var(--tm-text); margin-bottom: 0.25rem; }
.tm-upload-area__hint  { font-size: 0.8125rem; color: var(--tm-text-light); }

.tm-upload-list {
	display:        flex;
	flex-direction: column;
	gap:            0.5rem;
	margin-top:     0.75rem;
}

.tm-upload-item {
	display:       flex;
	align-items:   center;
	gap:           0.625rem;
	padding:       0.5rem 0.75rem;
	background:    var(--tm-bg-light);
	border-radius: var(--tm-radius-sm);
	font-size:     0.875rem;
}
.tm-upload-item__icon  { font-size: 1.125rem; flex-shrink: 0; }
.tm-upload-item__name  { flex: 1; font-weight: 600; color: var(--tm-text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tm-upload-item__size  { color: var(--tm-text-light); font-size: 0.75rem; }
.tm-upload-item__remove {
	color:       var(--tm-text-light);
	font-size:   1.125rem;
	line-height: 1;
	padding:     0 0.25rem;
	transition:  color var(--tm-transition);
}
.tm-upload-item__remove:hover { color: var(--tm-error); }

/* ── Result Panel: Wizard Fortschritt ─────────────────────────────────────── */
.tm-result-panel__step-info {
	display:       flex;
	align-items:   center;
	gap:           0.5rem;
	font-size:     0.8125rem;
	color:         rgba(255,255,255,0.6);
	margin-bottom: 1rem;
}
.tm-result-panel__step-dots {
	display: flex;
	gap:     4px;
}
.tm-result-panel__dot {
	width:         8px;
	height:        8px;
	border-radius: 50%;
	background:    rgba(255,255,255,0.25);
	transition:    background var(--tm-transition);
}
.tm-result-panel__dot.is-active  { background: var(--tm-primary); }
.tm-result-panel__dot.is-done    { background: rgba(0,200,200,0.5); }

.tm-result-summary {
	display:        flex;
	flex-direction: column;
	gap:            0.375rem;
	margin-bottom:  1rem;
}
.tm-result-summary__row {
	display:     flex;
	align-items: flex-start;
	gap:         0.5rem;
	font-size:   0.875rem;
}
.tm-result-summary__label {
	color:       rgba(255,255,255,0.55);
	min-width:   70px;
	flex-shrink: 0;
}
.tm-result-summary__value {
	color:       rgba(255,255,255,0.9);
	font-weight: 600;
}

/* ── Responsive Wizard ─────────────────────────────────────────────────────── */
@media (max-width: 768px) {
	.tm-paket-group      { grid-template-columns: 1fr; }
	.tm-personen-group   { grid-template-columns: 1fr; }
	.tm-wizard-nav__label { display: none; }
	.tm-wizard-nav__line  { min-width: 24px; }
	/* Step buttons: stack at mobile too */
	.tm-step-buttons { flex-direction: column-reverse; gap: 0.5rem; }
	.tm-step-buttons .tm-btn--next,
	.tm-step-buttons .tm-btn--back { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
	.tm-step-buttons { flex-direction: column-reverse; }
	.tm-step-buttons .tm-btn--next,
	.tm-step-buttons .tm-btn--back { width: 100%; justify-content: center; }
}

/* ── Stripe Payment Summary (Step 4) ─────────────────────────────────────── */
.tm-payment-summary {
	margin-top:    1.5rem;
	padding:       1.25rem;
	background:    linear-gradient(135deg, rgba(0,200,200,0.06) 0%, rgba(0,200,200,0.02) 100%);
	border:        2px solid rgba(0,200,200,0.25);
	border-radius: var(--tm-radius);
}
.tm-payment-summary__header {
	display:       flex;
	align-items:   center;
	gap:           0.5rem;
	margin-bottom: 0.75rem;
	font-size:     0.875rem;
	color:         var(--tm-text-mid);
}
.tm-payment-summary__header strong {
	font-weight: 700;
	color:       var(--tm-text);
}
.tm-payment-summary__row {
	display:         flex;
	justify-content: space-between;
	align-items:     baseline;
	gap:             1rem;
	margin-bottom:   0.75rem;
}
.tm-payment-summary__row span {
	font-size:  0.9375rem;
	color:      var(--tm-text);
}
.tm-payment-summary__row strong {
	font-size:   1.25rem;
	font-weight: 800;
	color:       var(--tm-primary);
	white-space: nowrap;
}
.tm-payment-summary__info {
	font-size:  0.8rem;
	color:      var(--tm-text-light);
	margin:     0;
	line-height: 1.5;
}

/* ── Payment Success Overlay ─────────────────────────────────────────────── */
.tm-payment-success {
	padding:       3rem 1.5rem;
	text-align:    center;
	background:    linear-gradient(135deg, rgba(0,200,200,0.08) 0%, rgba(0,200,200,0.02) 100%);
	border:        2px solid rgba(0,200,200,0.3);
	border-radius: var(--tm-radius);
	margin-bottom: 2rem;
}
.tm-payment-success__inner { max-width: 480px; margin: 0 auto; }
.tm-payment-success__icon  { font-size: 3.5rem; display: block; margin-bottom: 1rem; }
.tm-payment-success h3 {
	font-size:   1.5rem;
	font-weight: 800;
	color:       var(--tm-text);
	margin:      0;
}

/* ── Ersparnis-Box im Result-Panel ───────────────────────────────────────── */
.tm-savings-box {
	display:       flex;
	align-items:   center;
	gap:           0.75rem;
	margin-bottom: 1rem;
	padding:       0.875rem 1rem;
	background:    linear-gradient(135deg, rgba(22,163,74,0.12) 0%, rgba(22,163,74,0.05) 100%);
	border:        1px solid rgba(22,163,74,0.3);
	border-radius: var(--tm-radius-sm);
}
.tm-savings-box__icon {
	font-size:   1.75rem;
	flex-shrink: 0;
}
.tm-savings-box__text {
	display:        flex;
	flex-direction: column;
	gap:            0.1rem;
}
.tm-savings-box__label {
	font-size:   0.72rem;
	color:       rgba(255,255,255,0.65);
	line-height: 1.3;
}
.tm-savings-box__amount {
	font-size:   1.5rem;
	font-weight: 800;
	color:       #4ade80;
	line-height: 1.1;
}
.tm-savings-box__sub {
	font-size:  0.72rem;
	color:      rgba(255,255,255,0.55);
}
.tm-savings-box__modules {
	font-size:   0.78rem;
	font-weight: 700;
	color:       #4ade80;
	line-height: 1.2;
}

/* ── Gesamtstatistik unter der Ersparnis-Box ─────────────────────────────── */
.tm-savings-total {
	display:         flex;
	flex-direction:  column;
	align-items:     center;
	text-align:      center;
	gap:             0.15rem;
	padding:         0.55rem 0.75rem;
	background:      rgba(74,222,128,0.08);
	border:          1px solid rgba(74,222,128,0.2);
	border-radius:   var(--tm-radius-sm);
	margin-top:      0.5rem;
}
.tm-savings-total__label {
	font-size:  0.7rem;
	color:      rgba(255,255,255,0.55);
	line-height: 1.3;
}
.tm-savings-total__amount {
	font-size:   1.15rem;
	font-weight: 800;
	color:       #4ade80;
	line-height: 1.1;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ZWEI-PFAD-KACHELN (Hero)
   ═══════════════════════════════════════════════════════════════════════════ */
.tm-path-tiles {
	display:         flex;
	gap:             1.25rem;
	margin-top:      2rem;
}
.tm-path-tile {
	flex:            1;
	display:         flex;
	flex-direction:  column;
	align-items:     flex-start;
	gap:             0.5rem;
	padding:         1.5rem 1.5rem 1.25rem;
	background:      rgba(255,255,255,0.05);
	border:          1.5px solid rgba(255,255,255,0.12);
	border-radius:   var(--tm-radius);
	cursor:          pointer;
	text-align:      left;
	transition:      background 0.2s, border-color 0.2s, transform 0.15s;
	color:           inherit;
	font-family:     inherit;
	text-decoration: none;
}
.tm-path-tile:hover,
.tm-path-tile:focus-visible {
	background:      rgba(0,200,200,0.1);
	border-color:    var(--tm-primary);
	transform:       translateY(-3px);
	outline:         none;
}
.tm-path-tile__icon {
	font-size:       2rem;
	line-height:     1;
}
.tm-path-tile__title {
	font-size:       1.15rem;
	font-weight:     800;
	color:           #fff;
	margin:          0;
}
.tm-path-tile__desc {
	font-size:       0.85rem;
	color:           rgba(255,255,255,0.7);
	margin:          0;
	line-height:     1.4;
}
.tm-path-tile__cta {
	font-size:       0.9rem;
	font-weight:     700;
	color:           var(--tm-primary);
	margin-top:      0.5rem;
}
@media (max-width: 640px) {
	.tm-path-tiles {
		flex-direction: column;
	}
}

/* ═══════════════════════════════════════════════════════════════════════════
   MODAL OVERLAY + MODAL
   ═══════════════════════════════════════════════════════════════════════════ */
.tm-modal-overlay {
	position:        fixed;
	inset:           0;
	background:      rgba(10,15,25,0.75);
	z-index:         1000;
	backdrop-filter: blur(3px);
	opacity:         0;
	pointer-events:  none;
	transition:      opacity 0.25s;
}
.tm-modal-overlay[aria-hidden="false"] {
	opacity:         1;
	pointer-events:  auto;
}
.tm-modal {
	position:        fixed;
	top:             50%;
	left:            50%;
	transform:       translate(-50%, -48%) scale(0.97);
	width:           min(720px, 95vw);
	max-height:      90vh;
	display:         flex;
	flex-direction:  column;
	background:      #fff;
	border-radius:   var(--tm-radius);
	box-shadow:      0 20px 60px rgba(0,0,0,0.3);
	z-index:         1001;
	opacity:         0;
	pointer-events:  none;
	transition:      opacity 0.25s, transform 0.25s;
	overflow:        hidden;
}
.tm-modal[aria-hidden="false"] {
	opacity:         1;
	pointer-events:  auto;
	transform:       translate(-50%, -50%) scale(1);
}
body.tm-modal-open {
	overflow:        hidden;
}
.tm-modal__header {
	display:         flex;
	align-items:     center;
	justify-content: space-between;
	padding:         1.25rem 1.5rem;
	border-bottom:   1px solid #e5e7eb;
	flex-shrink:     0;
	background:      var(--tm-navy);
	color:           #fff;
}
.tm-modal__header h2 {
	margin:          0;
	font-size:       1.25rem;
	font-weight:     800;
	color:           #fff;
}
.tm-modal__close {
	display:         flex;
	align-items:     center;
	justify-content: center;
	width:           40px;
	height:          40px;
	border:          none;
	background:      rgba(255,255,255,0.1);
	color:           #fff;
	border-radius:   50%;
	cursor:          pointer;
	font-size:       1.1rem;
	transition:      background 0.15s;
	flex-shrink:     0;
}
.tm-modal__close:hover {
	background:      rgba(255,255,255,0.2);
}
.tm-modal__body {
	overflow-y:      auto;
	padding:         1.75rem 1.5rem;
	flex:            1;
}
/* Konfigurator inside modal: remove section padding */
.tm-modal__body .tm-konfigurator {
	padding:         0;
}
.tm-modal__body .tm-section-header {
	display:         none;
}
.tm-modal__body .tm-konfigurator__layout {
	gap:             1.5rem;
}
/* Modal form label + input styling (Travel Matcher) */
.tm-modal-form .tm-form__group {
	margin-bottom:   1.25rem;
}
.tm-modal-form label {
	display:         block;
	font-size:       0.875rem;
	font-weight:     600;
	color:           #374151;
	margin-bottom:   0.4rem;
}
.tm-modal-form input[type="text"],
.tm-modal-form input[type="email"],
.tm-modal-form input[type="tel"],
.tm-modal-form input[type="date"],
.tm-modal-form input[type="number"],
.tm-modal-form textarea {
	width:           100%;
	padding:         0.65rem 0.9rem;
	border:          1.5px solid #d1d5db;
	border-radius:   var(--tm-radius-sm);
	font-size:       0.95rem;
	font-family:     inherit;
	color:           #111827;
	transition:      border-color 0.15s;
	box-sizing:      border-box;
}
.tm-modal-form input:focus,
.tm-modal-form textarea:focus {
	outline:         none;
	border-color:    var(--tm-primary);
}
.tm-modal-form textarea {
	resize:          vertical;
	min-height:      90px;
}
.tm-modal-form .tm-form__row {
	display:         grid;
	grid-template-columns: 1fr 1fr;
	gap:             1rem;
}
.tm-modal-form .tm-form__hint {
	font-size:       0.78rem;
	color:           #6b7280;
	margin-top:      0.25rem;
}
/* Upload inside modal form */
.tm-modal-form .tm-upload-area {
	border:          2px dashed #d1d5db;
	border-radius:   var(--tm-radius-sm);
	padding:         1.5rem;
	text-align:      center;
	cursor:          pointer;
	transition:      border-color 0.2s, background 0.2s;
	position:        relative;
	background:      #fafafa;
}
.tm-modal-form .tm-upload-area input[type="file"] {
	position:        absolute;
	inset:           0;
	opacity:         0;
	cursor:          pointer;
}
.tm-modal-form .tm-upload-area__icon {
	font-size:       1.75rem;
}
.tm-modal-form .tm-upload-area__text {
	font-size:       0.9rem;
	color:           #374151;
	margin:          0.25rem 0 0;
}
.tm-modal-form .tm-upload-area__hint {
	font-size:       0.75rem;
	color:           #9ca3af;
	margin:          0;
}
.tm-modal-form .tm-upload-area:hover,
.tm-modal-form .tm-upload-area.is-drag-over {
	border-color:    var(--tm-primary);
	background:      rgba(0,200,200,0.04);
}
.tm-modal-form .tm-upload-list {
	margin-top:      0.75rem;
}
.tm-modal-form .tm-upload-item {
	display:         flex;
	align-items:     center;
	gap:             0.5rem;
	padding:         0.4rem 0.6rem;
	background:      #f3f4f6;
	border-radius:   var(--tm-radius-sm);
	margin-bottom:   0.35rem;
	font-size:       0.82rem;
}
.tm-modal-form .tm-upload-item__name {
	flex:            1;
	overflow:        hidden;
	text-overflow:   ellipsis;
	white-space:     nowrap;
}
.tm-modal-form .tm-upload-item__size {
	color:           #6b7280;
	flex-shrink:     0;
}
.tm-modal-form .tm-upload-item__remove {
	border:          none;
	background:      none;
	cursor:          pointer;
	color:           #ef4444;
	font-size:       1rem;
	padding:         0 0.2rem;
	line-height:     1;
}
/* DSGVO checkbox */
.tm-modal-form .tm-dsgvo-wrap {
	display:         flex;
	align-items:     flex-start;
	gap:             0.6rem;
	margin-top:      0.5rem;
}
.tm-modal-form .tm-dsgvo-wrap input[type="checkbox"] {
	width:           18px;
	height:          18px;
	flex-shrink:     0;
	margin-top:      2px;
	accent-color:    var(--tm-primary);
}
.tm-modal-form .tm-dsgvo-wrap label {
	font-size:       0.82rem;
	color:           #6b7280;
	font-weight:     400;
}
.tm-modal-form .tm-dsgvo-wrap a {
	color:           var(--tm-primary);
}
/* Submit button row */
.tm-modal-form__actions {
	margin-top:      1.5rem;
}
.tm-modal-form__actions .tm-btn {
	width:           100%;
	justify-content: center;
}
/* Form messages */
.tm-modal-form .tm-form__message {
	padding:         0.6rem 0.9rem;
	border-radius:   var(--tm-radius-sm);
	font-size:       0.875rem;
	margin-top:      0.75rem;
}
.tm-modal-form .tm-form__message--error {
	background:      #fef2f2;
	color:           #dc2626;
	border:          1px solid #fecaca;
}
.tm-modal-form .tm-form__message--success {
	background:      #f0fdf4;
	color:           #16a34a;
	border:          1px solid #bbf7d0;
}
/* Personen-Inputs inline */
.tm-modal-form .tm-personen-row {
	display:         grid;
	grid-template-columns: 1fr 1fr;
	gap:             1rem;
}
/* Number input in modal */
.tm-modal-form .tm-number-input {
	display:         flex;
	align-items:     center;
	gap:             0.5rem;
}
.tm-modal-form .tm-number-input button {
	width:           36px;
	height:          36px;
	border:          1.5px solid #d1d5db;
	border-radius:   50%;
	background:      #fff;
	cursor:          pointer;
	font-size:       1.1rem;
	font-weight:     700;
	color:           #374151;
	transition:      border-color 0.15s;
	display:         flex;
	align-items:     center;
	justify-content: center;
}
.tm-modal-form .tm-number-input button:hover {
	border-color:    var(--tm-primary);
	color:           var(--tm-primary);
}
.tm-modal-form .tm-number-input input {
	width:           52px;
	text-align:      center;
	border:          1.5px solid #d1d5db;
	border-radius:   var(--tm-radius-sm);
	padding:         0.45rem 0.3rem;
	font-size:       1rem;
	font-weight:     600;
}
/* Flexibilität toggle */
.tm-modal-form .tm-flex-group {
	display:         flex;
	gap:             0.75rem;
	flex-wrap:       wrap;
}
.tm-modal-form .tm-flex-option {
	display:         flex;
	align-items:     center;
	gap:             0.4rem;
	cursor:          pointer;
	font-size:       0.9rem;
}
/* Section heading within modal form */
.tm-modal-form__section-title {
	font-size:       1rem;
	font-weight:     700;
	color:           var(--tm-navy);
	margin:          1.5rem 0 0.75rem;
	padding-bottom:  0.4rem;
	border-bottom:   1px solid #e5e7eb;
}
.tm-modal-form__section-title:first-child {
	margin-top:      0;
}
/* ═══════════════════════════════════════════════════════════════════════════
   STANDALONE FORM PAGE (Travel Matcher / Tour Concept)
   ═══════════════════════════════════════════════════════════════════════════ */
.tm-form-page {
	padding:    5rem 0;
	background: #f9fafb;
}
.tm-form-page__container {
	max-width: 760px;
}
.tm-form-card {
	background:    #fff;
	border-radius: var(--tm-radius);
	box-shadow:    0 2px 16px rgba(0,0,0,0.08);
	padding:       2.5rem 2rem;
}
.tm-form-card__heading {
	font-size:     1rem;
	font-weight:   700;
	color:         var(--tm-navy);
	margin:        1.75rem 0 0.85rem;
	padding-bottom: 0.4rem;
	border-bottom: 1px solid #e5e7eb;
}
.tm-form-card__heading:first-child {
	margin-top: 0;
}
.tm-form__optional {
	font-weight: 400;
	color:       #9ca3af;
	font-size:   0.85em;
}
/* Standalone form inputs (reuse modal-form styles without prefix) */
.tm-form-card .tm-form__group {
	margin-bottom: 1.25rem;
}
.tm-form-card label {
	display:       block;
	font-size:     0.875rem;
	font-weight:   600;
	color:         #374151;
	margin-bottom: 0.4rem;
}
.tm-form-card input[type="text"],
.tm-form-card input[type="email"],
.tm-form-card input[type="tel"],
.tm-form-card input[type="date"],
.tm-form-card input[type="number"],
.tm-form-card textarea {
	width:         100%;
	padding:       0.65rem 0.9rem;
	border:        1.5px solid #d1d5db;
	border-radius: var(--tm-radius-sm);
	font-size:     0.95rem;
	font-family:   inherit;
	color:         #111827;
	transition:    border-color 0.15s;
	box-sizing:    border-box;
}
.tm-form-card input:focus,
.tm-form-card textarea:focus {
	outline:       none;
	border-color:  var(--tm-primary);
}
.tm-form-card textarea {
	resize:        vertical;
	min-height:    90px;
}
.tm-form-card .tm-form__row {
	display:               grid;
	grid-template-columns: 1fr 1fr;
	gap:                   1rem;
}
.tm-form-card .tm-personen-row {
	display:               grid;
	grid-template-columns: 1fr 1fr;
	gap:                   1rem;
}
.tm-form-card .tm-form__hint {
	font-size:  0.78rem;
	color:      #6b7280;
	margin-top: 0.25rem;
}
.tm-form-card .tm-upload-area {
	border:        2px dashed #d1d5db;
	border-radius: var(--tm-radius-sm);
	padding:       1.5rem;
	text-align:    center;
	cursor:        pointer;
	transition:    border-color 0.2s, background 0.2s;
	position:      relative;
	background:    #fafafa;
}
.tm-form-card .tm-upload-area input[type="file"] {
	position: absolute;
	inset:    0;
	opacity:  0;
	cursor:   pointer;
}
.tm-form-card .tm-upload-area__icon   { font-size: 1.75rem; }
.tm-form-card .tm-upload-area__text   { font-size: 0.9rem; color: #374151; margin: 0.25rem 0 0; }
.tm-form-card .tm-upload-area__hint   { font-size: 0.75rem; color: #9ca3af; margin: 0; }
.tm-form-card .tm-upload-area:hover,
.tm-form-card .tm-upload-area.is-drag-over {
	border-color: var(--tm-primary);
	background:   rgba(0,200,200,0.04);
}
.tm-form-card .tm-upload-list  { margin-top: 0.75rem; }
.tm-form-card .tm-upload-item {
	display:       flex;
	align-items:   center;
	gap:           0.5rem;
	padding:       0.4rem 0.6rem;
	background:    #f3f4f6;
	border-radius: var(--tm-radius-sm);
	margin-bottom: 0.35rem;
	font-size:     0.82rem;
}
.tm-form-card .tm-upload-item__name   { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tm-form-card .tm-upload-item__size   { color: #6b7280; flex-shrink: 0; }
.tm-form-card .tm-upload-item__remove { border: none; background: none; cursor: pointer; color: #ef4444; font-size: 1rem; padding: 0 0.2rem; }
.tm-form-card .tm-flex-group {
	display:  flex;
	gap:      0.75rem;
	flex-wrap: wrap;
}
.tm-form-card .tm-flex-option {
	display:     flex;
	align-items: center;
	gap:         0.4rem;
	cursor:      pointer;
	font-size:   0.9rem;
	font-weight: 400;
}
.tm-form-card .tm-number-input {
	display:     flex;
	align-items: center;
	gap:         0.5rem;
}
.tm-form-card .tm-number-input button {
	width:           36px;
	height:          36px;
	border:          1.5px solid #d1d5db;
	border-radius:   50%;
	background:      #fff;
	cursor:          pointer;
	font-size:       1.1rem;
	font-weight:     700;
	color:           #374151;
	transition:      border-color 0.15s;
	display:         flex;
	align-items:     center;
	justify-content: center;
}
.tm-form-card .tm-number-input button:hover { border-color: var(--tm-primary); color: var(--tm-primary); }
.tm-form-card .tm-number-input input {
	width:         52px;
	text-align:    center;
	border:        1.5px solid #d1d5db;
	border-radius: var(--tm-radius-sm);
	padding:       0.45rem 0.3rem;
	font-size:     1rem;
	font-weight:   600;
}
.tm-form-card .tm-dsgvo-wrap {
	display:     flex;
	align-items: flex-start;
	gap:         0.6rem;
	margin-top:  0.5rem;
}
.tm-form-card .tm-dsgvo-wrap input[type="checkbox"] {
	width:      18px;
	height:     18px;
	flex-shrink: 0;
	margin-top: 2px;
	accent-color: var(--tm-primary);
}
.tm-form-card .tm-dsgvo-wrap label {
	font-size:   0.82rem;
	color:       #6b7280;
	font-weight: 400;
}
.tm-form-card .tm-dsgvo-wrap a { color: var(--tm-primary); }
.tm-form-card .tm-form__message {
	padding:       0.6rem 0.9rem;
	border-radius: var(--tm-radius-sm);
	font-size:     0.875rem;
	margin-top:    0.75rem;
}
.tm-form-card .tm-form__message--error   { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.tm-form-card .tm-form__message--success { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }
.tm-form-card .tm-modal-form__actions { margin-top: 1.5rem; }
.tm-form-card .tm-modal-form__actions .tm-btn { width: 100%; justify-content: center; }
@media (max-width: 640px) {
	.tm-form-card { padding: 1.5rem 1rem; }
	.tm-form-card .tm-form__row,
	.tm-form-card .tm-personen-row { grid-template-columns: 1fr; }
}

/* Wide variant for Tour Concept wizard (has 2-column layout) */
.tm-modal--wide {
	width:       min(960px, 96vw);
}
@media (max-width: 640px) {
	.tm-modal__body {
		padding:     1.25rem 1rem;
	}
	.tm-modal-form .tm-form__row,
	.tm-modal-form .tm-personen-row {
		grid-template-columns: 1fr;
	}
}

/* ═══════════════════════════════════════════════════════════════════════════
   TRAVEL MATCHER PAGE – Mini Steps + Sidebar
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Mini Steps Bar ──────────────────────────────────────────────────────── */
.tm-tm-steps {
	background:    #fff;
	border-bottom: 1px solid #e5e7eb;
	padding:       2.5rem 0;
}
.tm-tm-steps__grid {
	display:         flex;
	align-items:     flex-start;
	justify-content: center;
	gap:             0;
}
.tm-tm-steps__item {
	flex:       1;
	max-width:  240px;
	text-align: center;
	padding:    0 1rem;
}
.tm-tm-steps__label {
	display:        block;
	font-size:      0.7rem;
	font-weight:    700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color:          var(--tm-primary);
	margin-bottom:  0.5rem;
}
.tm-tm-steps__icon {
	display:       block;
	font-size:     2rem;
	margin-bottom: 0.5rem;
}
.tm-tm-steps__title {
	display:     block;
	font-size:   0.9375rem;
	font-weight: 700;
	color:       var(--tm-navy);
	margin-bottom: 0.35rem;
}
.tm-tm-steps__desc {
	font-size:  0.8125rem;
	color:      #6b7280;
	margin:     0;
	line-height: 1.45;
}
.tm-tm-steps__arrow {
	font-size:   1.5rem;
	color:       var(--tm-primary);
	flex-shrink: 0;
	margin-top:  1.15rem;
	padding:     0 0.25rem;
}

/* ── Form page with sidebar ──────────────────────────────────────────────── */
.tm-form-page__container--with-sidebar {
	display:               grid;
	grid-template-columns: 1fr 340px;
	align-items:           start;
	gap:                   2.5rem;
	max-width:             var(--tm-container);
}

/* ── Form sections (icon header) ─────────────────────────────────────────── */
.tm-form-section {
	padding-bottom: 1.5rem;
	margin-bottom:  1.5rem;
	border-bottom:  1px solid #f3f4f6;
}
.tm-form-section:last-of-type {
	border-bottom:  none;
	margin-bottom:  0;
	padding-bottom: 0;
}
.tm-form-section__header {
	display:     flex;
	align-items: flex-start;
	gap:         0.75rem;
	margin-bottom: 1.25rem;
}
.tm-form-section__icon {
	font-size:    1.5rem;
	flex-shrink:  0;
	margin-top:   0.1rem;
	line-height:  1;
}
.tm-form-section__title {
	font-size:     1rem;
	font-weight:   700;
	color:         var(--tm-navy);
	margin:        0 0 0.2rem;
	padding:       0;
	border:        none;
}
.tm-form-section__sub {
	font-size:  0.8125rem;
	color:      #6b7280;
	margin:     0;
}

/* ── Trust Sidebar ───────────────────────────────────────────────────────── */
.tm-trust-sidebar {
	display:        flex;
	flex-direction: column;
	gap:            1.25rem;
}
.tm-trust-sidebar__card {
	background:    #fff;
	border-radius: var(--tm-radius);
	box-shadow:    0 2px 12px rgba(0,0,0,0.07);
	padding:       1.5rem 1.25rem;
}
.tm-trust-sidebar__card--quote {
	background: linear-gradient(135deg, var(--tm-navy), #243040);
	color:      #fff;
}
.tm-trust-sidebar__card--next {
	background: var(--tm-primary-light);
	border:     1px solid rgba(0,200,200,0.2);
}
.tm-trust-sidebar__title {
	font-size:     0.875rem;
	font-weight:   700;
	color:         var(--tm-navy);
	margin:        0 0 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.tm-trust-sidebar__card--quote .tm-trust-sidebar__title {
	color: rgba(255,255,255,0.6);
}

/* Benefits list */
.tm-trust-list {
	list-style: none;
	margin:     0;
	padding:    0;
	display:    flex;
	flex-direction: column;
	gap:        0.6rem;
}
.tm-trust-list li {
	display:     flex;
	align-items: flex-start;
	gap:         0.5rem;
}

/* ── 20. FAQ (Accordion) ─────────────────────────────────────────────────────── */
.tm-page-hero__title-soft { opacity: 0.55; font-weight: 700; }

.tm-faq { padding: 3.5rem 0 4.5rem; background: #f5f7f9; }
.tm-faq__container { max-width: var(--tm-container); }

.tm-faq__item {
	background:     var(--tm-white);
	border:        1px solid rgba(31,61,84,0.10);
	border-radius: 14px;
	margin-bottom: 0.85rem;
	overflow:      hidden;
	transition:    border-color 0.2s ease, box-shadow 0.2s ease;
}
.tm-faq__item[open] {
	border-color: rgba(42,157,143,0.45);
	box-shadow:   0 6px 24px rgba(31,61,84,0.07);
}

.tm-faq__q {
	list-style:    none;
	cursor:        pointer;
	display:       flex;
	align-items:   center;
	justify-content: space-between;
	gap:           1rem;
	padding:       1.15rem 1.35rem;
	font-family:   var(--tm-font-heading);
	font-weight:   700;
	font-size:     1.05rem;
	color:         var(--tm-navy);
	line-height:   1.35;
}
.tm-faq__q::-webkit-details-marker { display: none; }
.tm-faq__q:hover { color: var(--tm-primary-dark); }

.tm-faq__icon {
	flex:          none;
	width:         1.7rem;
	height:        1.7rem;
	border-radius: 50%;
	background:    var(--tm-primary-light);
	position:      relative;
	transition:    background 0.2s ease;
}
.tm-faq__icon::before,
.tm-faq__icon::after {
	content:       "";
	position:      absolute;
	left:          50%;
	top:           50%;
	width:         0.72rem;
	height:        2px;
	border-radius: 2px;
	background:    var(--tm-primary);
	transform:     translate(-50%, -50%);
}
.tm-faq__icon::after {
	transform:  translate(-50%, -50%) rotate(90deg);
	transition: transform 0.25s ease, opacity 0.2s ease;
}
.tm-faq__item[open] .tm-faq__icon { background: var(--tm-primary); }
.tm-faq__item[open] .tm-faq__icon::before,
.tm-faq__item[open] .tm-faq__icon::after { background: #ffffff; }
.tm-faq__item[open] .tm-faq__icon::after { transform: translate(-50%, -50%) rotate(0deg); opacity: 0; }

.tm-faq__a {
	padding:     0 1.35rem 1.3rem;
	color:       #44515b;
	font-size:   1rem;
	line-height: 1.6;
}
.tm-faq__a p { margin: 0 0 0.7rem; }
.tm-faq__a p:last-child { margin-bottom: 0; }
.tm-faq__a strong { color: var(--tm-navy); }
.tm-faq__a ul { list-style: none; margin: 0 0 0.85rem; padding: 0; display: grid; gap: 0.45rem; }
.tm-faq__a ul:last-child { margin-bottom: 0; }
.tm-faq__a li { position: relative; padding-left: 1.4rem; }
.tm-faq__a li::before {
	content: ""; position: absolute; left: 0; top: 0.58em;
	width: 6px; height: 6px; border-radius: 50%; background: var(--tm-primary);
}

.tm-faq__promise {
	margin-top:    2rem;
	background:     var(--tm-navy);
	border-radius: 16px;
	padding:       2.25rem 1.75rem;
	text-align:    center;
}
.tm-faq__promise-title {
	font-family: var(--tm-font-heading);
	font-weight: 900;
	font-size:   1.45rem;
	color:       var(--tm-white);
	margin:      0 0 0.85rem;
}
.tm-faq__promise-body p { margin: 0 0 0.6rem; color: rgba(255,255,255,0.82); line-height: 1.6; }
.tm-faq__promise-body p:last-child { margin-bottom: 0; }
.tm-faq__promise-body strong { color: var(--tm-primary); font-size: 1.12rem; }

@media (max-width: 560px) {
	.tm-faq { padding: 2.5rem 0 3rem; }
	.tm-faq__q { padding: 1rem 1.05rem; font-size: 0.97rem; }
	.tm-faq__a { padding: 0 1.05rem 1.1rem; }
	.tm-faq__promise { padding: 1.75rem 1.25rem; }
}

/* ── 21. Travel-Matcher Formular (v3.17) ─────────────────────────────────────── */
.tm-input-icon { position: relative; }
.tm-input-icon__icon {
	position: absolute; left: 0.9rem; top: 0.85rem; font-size: 1rem; opacity: 0.65; pointer-events: none;
}
.tm-input-icon__field { padding-left: 2.5rem !important; resize: vertical; min-height: 48px; }

.tm-or-divider {
	display: flex; align-items: center; text-align: center;
	color: #9aa6b2; font-size: 0.85rem; margin: 1.1rem 0;
}
.tm-or-divider::before, .tm-or-divider::after {
	content: ""; flex: 1; height: 1px; background: rgba(31,61,84,0.12);
}
.tm-or-divider span { padding: 0 0.9rem; }

.tm-toggle-row {
	display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 1rem;
}
.tm-toggle-card {
	display: flex; align-items: flex-start; gap: 0.6rem;
	border: 1px solid rgba(31,61,84,0.14); border-radius: 12px;
	padding: 0.85rem 0.95rem; cursor: pointer; transition: border-color .15s, background .15s;
}
.tm-toggle-card:hover { border-color: rgba(42,157,143,0.5); }
.tm-toggle-card input { position: absolute; opacity: 0; width: 0; height: 0; }
.tm-toggle-card__box {
	flex: none; width: 22px; height: 22px; border-radius: 6px;
	border: 2px solid rgba(31,61,84,0.25); margin-top: 1px; position: relative; transition: all .15s;
}
.tm-toggle-card__box::after {
	content: ""; position: absolute; left: 6px; top: 2px; width: 6px; height: 11px;
	border: solid #fff; border-width: 0 2.5px 2.5px 0; transform: rotate(45deg) scale(0); transition: transform .15s;
}
.tm-toggle-card input:checked ~ .tm-toggle-card__box { background: var(--tm-primary); border-color: var(--tm-primary); }
.tm-toggle-card input:checked ~ .tm-toggle-card__box::after { transform: rotate(45deg) scale(1); }
.tm-toggle-card input:checked ~ .tm-toggle-card__text strong { color: var(--tm-primary); }
.tm-toggle-card:has(input:checked) { background: rgba(42,157,143,0.06); border-color: rgba(42,157,143,0.5); }
.tm-toggle-card__text { display: flex; flex-direction: column; gap: 1px; line-height: 1.35; }
.tm-toggle-card__text strong { font-size: 0.95rem; color: var(--tm-navy); }
.tm-toggle-card__text small { font-size: 0.8rem; color: #6b7785; }

.tm-flex-block {
	margin-top: 1rem; padding: 1.1rem; border-radius: 12px;
	background: rgba(31,61,84,0.04); border: 1px dashed rgba(31,61,84,0.15);
}

.tm-wchips { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.tm-wchip {
	display: inline-flex; align-items: center; gap: 0.4rem;
	border: 1px solid rgba(31,61,84,0.16); background: #fff; color: var(--tm-navy);
	border-radius: 999px; padding: 0.5rem 0.95rem; font-size: 0.875rem; cursor: pointer;
	transition: all .15s; font-family: inherit;
}
.tm-wchip:hover { border-color: rgba(42,157,143,0.6); }
.tm-wchip.is-selected {
	background: var(--tm-primary); border-color: var(--tm-primary); color: #fff;
}
.tm-wchip.is-selected span { filter: grayscale(0); }

.tm-ki-box {
	display: flex; align-items: flex-start; gap: 0.7rem; margin-top: 1.1rem;
	border: 1px solid rgba(42,157,143,0.35); background: rgba(42,157,143,0.07);
	border-radius: 12px; padding: 0.95rem 1.05rem; cursor: pointer; transition: all .15s;
}
.tm-ki-box:hover { border-color: var(--tm-primary); }
.tm-ki-box input { position: absolute; opacity: 0; width: 0; height: 0; }
.tm-ki-box__icon { font-size: 1.2rem; line-height: 1.3; }
.tm-ki-box__text { display: flex; flex-direction: column; gap: 1px; line-height: 1.35; }
.tm-ki-box__text strong { font-size: 0.95rem; color: var(--tm-navy); }
.tm-ki-box__text small { font-size: 0.82rem; color: #5d6b78; }
.tm-ki-box.is-active { background: rgba(42,157,143,0.14); border-color: var(--tm-primary); box-shadow: 0 0 0 3px rgba(42,157,143,0.12); }

.tm-btn--block { width: 100%; justify-content: center; font-size: 1.05rem; padding: 1rem 1.5rem; }
.tm-form-secure { text-align: center; font-size: 0.82rem; color: #8a95a1; margin-top: 0.85rem; }

.tm-benefit-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.tm-benefit-list li { display: flex; align-items: flex-start; gap: 0.7rem; }
.tm-benefit-list__check {
	flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--tm-primary);
	color: #fff; font-size: 0.8rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.tm-benefit-list li strong { display: block; font-size: 0.9rem; color: var(--tm-navy); line-height: 1.35; }
.tm-benefit-list li small { display: block; font-size: 0.82rem; color: #6b7785; margin-top: 2px; line-height: 1.45; }

.tm-process-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem; }
.tm-process-list li { display: flex; align-items: flex-start; gap: 0.8rem; position: relative; }
.tm-process-list__num {
	flex: none; width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--tm-primary);
	color: var(--tm-primary); font-size: 0.85rem; font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.tm-process-list li strong { display: block; font-size: 0.9rem; color: var(--tm-navy); line-height: 1.35; }
.tm-process-list li small { display: block; font-size: 0.82rem; color: #6b7785; margin-top: 2px; line-height: 1.45; }

.tm-sidebar-brand {
	display: flex; gap: 0.55rem; align-items: flex-start;
	font-size: 0.82rem; color: #6b7785; line-height: 1.5; padding: 0 0.25rem;
}
.tm-sidebar-brand strong { color: var(--tm-navy); font-weight: 700; }

@media (max-width: 560px) {
	.tm-toggle-row { grid-template-columns: 1fr; }
}

/* ── 22. Travel-Matcher Label-Fix (v3.19) ────────────────────────────────────── */
/* .tm-form-card label erzwingt display:block — Karten-Labels zurücksetzen */
.tm-form-card label.tm-toggle-card,
.tm-form-card label.tm-ki-box {
	display:       flex;
	margin-bottom: 0;
	font-weight:   400;
	font-size:     inherit;
	color:         inherit;
}
.tm-toggle-card__box { display: block; }
.tm-input-icon__field { min-height: 50px; }

/* ── 23. Sidebar-Brand Fix (v3.20) ───────────────────────────────────────────── */
.tm-sidebar-brand__icon { flex: none; line-height: 1.5; }
.tm-sidebar-brand__text { flex: 1; }

/* ── 24. 1:1-Feinschliff (v3.21): SVG-Icons + einzeiliges Link-Feld ───────────── */
/* Abschnitts-Header-Icon als teal-getönter Container */
.tm-form-section__icon {
	width:           44px;
	height:          44px;
	border-radius:   12px;
	background:      rgba(42,157,143,0.10);
	color:           var(--tm-primary);
	display:         inline-flex;
	align-items:     center;
	justify-content: center;
	font-size:       0;
	margin-top:      0;
}
.tm-form-section__icon svg { width: 23px; height: 23px; }

/* Sidebar-Card-Titel-Icon (Geschenk) */
.tm-trust-sidebar__title-icon { color: var(--tm-primary); }
.tm-trust-sidebar__title-icon svg { width: 17px; height: 17px; vertical-align: -3px; margin-right: 3px; }

/* Brand-Shield */
.tm-sidebar-brand__icon svg { width: 17px; height: 17px; color: var(--tm-primary); display: block; }

/* Button-Lupe */
.tm-btn__icon { display: inline-flex; }
.tm-btn__icon svg { width: 19px; height: 19px; vertical-align: -4px; margin-right: 4px; }

/* Link-Feld einzeilig (überschreibt .tm-form-card textarea) */
.tm-form-card textarea.tm-input-icon__field {
	height:     52px;
	min-height: 52px;
	resize:     none;
	overflow-y: auto;
	white-space: nowrap;
}

/* ── 25. Tour-Concept Intro-Block (v3.22) ────────────────────────────────────── */
.tm-tc-intro { padding: 3.5rem 0 1rem; text-align: center; }
.tm-tc-intro__headline {
	font-family: var(--tm-font-heading);
	font-weight: 900;
	font-size:   clamp(1.9rem, 4vw, 3rem);
	color:       var(--tm-navy);
	margin:      0 0 1.1rem;
	line-height: 1.12;
}
.tm-tc-intro__accent { color: var(--tm-primary); }
.tm-tc-intro__sub {
	max-width: 780px; margin: 0 auto 2.75rem;
	font-size: 1.0625rem; color: #5d6b78; line-height: 1.6;
}
.tm-tc-intro__sub strong { color: var(--tm-navy); font-weight: 700; }

.tm-tc-features {
	display: grid; grid-template-columns: repeat(5, 1fr);
	max-width: 1120px; margin: 0 auto 2.5rem;
}
.tm-tc-feature {
	display: flex; flex-direction: column; align-items: center; text-align: center;
	padding: 0 1.1rem; border-left: 1px solid rgba(31,61,84,0.08);
}
.tm-tc-feature:first-child { border-left: none; }
.tm-tc-feature__icon {
	width: 60px; height: 60px; border-radius: 50%;
	background: rgba(42,157,143,0.10); color: var(--tm-primary);
	display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.tm-tc-feature__icon svg { width: 27px; height: 27px; }
.tm-tc-feature strong { font-size: 1rem; color: var(--tm-navy); margin-bottom: 0.35rem; }
.tm-tc-feature span { font-size: 0.9rem; color: #6b7785; line-height: 1.45; }

.tm-tc-idea-box {
	display: flex; align-items: flex-start; gap: 1rem;
	max-width: 900px; margin: 0 auto; text-align: left;
	background: rgba(42,157,143,0.06); border: 1px solid rgba(42,157,143,0.18);
	border-radius: 16px; padding: 1.5rem 1.75rem;
}
.tm-tc-idea-box__icon { flex: none; color: var(--tm-primary); margin-top: 2px; }
.tm-tc-idea-box__icon svg { width: 27px; height: 27px; }
.tm-tc-idea-box__text strong { display: block; font-size: 1.05rem; color: var(--tm-navy); margin-bottom: 0.3rem; }
.tm-tc-idea-box__text span { font-size: 0.95rem; color: #5d6b78; line-height: 1.55; }

@media (max-width: 768px) {
	.tm-tc-features { grid-template-columns: repeat(2, 1fr); gap: 2.25rem 0; }
	.tm-tc-feature, .tm-tc-feature:first-child { border-left: none; }
}
@media (max-width: 480px) {
	.tm-tc-features { grid-template-columns: 1fr; }
	.tm-tc-idea-box { flex-direction: column; gap: 0.6rem; }
}

/* ── 26. Tour-Concept Planungsformular (v3.24) ───────────────────────────────── */
.tm-form__row--3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }

/* Toggle-Karten mit Icon (statt Checkbox) */
.tm-toggle-card--icon { align-items: center; }
.tm-toggle-card__ico { flex: none; width: 26px; height: 26px; color: var(--tm-primary); display: inline-flex; }
.tm-toggle-card__ico svg { width: 24px; height: 24px; }
.tm-form-card label.tm-toggle-card--icon { display: flex; }
.tm-toggle-card--icon:has(input:checked) { background: rgba(42,157,143,0.08); border-color: var(--tm-primary); }

/* Pakete */
.tm-pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.25rem; }
.tm-price-card {
	position: relative; display: flex; flex-direction: column; align-items: center; text-align: center;
	border: 1.5px solid rgba(31,61,84,0.14); border-radius: 16px; padding: 1.75rem 1.25rem 1.5rem; cursor: pointer;
	transition: border-color .15s, box-shadow .15s; background: #fff;
}
.tm-form-card label.tm-price-card { display: flex; margin-bottom: 0; font-weight: 400; }
.tm-price-card input { position: absolute; opacity: 0; width: 0; height: 0; }
.tm-price-card.is-popular { box-shadow: 0 8px 30px rgba(42,157,143,0.12); }
.tm-price-card:has(input:checked) { border-color: var(--tm-primary); border-width: 2px; }
.tm-price-card__badge {
	position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
	background: var(--tm-primary); color: #fff; font-size: 0.7rem; font-weight: 700;
	letter-spacing: 0.05em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; white-space: nowrap;
}
.tm-price-card__radio {
	width: 22px; height: 22px; border-radius: 50%; border: 2px solid rgba(31,61,84,0.25);
	margin-bottom: 0.75rem; position: relative; transition: all .15s;
}
.tm-price-card:has(input:checked) .tm-price-card__radio { border-color: var(--tm-primary); }
.tm-price-card:has(input:checked) .tm-price-card__radio::after {
	content: ""; position: absolute; inset: 4px; border-radius: 50%; background: var(--tm-primary);
}
.tm-price-card__name { font-size: 0.78rem; color: #8a95a1; }
.tm-price-card__tier { font-family: var(--tm-font-heading); font-weight: 900; font-size: 1.5rem; color: var(--tm-navy); margin: 0 0 0.2rem; }
.tm-price-card.is-popular .tm-price-card__tier { color: var(--tm-primary); }
.tm-price-card__bausteine { font-size: 0.85rem; color: #6b7785; margin-bottom: 0.65rem; }
.tm-price-card__price { font-family: var(--tm-font-heading); font-weight: 900; font-size: 1.9rem; color: var(--tm-navy); margin-bottom: 1rem; }
.tm-price-card__ex-label { align-self: flex-start; font-size: 0.78rem; color: #8a95a1; margin-bottom: 0.3rem; }
.tm-price-card__examples { list-style: none; margin: 0 0 1rem; padding: 0; align-self: stretch; text-align: left; }
.tm-price-card__examples li { position: relative; padding-left: 0.9rem; font-size: 0.82rem; color: #5d6b78; line-height: 1.5; margin-bottom: 2px; }
.tm-price-card__examples li::before { content: "•"; position: absolute; left: 0; color: var(--tm-primary); }
.tm-price-card__features { list-style: none; margin: auto 0 0; padding: 0.85rem 0 0; align-self: stretch; text-align: left; border-top: 1px solid rgba(31,61,84,0.08); display: grid; gap: 0.45rem; }
.tm-price-card__features li { display: flex; align-items: flex-start; gap: 0.45rem; font-size: 0.82rem; color: var(--tm-navy); line-height: 1.4; }
.tm-price-card__features svg { flex: none; width: 16px; height: 16px; color: var(--tm-primary); margin-top: 1px; }

/* Note-Box (100% anrechenbar) */
.tm-note-box {
	display: flex; align-items: flex-start; gap: 0.85rem;
	background: rgba(42,157,143,0.07); border: 1px solid rgba(42,157,143,0.18); border-radius: 12px; padding: 1rem 1.25rem;
}
.tm-note-box__icon { flex: none; color: var(--tm-primary); margin-top: 1px; }
.tm-note-box__icon svg { width: 22px; height: 22px; }
.tm-note-box strong { display: block; font-size: 0.92rem; color: var(--tm-navy); margin-bottom: 2px; }
.tm-note-box span { font-size: 0.85rem; color: #5d6b78; line-height: 1.5; }

/* Zeichenzähler */
.tm-char-count { text-align: right; font-size: 0.78rem; color: #9aa6b2; margin-top: 0.3rem; }

/* Sidebar: Mehrwert mit Icon-Kreis statt Häkchen */
.tm-benefit-list__check--svg { background: rgba(42,157,143,0.10); color: var(--tm-primary); width: 38px; height: 38px; }
.tm-benefit-list__check--svg svg { width: 20px; height: 20px; }
.tm-trust-sidebar__title--accent { color: var(--tm-primary); }

/* Prozess mit Icons */
.tm-process-list--icons .tm-process-list__icon { color: var(--tm-primary); margin-left: -0.2rem; }
.tm-process-list--icons .tm-process-list__icon svg { width: 18px; height: 18px; }

/* Sicherheits-Box */
.tm-security-card { display: flex; align-items: flex-start; gap: 0.8rem; }
.tm-security-card__icon { flex: none; color: var(--tm-primary); }
.tm-security-card__icon svg { width: 24px; height: 24px; }
.tm-security-card strong { display: block; font-size: 0.92rem; color: var(--tm-navy); margin-bottom: 2px; }
.tm-security-card span { font-size: 0.84rem; color: #6b7785; line-height: 1.5; }

@media (max-width: 768px) {
	.tm-pricing { grid-template-columns: 1fr; }
	.tm-form__row--3 { grid-template-columns: 1fr; }
}

/* ── 27. Homepage-Kacheln als Formular-Auswahl (v3.25) ───────────────────────── */
.tm-card[data-hero-form] { cursor: pointer; position: relative; transition: box-shadow .18s, transform .18s; }
.tm-card[data-hero-form]:hover { transform: translateY(-3px); }
.tm-card[data-hero-form]:focus-visible { outline: 3px solid var(--tm-primary); outline-offset: 3px; }
.tm-card__select {
	position: absolute; top: 1rem; right: 1rem; z-index: 3;
	width: 34px; height: 34px; border-radius: 50%;
	background: var(--tm-primary); color: #fff;
	display: inline-flex; align-items: center; justify-content: center;
	opacity: 0; transform: scale(0.4); transition: opacity .18s, transform .18s;
	box-shadow: 0 4px 12px rgba(42,157,143,0.4);
}
.tm-card__select svg { width: 18px; height: 18px; }
.tm-card.is-selected { box-shadow: 0 0 0 3px var(--tm-primary), 0 12px 32px rgba(31,61,84,0.12); }
.tm-card.is-selected .tm-card__select { opacity: 1; transform: scale(1); }

.tm-hero-forms { }
.tm-hero-form[hidden] { display: none; }
.tm-hero-form { animation: tmFadeIn .35s ease; }
@keyframes tmFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ── 28. Tour-Concept Stepper + Mitglieds-Badges (v3.27) ─────────────────────── */
.tm-stepper { display: flex; align-items: flex-start; justify-content: center; max-width: 920px; margin: 0 auto 1rem; flex-wrap: wrap; }
.tm-stepper__item { display: flex; align-items: center; gap: 0.6rem; }
.tm-stepper__icon { width: 44px; height: 44px; border-radius: 50%; border: 2px solid rgba(31,61,84,0.15); background: #fff; color: #9aa6b2; display: inline-flex; align-items: center; justify-content: center; flex: none; }
.tm-stepper__icon svg { width: 20px; height: 20px; }
.tm-stepper__item.is-active .tm-stepper__icon { background: var(--tm-primary); border-color: var(--tm-primary); color: #fff; }
.tm-stepper__txt { text-align: left; line-height: 1.2; }
.tm-stepper__txt strong { display: block; font-size: 0.9rem; color: var(--tm-navy); }
.tm-stepper__item.is-active .tm-stepper__txt strong { color: var(--tm-primary); }
.tm-stepper__txt small { font-size: 0.8rem; color: #8a95a1; }
.tm-stepper__line { flex: 1; height: 2px; background: rgba(31,61,84,0.12); margin: 22px 0.6rem 0; min-width: 24px; max-width: 70px; }
@media (max-width: 768px) { .tm-stepper { gap: 1.25rem; } .tm-stepper__line { display: none; } }

.tm-member-badges { display: flex; align-items: center; gap: 0.75rem; padding: 0 0.25rem; flex-wrap: wrap; }
.tm-member-badges__label { font-size: 0.82rem; color: #6b7785; font-weight: 600; }
.tm-member-badges__logos { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.tm-member-badge { font-size: 0.78rem; font-weight: 700; color: var(--tm-navy); background: #f1f4f7; border: 1px solid rgba(31,61,84,0.1); border-radius: 8px; padding: 0.35rem 0.7rem; }

/* ── 29. So-funktionierts-Seite (v3.30) ──────────────────────────────────────── */
.tm-sf { padding: 3.5rem 0 4rem; background: #f6f8fa; }
.tm-sf-services { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem; margin-bottom: 2.5rem; }
.tm-sf-service { background: #fff; border: 1px solid rgba(31,61,84,0.08); border-radius: 18px; padding: 2rem 1.85rem; display: flex; flex-direction: column; box-shadow: 0 4px 20px rgba(31,61,84,0.05); }
.tm-sf-service__head { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.1rem; }
.tm-sf-service__icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(42,157,143,0.10); color: var(--tm-primary); display: inline-flex; align-items: center; justify-content: center; flex: none; }
.tm-sf-service__icon svg { width: 26px; height: 26px; }
.tm-sf-service__title { font-family: var(--tm-font-heading); font-weight: 800; font-size: 1.3rem; color: var(--tm-navy); margin: 0; }
.tm-sf-service__desc { font-size: 0.95rem; color: #5d6b78; line-height: 1.6; margin: 0 0 0.85rem; }
.tm-sf-service__lead { font-size: 0.95rem; color: var(--tm-navy); font-weight: 600; margin: 0 0 0.6rem; }
.tm-sf-service__note { font-size: 0.92rem; color: #5d6b78; line-height: 1.55; margin: 0.4rem 0 1.25rem; font-style: italic; }

.tm-sf-check { list-style: none; margin: 0 0 1rem; padding: 0; display: grid; gap: 0.55rem; }
.tm-sf-check li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.92rem; color: var(--tm-navy); line-height: 1.45; }
.tm-sf-check__ic { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--tm-primary); color: #fff; display: inline-flex; align-items: center; justify-content: center; margin-top: 1px; }
.tm-sf-check__ic svg { width: 13px; height: 13px; }
.tm-sf-check--2col { grid-template-columns: 1fr 1fr; gap: 0.7rem 1.5rem; }

.tm-sf-steps-wrap { margin-top: auto; padding-top: 0.5rem; }
.tm-sf-steps__title { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--tm-primary); margin: 0 0 0.75rem; }
.tm-sf-steps { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: 0.6rem; counter-reset: sf; }
.tm-sf-steps li { display: flex; align-items: center; gap: 0.7rem; font-size: 0.9rem; color: var(--tm-navy); }
.tm-sf-step__num { flex: none; width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--tm-primary); color: var(--tm-primary); font-size: 0.82rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.tm-sf-service__cta { align-self: flex-start; justify-content: center; padding: 0.8rem 1.6rem; border-radius: 10px; }

.tm-sf-personal { display: flex; align-items: flex-start; gap: 1.25rem; background: var(--tm-navy); color: #fff; border-radius: 18px; padding: 2rem 2.25rem; margin-bottom: 2.5rem; }
.tm-sf-personal__icon { flex: none; width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,0.12); color: #fff; display: inline-flex; align-items: center; justify-content: center; }
.tm-sf-personal__icon svg { width: 28px; height: 28px; }
.tm-sf-personal__title { font-family: var(--tm-font-heading); font-weight: 800; font-size: 1.3rem; color: #fff; margin: 0 0 0.6rem; }
.tm-sf-personal p { font-size: 0.97rem; color: rgba(255,255,255,0.85); line-height: 1.6; margin: 0; }
.tm-sf-personal strong { color: #fff; }

.tm-sf-block { background: #fff; border: 1px solid rgba(31,61,84,0.08); border-radius: 18px; padding: 2rem 2.25rem; margin-bottom: 2rem; }
.tm-sf-block__title { display: flex; align-items: center; gap: 0.6rem; font-family: var(--tm-font-heading); font-weight: 800; font-size: 1.3rem; color: var(--tm-navy); margin: 0 0 1.5rem; }
.tm-sf-block__icon { color: var(--tm-primary); display: inline-flex; }
.tm-sf-block__icon svg { width: 24px; height: 24px; }

.tm-sf-trips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.5rem; }
.tm-sf-trip { display: inline-block; background: rgba(42,157,143,0.08); border: 1px solid rgba(42,157,143,0.25); color: var(--tm-navy); border-radius: 999px; padding: 0.5rem 1rem; font-size: 0.88rem; font-weight: 500; }
.tm-sf-closing { font-size: 0.97rem; color: #5d6b78; line-height: 1.6; margin: 0; }

@media (max-width: 860px) {
	.tm-sf-services { grid-template-columns: 1fr; }
	.tm-sf-check--2col { grid-template-columns: 1fr; }
	.tm-sf-personal { flex-direction: column; gap: 1rem; }
}

/* ── 30. Tour-Concept Reisedaten: 3-Spalten + gestyltes Select (v3.33) ─────── */
.tm-form-card .tm-form__row--3 { grid-template-columns: 1fr 1fr 1fr; }

.tm-form__group select {
	padding: 0.75rem 2.5rem 0.75rem 1rem;
	border: 2px solid var(--tm-border);
	border-radius: var(--tm-radius-sm);
	font-family: var(--tm-font-body);
	font-size: 0.9375rem;
	color: var(--tm-text);
	background-color: var(--tm-white);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231F3D54' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.95rem center;
	background-size: 16px;
	-webkit-appearance: none; -moz-appearance: none; appearance: none;
	width: 100%;
	cursor: pointer;
	transition: border-color var(--tm-transition), box-shadow var(--tm-transition);
}
.tm-form__group select:focus {
	outline: none;
	border-color: var(--tm-primary);
	box-shadow: 0 0 0 3px rgba(0, 200, 200, 0.15);
}

@media (max-width: 640px) {
	.tm-form-card .tm-form__row--3 { grid-template-columns: 1fr; }
}

/* ── 31. Rechtliche Seiten / Datenschutz (v3.34) ───────────────────────────── */
.tm-page-hero--legal { background: var(--tm-navy); }
.tm-legal { padding: 3rem 0 3.5rem; background: #fff; }
.tm-legal__container { max-width: var(--tm-container); }
.tm-legal__content { font-size: 1rem; color: #44515e; line-height: 1.7; }
.tm-legal__content h2 {
	font-family: var(--tm-font-heading); font-weight: 800; font-size: 1.3rem;
	color: var(--tm-navy); margin: 2.25rem 0 0.85rem; padding-top: 1.5rem;
	border-top: 1px solid rgba(31,61,84,0.10);
}
.tm-legal__content > h2:first-child { border-top: 0; padding-top: 0; margin-top: 0; }
.tm-legal__content h3 {
	font-family: var(--tm-font-heading); font-weight: 700; font-size: 1.02rem;
	color: var(--tm-primary); margin: 1.25rem 0 0.4rem;
}
.tm-legal__content p { margin: 0 0 1rem; }
.tm-legal__content a { color: var(--tm-primary); text-decoration: underline; }
.tm-legal__content ul { list-style: none; margin: 0 0 1.1rem; padding: 0; display: grid; gap: 0.4rem; }
.tm-legal__content ul li { position: relative; padding-left: 1.3rem; }
.tm-legal__content ul li::before {
	content: ""; position: absolute; left: 0.15rem; top: 0.62rem;
	width: 6px; height: 6px; border-radius: 50%; background: var(--tm-primary);
}
.tm-legal-party {
	background: #f6f8fa; border: 1px solid rgba(31,61,84,0.08); border-radius: 12px;
	padding: 1.1rem 1.35rem; margin: 0 0 0.5rem; line-height: 1.6;
}
.tm-legal-party strong { color: var(--tm-navy); }
.tm-legal-authority {
	background: #f6f8fa; border-left: 3px solid var(--tm-primary); border-radius: 8px;
	padding: 0.9rem 1.2rem; line-height: 1.6;
}
.tm-legal-summary {
	margin-top: 2.5rem; background: var(--tm-navy); color: #fff;
	border-radius: 16px; padding: 1.9rem 2rem;
}
.tm-legal-summary h2 {
	border: 0; padding: 0; margin: 0 0 1.1rem; color: #fff; font-size: 1.25rem;
}
.tm-legal-summary ul { display: grid; gap: 0.7rem; margin: 0; padding: 0; list-style: none; }
.tm-legal-summary ul li { position: relative; padding-left: 1.9rem; color: rgba(255,255,255,0.92); }
.tm-legal-summary ul li::before {
	content: "✓"; position: absolute; left: 0; top: 0; width: auto; height: auto;
	background: none; color: var(--tm-primary); font-weight: 800; font-size: 1.05rem;
}

/* ── 32. Tour-Concept Formular: eckige Kästen nach Mockup (v3.36) ──────────── */
/* Chips als rechteckige Kästen (statt Pillen), als gefülltes Raster */
.tm-wchips { display: grid; grid-template-columns: repeat(auto-fit, minmax(185px, 1fr)); gap: 0.6rem; }
.tm-wchip {
	border-radius: var(--tm-radius-sm);
	padding: 0.7rem 0.9rem;
	justify-content: flex-start;
	text-align: left;
}

/* Übrige Kästen eckiger */
.tm-toggle-card { border-radius: var(--tm-radius-sm); }
.tm-flex-block  { border-radius: var(--tm-radius-sm); }
.tm-ki-box      { border-radius: var(--tm-radius-sm); }
.tm-note-box    { border-radius: var(--tm-radius-sm); }
.tm-price-card  { border-radius: var(--tm-radius-sm); }
.tm-price-card__badge { border-radius: 4px; }

/* Personen-Zähler als EIN rechteckiger Kasten (− Wert +) */
.tm-form-card .tm-number-input {
	display: inline-flex; align-items: stretch; gap: 0;
	border: 1.5px solid #d1d5db; border-radius: var(--tm-radius-sm);
	overflow: hidden; width: 100%; max-width: 200px; background: #fff;
}
.tm-form-card .tm-number-input button {
	width: 48px; height: 46px; border: 0; border-radius: 0; background: #fff;
	font-size: 1.25rem; font-weight: 700; color: #374151; transition: background .15s, color .15s;
}
.tm-form-card .tm-number-input button[data-action="minus"] { border-right: 1.5px solid #e5e7eb; }
.tm-form-card .tm-number-input button[data-action="plus"]  { border-left:  1.5px solid #e5e7eb; }
.tm-form-card .tm-number-input button:hover { background: rgba(42,157,143,0.08); color: var(--tm-primary); }
.tm-form-card .tm-number-input input {
	flex: 1; width: auto; border: 0; border-radius: 0; height: 46px;
	padding: 0; font-size: 1.05rem; font-weight: 600; background: #fff;
}

/* ── 33. Checkout-Seiten: Angebot + Zahlung (v3.37) ───────────────────────── */
.tm-checkout { background: #f6f8fa; }
.tm-checkout-hero { background: #fff; padding: 3rem 0 2.25rem; text-align: center; border-bottom: 1px solid rgba(31,61,84,0.06); }
.tm-checkout-hero__title { font-family: var(--tm-font-heading); font-weight: 800; font-size: 2rem; color: var(--tm-navy); margin: 0 0 0.6rem; }
.tm-checkout-hero__title span { color: var(--tm-primary); }
.tm-checkout-hero__sub { max-width: 720px; margin: 0 auto 1.75rem; color: #5d6b78; font-size: 1rem; line-height: 1.55; }

/* Horizontaler Stepper */
.tm-step-flow { list-style: none; margin: 0 auto; padding: 0; display: flex; align-items: center; max-width: 1000px; }
.tm-step { display: flex; align-items: center; gap: 0.6rem; flex: 1; }
.tm-step:last-child { flex: 0 0 auto; }
.tm-step::after { content: ""; flex: 1; height: 2px; background: #e2e8f0; margin: 0 0.7rem; }
.tm-step:last-child::after { display: none; }
.tm-step.is-done::after { background: var(--tm-primary); }
.tm-step__dot { flex: none; width: 40px; height: 40px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: #fff; border: 2px solid #e2e8f0; color: #94a3b8; }
.tm-step__dot svg { width: 19px; height: 19px; }
.tm-step.is-done .tm-step__dot, .tm-step.is-active .tm-step__dot { background: var(--tm-primary); border-color: var(--tm-primary); color: #fff; }
.tm-step.is-active .tm-step__dot { box-shadow: 0 0 0 4px rgba(42,157,143,0.15); }
.tm-step__label { display: flex; flex-direction: column; line-height: 1.2; text-align: left; }
.tm-step__label b { font-size: 0.86rem; color: var(--tm-navy); font-weight: 700; }
.tm-step__label small { font-size: 0.78rem; color: #8a95a1; }
.tm-step.is-active .tm-step__label b { color: var(--tm-primary); }

/* Layout */
.tm-checkout-body { padding: 2.5rem 0 3rem; }
.tm-checkout-grid { display: grid; align-items: start; gap: 2rem; }
.tm-checkout-grid--2 { grid-template-columns: 1fr 340px; }
.tm-checkout-grid--3 { grid-template-columns: 1fr 320px; }
.tm-checkout-main { display: flex; flex-direction: column; gap: 1.25rem; }
.tm-checkout-aside { position: static; }

/* Karte mit 2 Spalten (Zahlung / Bild 1) */
.tm-checkout-card2 { display: grid; grid-template-columns: 1fr 360px; gap: 2rem; }
.tm-checkout-card2__left { min-width: 0; }
.tm-checkout-card2__right { min-width: 0; }

/* Plan-Block */
.tm-plan-block { margin-top: 0.5rem; }
.tm-plan-block__heading { font-family: var(--tm-font-heading); font-weight: 800; font-size: 1.4rem; color: var(--tm-navy); margin: 0 0 1rem; }
.tm-plan-block__label { display: block; font-size: 0.82rem; font-weight: 600; color: #8a95a1; margin-bottom: 0.5rem; }
.tm-plan-block__title { font-family: var(--tm-font-heading); font-weight: 700; font-size: 1.05rem; color: var(--tm-navy); margin: 1.4rem 0 0.75rem; }
.tm-plan-block__hr { border: 0; border-top: 1px solid rgba(31,61,84,0.10); margin: 1.5rem 0; }

/* Ausgewähltes Paket (Zusammenfassung) */
.tm-plan-sum { display: flex; align-items: center; gap: 0.9rem; border: 1.5px solid rgba(42,157,143,0.30); background: rgba(42,157,143,0.05); border-radius: var(--tm-radius-sm); padding: 1rem 1.25rem; }
.tm-plan-sum__icon { flex: none; width: 40px; height: 40px; border-radius: 10px; background: rgba(42,157,143,0.12); color: var(--tm-primary); display: inline-flex; align-items: center; justify-content: center; }
.tm-plan-sum__icon svg { width: 22px; height: 22px; }
.tm-plan-sum__body { flex: 1; display: flex; flex-direction: column; }
.tm-plan-sum__name { color: var(--tm-primary); font-weight: 800; font-size: 1.1rem; }
.tm-plan-sum__sub { color: #6b7785; font-size: 0.85rem; }
.tm-plan-sum__price { font-family: var(--tm-font-heading); font-weight: 800; font-size: 1.4rem; color: var(--tm-navy); }

/* Promo-Paketkarte mit Bild (Zahlung) */
.tm-plan-promo { display: flex; gap: 0; border: 1px solid rgba(31,61,84,0.10); border-radius: var(--tm-radius-sm); overflow: hidden; }
.tm-plan-promo__img { flex: none; width: 170px; background-color: #1F3D54; background-image: linear-gradient(135deg, #2A9D8F 0%, #1F3D54 100%); background-size: cover; background-position: center; }
.tm-plan-promo__body { padding: 1.1rem 1.25rem; position: relative; flex: 1; }
.tm-plan-promo__badge { display: inline-block; background: var(--tm-primary); color: #fff; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; margin-bottom: 0.6rem; }
.tm-plan-promo__row { display: flex; align-items: baseline; justify-content: space-between; gap: 0.5rem; }
.tm-plan-promo__name { font-family: var(--tm-font-heading); font-weight: 800; font-size: 1.2rem; color: var(--tm-primary); }
.tm-plan-promo__price { font-family: var(--tm-font-heading); font-weight: 800; font-size: 1.5rem; color: var(--tm-navy); }
.tm-plan-promo__sub { display: block; color: #6b7785; font-size: 0.85rem; margin-top: 2px; }
.tm-plan-promo__desc { color: #5d6b78; font-size: 0.9rem; line-height: 1.5; margin: 0.6rem 0 0; }

/* Vorteile-Reihe (Zahlung) */
.tm-pay-benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; margin: 1.5rem 0; }
.tm-pay-benefit { display: flex; flex-direction: column; gap: 0.3rem; }
.tm-pay-benefit__ic { width: 32px; height: 32px; border-radius: 8px; background: rgba(42,157,143,0.10); color: var(--tm-primary); display: inline-flex; align-items: center; justify-content: center; }
.tm-pay-benefit__ic svg { width: 18px; height: 18px; }
.tm-pay-benefit strong { font-size: 0.86rem; color: var(--tm-navy); }
.tm-pay-benefit small { font-size: 0.78rem; color: #6b7785; line-height: 1.45; }

/* Zahlungs-Panel */
.tm-pay-panel { background: #f3f6f8; border: 1px solid rgba(31,61,84,0.08); border-radius: 12px; padding: 1.5rem; }
.tm-pay-panel__head { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.6rem; }
.tm-pay-panel__lock { width: 38px; height: 38px; border-radius: 50%; background: rgba(42,157,143,0.12); color: var(--tm-primary); display: inline-flex; align-items: center; justify-content: center; flex: none; }
.tm-pay-panel__lock svg { width: 19px; height: 19px; }
.tm-pay-panel__title { font-family: var(--tm-font-heading); font-weight: 800; font-size: 1.15rem; color: var(--tm-navy); margin: 0; }
.tm-pay-panel__lead { font-size: 0.88rem; color: #5d6b78; line-height: 1.5; margin: 0 0 1rem; }
.tm-pay-methods { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 0.75rem; margin-bottom: 1rem; }
.tm-pay-method { position: relative; background: #fff; border: 1px solid rgba(31,61,84,0.12); border-radius: var(--tm-radius-sm); padding: 0.85rem 0.75rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.4rem; min-height: 74px; text-align: center; }
.tm-pay-method__logo { display: inline-flex; align-items: center; justify-content: center; gap: 4px; height: 22px; }
.tm-pay-method__cap { font-size: 0.74rem; color: #6b7785; }
.tm-pay-method__cap em { font-style: normal; color: #9aa4ae; }
.tm-pay-method__chev { position: absolute; top: 8px; right: 10px; color: #c2ccd4; font-size: 1rem; line-height: 1; }
/* Marken */
.tm-brand-visa { color: #1a1f71; font-weight: 800; font-style: italic; font-size: 1.15rem; letter-spacing: 0.5px; }
.tm-brand-mc { display: inline-flex; align-items: center; }
.tm-brand-mc i { width: 15px; height: 15px; border-radius: 50%; display: inline-block; }
.tm-brand-mc i:first-child { background: #eb001b; }
.tm-brand-mc i:last-child { background: #f79e1b; margin-left: -7px; mix-blend-mode: multiply; }
.tm-brand-eps { color: #e2001a; font-weight: 800; font-style: italic; font-size: 1.1rem; }
.tm-brand-applepay { display: inline-flex; align-items: center; gap: 3px; color: #000; font-weight: 600; font-size: 1rem; }
.tm-brand-gpay { color: #5f6368; font-weight: 600; font-size: 1rem; }
.tm-brand-gpay b { color: #4285F4; font-weight: 700; }
.tm-pay-badges { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 1rem; }
.tm-pay-badges span { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.78rem; color: #6b7785; }
.tm-pay-badges svg { width: 15px; height: 15px; color: var(--tm-primary); }
.tm-paybtn { font-size: 1.05rem; padding: 1rem 1.5rem; }
.tm-paybtn__lock { display: inline-flex; }
.tm-paybtn__lock svg { width: 18px; height: 18px; }
.tm-pay-note { font-size: 0.78rem; color: #8a95a1; line-height: 1.45; margin: 0.85rem 0 0; text-align: center; }

/* SICHERE ZAHLUNG Sidebar-Liste */
.tm-securepay-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.tm-securepay-list li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.86rem; color: var(--tm-navy); }
.tm-securepay-list svg { width: 18px; height: 18px; color: var(--tm-primary); flex: none; }

/* Trust-Bar unten (Zahlung) */
.tm-trust-bar { background: #fff; border-top: 1px solid rgba(31,61,84,0.08); padding: 1.75rem 0; }
.tm-trust-bar__inner { display: flex; align-items: center; gap: 1.75rem; flex-wrap: wrap; }
.tm-trust-bar__lead { display: flex; flex-direction: column; line-height: 1.1; font-family: var(--tm-font-heading); }
.tm-trust-bar__lead strong { font-size: 1.3rem; color: var(--tm-navy); font-weight: 800; }
.tm-trust-bar__lead span { font-size: 1.3rem; color: var(--tm-primary); font-weight: 800; }
.tm-trust-bar__item { display: flex; align-items: center; gap: 0.6rem; flex: 1; min-width: 175px; }
.tm-trust-bar__ic { width: 38px; height: 38px; border-radius: 50%; background: rgba(42,157,143,0.10); color: var(--tm-primary); display: inline-flex; align-items: center; justify-content: center; flex: none; }
.tm-trust-bar__ic svg { width: 20px; height: 20px; }
.tm-trust-bar__item strong { display: block; font-size: 0.84rem; color: var(--tm-navy); }
.tm-trust-bar__item small { font-size: 0.76rem; color: #6b7785; line-height: 1.35; }

/* Sticky Bottom Pay-Bar */
.tm-paybar { position: sticky; bottom: 0; z-index: 40; background: var(--tm-navy); color: #fff; box-shadow: 0 -4px 20px rgba(0,0,0,0.18); }
.tm-paybar__inner { display: flex; align-items: center; gap: 1.5rem; padding: 0.85rem 1.5rem; }
.tm-paybar__brand { display: flex; flex-direction: column; line-height: 1.1; }
.tm-paybar__logo { font-family: var(--tm-font-heading); font-weight: 700; font-size: 1.15rem; color: #fff; }
.tm-paybar__logo b { color: var(--tm-primary); font-weight: 800; }
.tm-paybar__brand small { font-size: 0.72rem; color: rgba(255,255,255,0.6); }
.tm-paybar__pkg { display: flex; flex-direction: column; line-height: 1.2; }
.tm-paybar__pkg small, .tm-paybar__total small { font-size: 0.72rem; color: rgba(255,255,255,0.6); }
.tm-paybar__pkg span { font-weight: 600; }
.tm-paybar__pkg em { font-style: normal; color: rgba(255,255,255,0.7); font-weight: 400; }
.tm-paybar__total { display: flex; flex-direction: column; line-height: 1.2; margin-left: auto; }
.tm-paybar__total span { font-family: var(--tm-font-heading); font-weight: 800; font-size: 1.3rem; }
.tm-paybar__btn { white-space: nowrap; }
.tm-paybar__secure { display: none; }

@media (max-width: 1080px) {
	.tm-checkout-grid--2, .tm-checkout-grid--3 { grid-template-columns: 1fr; }
	.tm-checkout-card2 { grid-template-columns: 1fr; }
	.tm-pay-benefits { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
	.tm-step-flow { overflow-x: auto; justify-content: flex-start; padding-bottom: 0.5rem; }
	.tm-step { flex: 0 0 auto; }
	.tm-step::after { width: 28px; flex: 0 0 28px; }
	.tm-checkout-hero__title { font-size: 1.5rem; }
	.tm-pay-methods { grid-template-columns: 1fr; }
	.tm-pay-benefits { grid-template-columns: 1fr; }
	.tm-trust-bar__inner { gap: 1rem; }
	.tm-paybar__inner { flex-wrap: wrap; gap: 0.75rem; }
	.tm-paybar__pkg { display: none; }
	.tm-paybar__btn { width: 100%; justify-content: center; }
}

/* v3.40: Zahlungs-Panel (schmal) immer 2 Spalten, wie Bild 1 */
.tm-checkout-card2__right .tm-pay-methods { grid-template-columns: 1fr 1fr; }
@media (max-width: 520px) { .tm-checkout-card2__right .tm-pay-methods { grid-template-columns: 1fr; } }
