/*
Theme Name: toabai
Theme URI: https://toabai.media
Author: Tobias Öllinger
Author URI: https://toabai.media
Description: Schlankes Custom Theme für toabai.media
Version: 1.0.0
Text Domain: toabai
*/

/* =========================
   Basis
========================= */

:root {
--tm-bg: #ffffff;
  --tm-bg-soft: #f5f7fa;
  --tm-bg-dark: #080b12;
  --tm-text: #0f172a;
  --tm-muted: #475569;
  --tm-border: #e2e8f0;
  --tm-primary: #2563eb;
  --tm-primary-dark: #1d4ed8;
  --tm-logo-main: #0f172a;
  --tm-logo-sub: #2563eb;
  --tm-logo-accent: #2563eb;
  --tm-radius-sm: 14px;
  --tm-radius-md: 22px;
  --tm-radius-lg: 34px;
  --tm-shadow: 0 24px 70px rgba(15, 23, 42, 0.09);
  : 0 12px 38px rgba(15, 23, 42, 0.06);
  --tm-container: 1180px;
}

* {
box-sizing: border-box;
}

html {
scroll-behavior: smooth;
}

body {
margin: 0;
  background: var(--tm-bg);
  color: var(--tm-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

body.admin-bar .site-header {
top: 32px;
}

img {
max-width: 100%;
  height: auto;
}

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

p {
margin: 0 0 1.15rem;
  color: var(--tm-muted);
  line-height: 1.65;
}

h1,
h2,
h3 {
margin: 0;
  line-height: 1.08;
  letter-spacing: -0.045em;
  color: inherit;
}

h1 {
max-width: 900px;
  font-size: clamp(3.2rem, 7.2vw, 6.6rem);
}

h2 {
max-width: 880px;
  font-size: clamp(2.25rem, 4.6vw, 4.6rem);
}

h3 {
margin-bottom: 0.8rem;
  font-size: 1.25rem;
}

.tm-container {
width: min(100% - 40px, var(--tm-container));
  max-width: var(--tm-container);
  margin: 0 auto;
}

.tm-center {
margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.tm-eyebrow {
margin-bottom: 1.1rem;
  color: var(--tm-primary);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.tm-section-text {
max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  color: var(--tm-muted);
  font-size: 1.18rem;
  text-align: center;
}

/* =========================
   Header
========================= */

.site-header {
position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(226, 232, 240, 0.72);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.tm-header-inner {
display: grid;
  grid-template-columns: 190px 1fr 170px;
  align-items: center;
  height: 74px;
  gap: 28px;
}

.site-branding {
display: flex;
  align-items: center;
}

.site-branding a {
display: inline-flex;
  align-items: center;
}

.tm-logo {
display: inline-flex;
  align-items: baseline;
  color: var(--tm-logo-main);
  font-size: 1.05rem;
  font-weight: 760;
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.tm-logo-main {
color: var(--tm-logo-main);
}

.tm-logo-dot {
color: var(--tm-logo-accent);
  margin: 0 0.015em;
}

.tm-logo-sub {
color: var(--tm-logo-sub);
  font-weight: 620;
}

.site-branding a:hover .tm-logo-dot,
.site-branding a:hover .tm-logo-sub {
opacity: 0.78;
}

.custom-logo-link {
display: inline-flex;
  align-items: center;
}

.custom-logo {
display: block;
  width: auto;
  max-width: 155px;
  max-height: 32px;
}

.main-navigation {
display: flex;
  justify-content: center;
  min-width: 0;
}

.tm-main-menu {
display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.tm-main-menu li {
position: relative;
  margin: 0;
  padding: 0;
}

.tm-main-menu a {
position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 74px;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 680;
  line-height: 1;
  letter-spacing: -0.015em;
  white-space: nowrap;
  transition: color 0.18s ease;
}

.tm-main-menu a::after {
content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--tm-primary);
  transform: translateX(-50%);
  transition: width 0.18s ease;
}

.tm-main-menu a:hover,
.tm-main-menu .current-menu-item>a,
.tm-main-menu .current_page_item>a,
.tm-main-menu .current-menu-ancestor>a {
color: var(--tm-text);
}

.tm-main-menu a:hover::after,
.tm-main-menu .current-menu-item>a::after,
.tm-main-menu .current_page_item>a::after,
.tm-main-menu .current-menu-ancestor>a::after {
width: 100%;
}

.tm-header-cta {
display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  min-width: 148px;
  height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 780;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.13);
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.tm-header-cta:hover {
background: linear-gradient(135deg, #1d4ed8, #1e40af);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.25);
}

/* =========================
   Buttons, Icons, Listen
========================= */

.tm-btn {
display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 760;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.tm-btn:hover {
transform: translateY(-2px);
}

.tm-btn-dark {
background: #050505;
  color: #ffffff;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.16);
}

.tm-btn-light {
background: #ffffff;
  color: var(--tm-text);
  border: 1px solid var(--tm-border);
}

.tm-btn-light:hover {
box-shadow: var();
}

.tm-btn-blue {
background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.25);
}

.tm-btn-blue:hover {
background: linear-gradient(135deg, #1d4ed8, #1e40af);
  color: #ffffff;
}

.tm-btn-white {
background: #ffffff;
  color: #050505;
}

.tm-btn-outline {
border: 1px solid rgba(255, 255, 255, 0.45);
  color: #ffffff;
}

.tm-actions {
display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.tm-icon {
display: inline-flex;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 16px;
  background: #eff6ff;
  color: var(--tm-primary);
}

.tm-icon svg {
width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tm-check-list {
margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.tm-check-list li {
position: relative;
  margin-bottom: 0.9rem;
  padding-left: 30px;
  color: var(--tm-text);
  font-weight: 650;
}

.tm-check-list li::before {
content: "✓";
  position: absolute;
  left: 0;
  color: var(--tm-primary);
  font-weight: 900;
}

/* =========================
   Globale Sections
========================= */

.toabai-home section,
.toabai-page section,
.wartung-page section,
.website-page section,
.references-page section {
padding: 108px 0;
}

/* =========================
   Startseite V2
========================= */

.toabai-home-v2 section {
padding: 112px 0;
}

.toabai-home-v2 .tm-container {
width: min(100% - 52px, 1080px);
}

.tm-start-hero {
position: relative;
  overflow: hidden;
  padding: 105px 0 100px;
  background:
    linear-gradient(90deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.94) 42%,
      rgba(255, 255, 255, 0.72) 67%,
      rgba(255, 255, 255, 0.42) 100%),
    url("/wp-content/uploads/hero-image.png") right center / cover no-repeat;
}

.tm-start-hero::after {
content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff);
  pointer-events: none;
}

.tm-start-hero-grid {
position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 72px;
  align-items: center;
}

.tm-start-form-card {
padding: 34px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(20px);
}

.tm-start-form-card .tm-btn {
width: 100%;
  margin-top: 4px;
}

.tm-start-hero h1 {
max-width: 680px;
  font-size: clamp(3.4rem, 5.8vw, 5.4rem);
}

.tm-start-hero-text {
max-width: 570px;
  margin-top: 24px;
  color: #1e293b;
  font-size: 1.15rem;
  line-height: 1.6;
}

.tm-start-trust-list {
display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.tm-start-trust-list li {
position: relative;
  padding: 9px 15px 9px 36px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: #0f172a;
  font-size: 0.88rem;
  font-weight: 750;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(6px);
}

.tm-start-trust-list li::before {
content: "✓";
  position: absolute;
  left: 14px;
  color: var(--tm-primary);
  font-weight: 900;
}

.tm-start-form-card {
padding: 30px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(18px);
}

.tm-form-label {
margin-bottom: 10px;
  color: var(--tm-primary);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tm-start-form-card h2 {
  margin-bottom: 10px;
  font-size: 1.75rem;
}

.tm-start-form-card p {
margin-bottom: 20px;
  font-size: 0.95rem;
}

.tm-start-form-card small {
display: block;
  margin-top: 14px;
  color: #64748b;
  font-size: 0.82rem;
  text-align: center;
}

.tm-start-danger-check {
position: relative;
  overflow: hidden;
  padding: 112px 0;
  background: radial-gradient(circle at 72% 20%, rgba(37, 99, 235, 0.18), transparent 34%), linear-gradient(135deg, #050816 0%, #08111f 55%, #020617 100%);
  color: #ffffff;
}

.tm-danger-simple {
position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.tm-danger-simple .tm-eyebrow {
color: #fca5a5;
}

.tm-danger-simple h2 {
max-width: 780px;
  margin: 0 auto;
  color: #ffffff;
  font-size: clamp(2.3rem, 4.6vw, 4rem);
}

.tm-start-danger-check .tm-section-text {
max-width: 720px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.tm-danger-grid {
display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 860px;
  margin: 46px auto 34px;
}

.tm-danger-grid>div {
position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.055));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  text-align: left;
}

.tm-danger-grid>div::after {
content: "";
  position: absolute;
  right: -46px;
  top: -46px;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.14);
  filter: blur(2px);
}

.tm-icon-danger {
position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  margin-bottom: 22px;
  border: 1px solid rgba(248, 113, 113, 0.24);
  background: rgba(239, 68, 68, 0.14);
  color: #fca5a5;
}

.tm-danger-grid strong {
position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1.04rem;
  line-height: 1.22;
}

.tm-danger-grid span {
position: relative;
  z-index: 1;
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
  line-height: 1.5;
}

.tm-start-maintenance {
padding: 120px 0;
  background: radial-gradient(circle at 72% 20%, rgba(37, 99, 235, 0.28), transparent 35%), linear-gradient(135deg, #050816 0%, #08111f 55%, #020617 100%);
  color: #ffffff;
}

.tm-start-maintenance p {
color: rgba(255, 255, 255, 0.74);
}

.tm-start-maintenance .tm-eyebrow {
color: #bfdbfe;
}

.tm-start-maintenance-grid {
display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: center;
}

.tm-start-maintenance h2 {
max-width: 560px;
  font-size: clamp(2.7rem, 4.6vw, 4.3rem);
}

.tm-start-maintenance-grid>div:first-child {
display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.tm-start-maintenance-grid>div:first-child p {
max-width: 440px;
  font-size: 1.05rem;
}

.tm-start-maintenance-panel {
display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06));
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.42);
}

.tm-start-maintenance-panel>div {
min-height: 150px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease;
}

.tm-start-maintenance-panel>div:hover {
transform: translateY(-4px);
}

.tm-start-maintenance-panel strong {
display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1.08rem;
}

.tm-start-maintenance-panel span {
display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
  line-height: 1.5;
}

.tm-cta-block {
margin-top: 28px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}

.tm-cta-micro {
max-width: 340px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  line-height: 1.4;
}

.tm-cta-process {
margin-top: 4px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.78rem;
}

.tm-start-why {
background: #ffffff;
}

.tm-start-image-grid {
display: grid;
  grid-template-columns: 430px minmax(0, 1fr);
  gap: 70px;
  align-items: center;
}

.tm-start-image-grid-reverse {
grid-template-columns: minmax(0, 1fr) 430px;
}

.tm-start-image-wrap {
position: relative;
}

.tm-start-image-wrap img {
display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.15);
}

.tm-start-image-badge {
position: absolute;
  left: 20px;
  bottom: 20px;
  max-width: 270px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.78);
  color: #ffffff;
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.25);
}

.tm-start-image-badge strong {
display: block;
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.tm-start-image-badge span {
display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  line-height: 1.35;
}

.tm-start-text-block h2 {
max-width: 560px;
  font-size: clamp(2.2rem, 3.8vw, 3.5rem);
}

.tm-start-text-block p {
max-width: 540px;
}

.tm-start-mini-list {
display: grid;
  gap: 14px;
  max-width: 560px;
  margin-top: 28px;
}

.tm-start-mini-list>div {
padding: 18px 20px;
  border: 1px solid var(--tm-border);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 34px rgba(15, 23, 42, 0.04);
}

.tm-start-mini-list strong {
display: block;
  margin-bottom: 4px;
  color: var(--tm-text);
}

.tm-start-mini-list span {
display: block;
  color: var(--tm-muted);
  font-size: 0.94rem;
}

.tm-start-website .tm-start-image-wrap img {
aspect-ratio: 16 / 10;
  object-position: center center;
}

.tm-start-final {
background: radial-gradient(circle at 50% 100%, rgba(37, 99, 235, 0.28), transparent 38%), var(--tm-bg-dark);
  color: #ffffff;
  text-align: center;
}

.tm-start-final .tm-eyebrow {
color: #bfdbfe;
}

.tm-start-final p {
color: rgba(255, 255, 255, 0.76);
}

.tm-start-final-box {
max-width: 820px;
  margin: 0 auto;
}

.tm-start-final-box h2 {
margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.4rem, 5vw, 4.3rem);
}

.tm-start-final-box .tm-btn {
margin-top: 24px;
}

/* =========================
   Kontakt
========================= */

.tm-contact-hero {
padding: 120px 0;
  background: radial-gradient(circle at 78% 18%, rgba(37, 99, 235, 0.22), transparent 34%), var(--tm-bg-dark);
  color: #ffffff;
}

.tm-contact-centered {
max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.tm-contact-hero p {
color: rgba(255, 255, 255, 0.72);
}

.tm-contact-hero .tm-eyebrow {
color: #60a5fa;
}

.tm-contact-form-wrap {
margin: 44px auto 0;
  max-width: 820px;
  padding: 42px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.tm-form {
max-width: 100%;
  margin: 0;
}

.tm-form input,
.tm-form textarea {
width: 100%;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid #dbe3ef;
  background: #f8fafc;
  color: var(--tm-text);
  font-size: 1rem;
  line-height: 1.4;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.tm-form textarea {
min-height: 150px;
  resize: vertical;
}

.tm-form input::placeholder,
.tm-form textarea::placeholder {
color: #94a3b8;
}

.tm-form input:focus,
.tm-form textarea:focus {
outline: none;
  border-color: var(--tm-primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.tm-form button {
width: 100%;
  height: 60px;
  margin-top: 8px;
  border: 0;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 800;
}

.tm-contact-note {
margin: 16px 0 0;
  color: #64748b;
  font-size: 0.9rem;
  text-align: center;
}

.tm-contact-trust {
display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
  margin: 28px auto 0;
  padding: 0;
  list-style: none;
}

.tm-contact-trust li {
position: relative;
  margin: 0;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  font-weight: 650;
}

.tm-contact-trust li::before {
content: "✓";
  position: absolute;
  left: 0;
  color: #60a5fa;
  font-weight: 900;
}

.tm-contact-alt {
background: #ffffff;
}

.tm-contact-alt-grid {
display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.tm-contact-alt-grid>div {
padding: 30px;
  border: 1px solid var(--tm-border);
  border-radius: var(--tm-radius-md);
  background: #ffffff;
  box-shadow: var();
}

/* =========================
   Über mich. Scoped nur auf main. Greift nicht in Header/Footer
========================= */

.ueber-mich-page section:nth-of-type(2) {
background: #ffffff;
}

.ueber-mich-page section:nth-of-type(3) {
background: var(--tm-bg-soft);
}

.ueber-mich-page section:nth-of-type(4) {
background: #ffffff;
}

.ueber-mich-page section:nth-of-type(5) {
background: var(--tm-bg-soft);
}

.ueber-mich-page section:nth-of-type(6) {
background: #ffffff;
}

.ueber-mich-page .tm-container {
max-width: 1000px;
}

.ueber-mich-page h2 {
margin-bottom: 18px;
  letter-spacing: -0.04em;
}

.ueber-mich-page p {
max-width: 620px;
  font-size: 1.05rem;
}

.ueber-mich-page ul {
margin-top: 20px;
}

.ueber-mich-page li {
margin-bottom: 10px;
}

.tm-about-hero {
padding: 120px 0 115px;
  background: radial-gradient(circle at 78% 18%, rgba(37, 99, 235, 0.28), transparent 34%), radial-gradient(circle at 88% 72%, rgba(37, 99, 235, 0.12), transparent 30%), var(--tm-bg-dark);
  color: #ffffff;
}

.tm-about-hero p {
color: rgba(255, 255, 255, 0.78);
}

.tm-about-hero .tm-eyebrow {
color: #bfdbfe;
}

.tm-about-hero-grid {
display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 86px;
  align-items: center;
}

.tm-about-hero h1 {
font-size: clamp(3.1rem, 5.7vw, 5.1rem);
}

.tm-about-hero .tm-hero-text {
max-width: 560px;
  margin-top: 22px;
  font-size: 1.02rem;
}

.tm-about-visual {
position: relative;
  max-width: 430px;
  margin-left: auto;
}

.tm-about-visual::before {
content: "";
  position: absolute;
  inset: -24px;
  z-index: 0;
  border-radius: 42px;
  background: radial-gradient(circle at 70% 20%, rgba(37, 99, 235, 0.32), transparent 45%), rgba(255, 255, 255, 0.05);
}

.tm-about-visual img {
position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 32px;
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.48);
}

.tm-about-overlay {
position: absolute;
  left: -28px;
  bottom: 34px;
  z-index: 2;
  max-width: 310px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  color: #ffffff;
}

.tm-about-overlay p {
margin: 0 0 4px;
  color: #bfdbfe;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tm-about-overlay strong {
display: block;
  margin-bottom: 5px;
  color: #ffffff;
  font-size: 1.15rem;
  line-height: 1.15;
}

.tm-about-overlay span {
display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.35;
}

.ueber-mich-page .tm-website-grid,
.ueber-mich-page .tm-maintenance-grid {
display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
}

.ueber-mich-page .tm-about-lead {
color: #1e293b;
  font-weight: 650;
}

.ueber-mich-page .tm-about-timeline {
display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
}

.ueber-mich-page .tm-about-timeline-item {
padding: 26px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.ueber-mich-page .tm-about-timeline-item .tm-icon {
width: auto;
  height: auto;
  margin-bottom: 22px;
  background: transparent;
  color: var(--tm-primary);
  font-size: 0.82rem;
  font-weight: 900;
}

.ueber-mich-page .tm-about-timeline-item h3 {
margin-bottom: 10px;
}

.ueber-mich-page .tm-about-timeline-item p {
margin: 0;
  font-size: 0.95rem;
}

.ueber-mich-page .tm-feature-grid {
display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.ueber-mich-page .tm-feature-grid>div {
padding: 22px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 44px rgba(15, 23, 42, 0.05);
}

.ueber-mich-page .tm-feature-grid h3 {
margin-bottom: 8px;
  font-size: 1.04rem;
}

.ueber-mich-page .tm-feature-grid p {
margin: 0;
  font-size: 0.94rem;
}

.ueber-mich-page .tm-price-card {
padding: 34px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.11);
}

.ueber-mich-page .tm-price-card h3 {
margin-bottom: 18px;
}

.ueber-mich-page .tm-price-card ul {
margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.ueber-mich-page .tm-price-card li {
position: relative;
  padding-left: 24px;
  color: #0f172a;
  font-weight: 650;
}

.ueber-mich-page .tm-price-card li::before {
content: "✓";
  position: absolute;
  left: 0;
  color: var(--tm-primary);
  font-weight: 900;
}

.ueber-mich-page .tm-price-card small {
display: block;
  margin-top: 14px;
  color: #64748b;
  font-size: 0.82rem;
}

.ueber-mich-page .tm-about-process-grid {
display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
}

.ueber-mich-page .tm-about-process-grid>div {
padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.ueber-mich-page .tm-about-process-grid span {
display: inline-flex;
  margin-bottom: 18px;
  color: var(--tm-primary);
  font-size: 0.8rem;
  font-weight: 900;
}

.ueber-mich-page .tm-about-process-grid h3 {
margin-bottom: 10px;
}

.ueber-mich-page .tm-about-process-grid p {
margin: 0;
  font-size: 0.95rem;
}

.ueber-mich-page .tm-final-box {
display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
}

.ueber-mich-page .tm-microcopy {
font-size: 0.95rem;
  color: #64748b;
}

/* =========================
   Referenzen
========================= */

.references-page section {
padding: 120px 0;
}

.tm-references-hero,
.tm-ref-grid-section,
.tm-logos {
background: #ffffff;
}

.tm-references-hero h1,
.tm-references-hero h2,
.tm-references-hero p,
.tm-ref-grid-section h2,
.tm-ref-cases h2,
.references-page .tm-testimonials h2 {
margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.tm-references-hero {
padding: 120px 0 105px;
}

.tm-ref-hero-compact {
padding: 120px 0 90px;
}

.tm-ref-hero-compact .tm-btn {
margin-top: 10px;
}

.tm-logos {
padding: 80px 0 90px;
}

.tm-logos-grid {
display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  max-width: 900px;
  margin: 40px auto 20px;
}

.tm-logo {
display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 22px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 18px;
  background: #ffffff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tm-logo img {
display: block;
  width: auto;
  max-width: 100%;
  max-height: 64px;
  opacity: 0.85;
  filter: grayscale(100%);
  transition: opacity 0.25s ease, filter 0.25s ease, transform 0.25s ease;
}

.tm-logo:hover {
transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
}

.tm-logo:hover img {
opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

.tm-logos-note {
margin-top: 32px;
  color: var(--tm-muted);
  font-size: 0.9rem;
  text-align: center;
}

.tm-featured-ref {
padding: 140px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.tm-featured-grid {
display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 80px;
  align-items: center;
  max-width: 1050px;
  margin: 0 auto;
}

.tm-featured-content h2 {
margin-bottom: 16px;
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.tm-featured-intro {
max-width: 520px;
  margin-bottom: 26px;
  font-size: 1.1rem;
}

.tm-featured-points p {
margin-bottom: 16px;
}

.tm-featured-content .tm-btn {
margin-top: 14px;
}

.tm-ref-cases {
padding: 110px 0 100px;
  background: var(--tm-bg-soft);
}

.tm-ref-case-grid {
display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
}

.tm-ref-case {
padding: 22px;
  border: 1px solid var(--tm-border);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 34px rgba(15, 23, 42, 0.04);
  opacity: 0.85;
}

.tm-ref-case h3 {
margin-bottom: 1rem;
  font-size: 1.1rem;
}

.tm-ref-case p {
margin-bottom: 0.75rem;
  font-size: 0.94rem;
}

.tm-ref-case p:last-child {
margin-bottom: 0;
}

.tm-ref-case strong {
color: var(--tm-text);
}

.tm-ref-grid {
display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px 34px;
  max-width: 980px;
  margin: 60px auto 0;
}

.tm-ref-item {
display: block;
  text-align: center;
}

.tm-mockup-device {
width: 100%;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tm-mockup-device:hover {
transform: translateY(-8px) scale(1.02);
  box-shadow: 0 34px 80px rgba(15, 23, 42, 0.16);
}

.tm-mockup-screen img {
display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
}

.tm-mockup-device {
overflow: hidden;
  border-radius: 20px;
  background: #0f172a;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.18);
}

.tm-mockup-screen {
background: #ffffff;
}

.tm-browser-bar {
display: flex;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tm-browser-bar span {
width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.tm-ref-content {
margin-top: 16px;
  text-align: center;
}

.tm-ref-content h3 {
margin: 0 0 4px;
  font-size: 1.05rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.tm-ref-content p {
margin: 0;
  color: var(--tm-muted);
  font-size: 0.9rem;
}

.references-page .tm-testimonials {
padding: 95px 0 105px;
  background: #ffffff;
}

.references-page .tm-testimonial-grid {
max-width: 900px;
  margin: 48px auto 0;
}

.references-page .tm-final-cta {
padding: 110px 0;
}

/* =========================
   Website erstellen lassen
========================= */

.tm-website,
.tm-web-intro,
.tm-references-preview,
.tm-web-two-cards {
background: #ffffff;
}

.tm-web-hero {
padding: 120px 0;
  background: radial-gradient(circle at 78% 18%, rgba(37, 99, 235, 0.22), transparent 34%), var(--tm-bg-dark);
  color: #ffffff;
}

.tm-web-hero p {
color: rgba(255, 255, 255, 0.78);
}

.tm-web-hero .tm-eyebrow {
color: #bfdbfe;
}

.tm-website-grid,
.tm-web-hero-grid,
.tm-web-intro-grid {
display: grid;
  grid-template-columns: minmax(0, 1fr) 470px;
  gap: 72px;
  align-items: center;
}

.tm-web-preview {
overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: linear-gradient(135deg, #1f2937, #020617);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  transform: rotate(-2deg);
}

.tm-web-preview-content {
display: flex;
  min-height: 300px;
  align-items: center;
  padding: 42px;
  background: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.32), transparent 35%), linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent);
}

.tm-web-preview-content p {
margin: 0;
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.tm-device-preview {
position: relative;
  min-height: 420px;
}

.tm-laptop {
display: flex;
  min-height: 330px;
  align-items: center;
  justify-content: center;
  border: 14px solid #111827;
  border-radius: 30px;
  background: linear-gradient(135deg, #eff6ff, #ffffff);
  box-shadow: var(--tm-shadow-md);
}

.tm-phone {
position: absolute;
  right: 20px;
  bottom: 0;
  display: flex;
  width: 155px;
  min-height: 250px;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 10px solid #111827;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--tm-shadow-md);
}

.tm-laptop p,
.tm-phone p {
margin: 0;
  color: var(--tm-text);
  font-weight: 850;
  line-height: 1.1;
  letter-spacing: -0.05em;
  text-align: center;
}

.tm-laptop p {
font-size: 2rem;
}

.tm-phone p {
font-size: 1rem;
}

.tm-web-benefits {
display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.tm-web-services-grid {
display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  margin-top: 50px;
  margin-bottom: 38px;
}

.tm-results {
background: var(--tm-bg-soft);
}

.tm-results-grid {
display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 60px;
  align-items: start;
}

.tm-web-testimonials {
display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tm-web-testimonials blockquote {
margin: 0;
  padding: 26px;
  border: 1px solid var(--tm-border);
  border-radius: var(--tm-radius-md);
  background: #ffffff;
  color: var(--tm-text);
  box-shadow: 0 10px 34px rgba(15, 23, 42, 0.04);
}

.tm-web-two-grid {
display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.tm-care-box {
background: radial-gradient(circle at 85% 20%, rgba(37, 99, 235, 0.16), transparent 35%), #ffffff;
}

.tm-care-box .tm-btn {
margin-top: 1rem;
}

.website-page .tm-final-box .tm-btn {
min-width: 220px;
  white-space: nowrap;
}

/* =========================
   Wartung & Betreuung V2
========================= */

.wartung-page-v2 section {
padding: 112px 0;
}

.wartung-page-v2 .tm-container {
width: min(100% - 52px, 1080px);
}

.tw-center {
margin-top: 34px;
  text-align: center;
}

.tw-micro {
max-width: 360px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.86rem;
  line-height: 1.45;
}

.tw-hero {
padding: 116px 0 120px;
  background: radial-gradient(circle at 82% 22%, rgba(37, 99, 235, 0.10), transparent 34%), linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.tw-hero-grid {
display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 72px;
  align-items: center;
}

.tw-hero-content h1 {
max-width: 720px;
  font-size: clamp(3.1rem, 5.6vw, 5.2rem);
  letter-spacing: -0.07em;
}

.tw-hero-text {
max-width: 620px;
  margin-top: 24px;
  color: #334155;
  font-size: 1.12rem;
  line-height: 1.65;
}

.wartung-page-v2 .tm-actions {
margin-top: 30px;
  gap: 14px;
}

.wartung-page-v2 .tm-actions .tm-btn-blue {
min-width: 190px;
  box-shadow: 0 18px 44px rgba(37, 99, 235, 0.28);
}

.wartung-page-v2 .tm-actions .tm-btn-light {
background: transparent;
  border-color: transparent;
  box-shadow: none;
  color: #334155;
}

.wartung-page-v2 .tm-actions .tm-btn-light:hover {
background: #ffffff;
  border-color: rgba(226, 232, 240, 0.95);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}

.wartung-page-v2 .tw-trust-list {
display: grid;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.wartung-page-v2 .tw-trust-list li {
position: relative;
  padding: 0 0 0 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #475569;
  font-size: 0.88rem;
  font-weight: 650;
}

.wartung-page-v2 .tw-trust-list li::before {
content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--tm-primary);
  font-weight: 900;
}

.tw-status-card {
padding: 30px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 30px;
  background: radial-gradient(circle at 78% 0%, rgba(37, 99, 235, 0.16), transparent 34%), #ffffff;
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.12);
}

.tw-status-label {
margin: 0 0 18px;
  color: var(--tm-primary);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tw-status-main {
display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding: 18px;
  border-radius: 18px;
  background: #f8fafc;
}

.tw-status-main span {
width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.14);
}

.tw-status-main strong {
color: #0f172a;
  font-size: 1.12rem;
}

.tw-status-list {
display: grid;
  gap: 10px;
}

.tw-status-list div {
display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}

.tw-status-list span {
color: #64748b;
  font-size: 0.9rem;
}

.tw-status-list strong {
color: #0f172a;
  font-size: 0.9rem;
}

.tw-status-note {
margin: 18px 0 0;
  color: #64748b;
  font-size: 0.86rem;
}

.tw-section-head {
max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.tw-section-head h2 {
margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  letter-spacing: -0.06em;
}

.tw-section-head p:not(.tm-eyebrow) {
max-width: 660px;
  margin: 16px auto 0;
  color: #64748b;
  font-size: 1.03rem;
}

.tw-section-head-light p:not(.tm-eyebrow) {
color: rgba(255, 255, 255, 0.72);
}

.tw-risk {
background: radial-gradient(circle at 20% 10%, rgba(239, 68, 68, 0.18), transparent 34%), radial-gradient(circle at 84% 80%, rgba(37, 99, 235, 0.18), transparent 34%), linear-gradient(135deg, #080b12 0%, #111827 55%, #020617 100%);
  color: #ffffff;
}

.tw-risk .tm-eyebrow {
color: #fca5a5;
}

.tw-risk-grid {
display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 820px;
  margin: 0 auto;
}

.tw-risk-grid>div {
min-height: 160px;
  padding: 24px;
  border: 1px solid rgba(248, 113, 113, 0.22);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

.tw-risk-grid>div>span {
display: none;
}

.tw-risk-icon {
display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(248, 113, 113, 0.12);
  color: #f87171;
}

.tw-risk-icon svg {
width: 21px;
  height: 21px;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tw-risk-grid strong {
display: block;
  margin-bottom: 7px;
  color: #ffffff;
  font-size: 1.05rem;
}

.tw-risk-grid p {
margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.tw-solution {
background: radial-gradient(circle at 72% 20%, rgba(37, 99, 235, 0.26), transparent 35%), linear-gradient(135deg, #050816 0%, #08111f 55%, #020617 100%);
  color: #ffffff;
}

.tw-solution p {
color: rgba(255, 255, 255, 0.72);
}

.tw-solution .tm-eyebrow {
color: #bfdbfe;
}

.tw-solution-grid {
display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 74px;
  align-items: center;
}

.tw-solution h2 {
max-width: 560px;
  font-size: clamp(2.5rem, 4.7vw, 4.4rem);
  letter-spacing: -0.07em;
}

.tw-solution-grid>div:first-child>p:not(.tm-eyebrow):not(.tw-micro) {
max-width: 470px;
  font-size: 1.03rem;
}

.tw-feature-panel {
display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.38);
}

.tw-feature-panel>div {
min-height: 156px;
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.tw-feature-panel strong {
display: block;
  margin-bottom: 9px;
  color: #ffffff;
  font-size: 1.08rem;
}

.tw-feature-panel span {
display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.93rem;
  line-height: 1.5;
}

.tw-process {
background: #f6f8fb;
}

.tw-process-grid {
display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.tw-process-grid>div {
padding: 24px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.055);
}

.tw-process-grid span {
display: inline-flex;
  margin-bottom: 18px;
  color: var(--tm-primary);
  font-size: 0.76rem;
  font-weight: 900;
}

.tw-process-grid strong {
display: block;
  margin-bottom: 8px;
  color: #0f172a;
  font-size: 1.08rem;
}

.tw-process-grid p {
margin: 0;
  color: #64748b;
  font-size: 0.92rem;
}

.tw-takeover {
background: #ffffff;
}

.tw-takeover-box {
display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 70px;
  align-items: center;
  padding: 54px;
  border-radius: 34px;
  background: #f8fafc;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.tw-takeover-box h2 {
max-width: 680px;
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  letter-spacing: -0.06em;
}

.tw-takeover-box p {
max-width: 650px;
  color: #475569;
}

.tw-package {
background: radial-gradient(circle at 78% 22%, rgba(37, 99, 235, 0.12), transparent 34%), #ffffff;
}

.tw-package h2 {
max-width: 650px;
  font-size: clamp(2.6rem, 4.6vw, 4.2rem);
  letter-spacing: -0.07em;
}

.tw-package p {
max-width: 560px;
}

.tw-price-label {
margin: 0 0 18px;
  color: var(--tm-primary);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tw-trust {
background: #f8fafc;
}

.tw-trust-grid {
display: grid;
  grid-template-columns: 430px minmax(0, 1fr);
  gap: 74px;
  align-items: center;
}

.tw-trust-image {
position: relative;
}

.tw-trust-image img {
display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.16);
}

.tw-trust-image div {
position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.78);
  color: #ffffff;
  backdrop-filter: blur(14px);
}

.tw-trust-image strong {
display: block;
  margin-bottom: 4px;
  font-size: 0.92rem;
}

.tw-trust-image span {
display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.tw-trust h2 {
max-width: 580px;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  letter-spacing: -0.06em;
}

.tw-trust p {
max-width: 560px;
}

.tw-mini-list {
display: grid;
  gap: 14px;
  max-width: 560px;
  margin-top: 30px;
}

.tw-mini-list>div {
padding: 18px 20px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 34px rgba(15, 23, 42, 0.04);
}

.tw-mini-list strong {
display: block;
  margin-bottom: 4px;
  color: #0f172a;
}

.tw-mini-list span {
display: block;
  color: #64748b;
  font-size: 0.94rem;
}

.tw-faq {
background: #ffffff;
}

.tw-faq-list {
max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.tw-faq-list details {
padding: 20px 22px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.04);
}

.tw-faq-list summary {
cursor: pointer;
  color: #0f172a;
  font-weight: 800;
}

.tw-faq-list p {
margin: 12px 0 0;
  color: #64748b;
}

.tw-final {
background: radial-gradient(circle at 50% 100%, rgba(37, 99, 235, 0.28), transparent 38%), #080b12;
  color: #ffffff;
  text-align: center;
}

.tw-final .tm-eyebrow {
color: #bfdbfe;
}

.tw-final-box {
max-width: 780px;
  margin: 0 auto;
}

.tw-final h2 {
margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  letter-spacing: -0.07em;
}

.tw-final p:not(.tm-eyebrow) {
max-width: 560px;
  margin: 16px auto 26px;
  color: rgba(255, 255, 255, 0.72);
}

/* =========================
   Standard Content
========================= */

.site-main,
.entry-content {
width: min(100% - 40px, var(--tm-container));
  margin: 0 auto;
}

.entry-content {
padding: 80px 0;
}

.entry-content h1,
.entry-content h2,
.entry-content h3 {
margin-bottom: 1rem;
}

.entry-content p {
color: var(--tm-muted);
}

/* =========================
   Footer FINAL
========================= */

.site-footer {
padding: 54px 0 24px;
  background: #f6f8fb;
  border-top: 1px solid rgba(226, 232, 240, 0.85);
}

.tm-footer-inner {
display: grid;
  grid-template-columns: 0.95fr 2.35fr;
  gap: 70px;
  align-items: start;
}

.tm-footer-brand {
max-width: 350px;
}

.tm-footer-brand .tm-logo {
font-size: 1.08rem;
}

.tm-footer-brand p {
margin: 12px 0 18px;
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.55;
}

.tm-footer-cta {
display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  color: #0f172a;
  font-size: 0.82rem;
  font-weight: 750;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.tm-footer-cta:hover {
color: #ffffff;
  background: var(--tm-primary);
  border-color: var(--tm-primary);
}

.tm-footer-grid {
display: grid;
  grid-template-columns: 1fr 1.25fr 1fr 0.85fr;
  gap: 34px;
}

.tm-footer-grid strong {
display: block;
  margin-bottom: 12px;
  color: #0f172a;
  font-size: 0.78rem;
  font-weight: 850;
}

.tm-footer-grid ul {
margin: 0;
  padding: 0;
  list-style: none;
}

.tm-footer-grid li {
margin: 0 0 8px;
}

.tm-footer-grid a {
color: #64748b;
  font-size: 0.82rem;
  font-weight: 520;
  text-decoration: none;
}

.tm-footer-grid a:hover {
color: var(--tm-primary);
}

.tm-footer-bottom {
grid-column: 1 / -1;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  color: #94a3b8;
  font-size: 0.76rem;
}

/* =========================
   Accessibility
========================= */

.skip-link {
position: absolute;
  top: -60px;
  left: 16px;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 999px;
  background: #050505;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  transition: top 0.2s ease;
}

.skip-link:focus {
top: 16px;
}

:focus {
outline: none;
}

:focus-visible {
outline: 3px solid #2563eb;
  outline-offset: 3px;
  border-radius: 6px;
}

/* =========================
   Premium Mobile Menu
========================= */

.tm-menu-toggle {
display: none;
}

.tm-mobile-menu {
display: none;
}

@media (max-width: 1080px) {
.tm-header-inner {
position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    height: 64px;
    gap: 16px;
}

.site-branding {
justify-self: start;
}

.tm-logo {
font-size: 1.08rem;
}

.main-navigation,
.tm-header-cta {
display: none;
}

.tm-menu-toggle {
position: absolute;
    right: 0;
    top: 50%;
    z-index: 1100;
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
    transform: translateY(-50%);
}

.tm-menu-toggle span {
position: absolute;
    left: 50%;
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: #0f172a;
    transform: translateX(-50%);
    transition: transform 0.24s ease, opacity 0.18s ease, top 0.24s ease;
}

.tm-menu-toggle span:nth-child(1) {
top: 15px;
}

.tm-menu-toggle span:nth-child(2) {
top: 23px;
}

.tm-menu-toggle span:nth-child(3) {
top: 31px;
}

.tm-mobile-menu {
position: fixed;
    inset: 0;
    z-index: 1050;
    display: block;
    padding: 148px 28px 38px;
    background: radial-gradient(circle at 50% -10%, rgba(37, 99, 235, 0.10), transparent 34%), rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-22px) scale(0.985);
    transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.34s cubic-bezier(.22, 1, .36, 1);
}

.tm-mobile-menu.active {
opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.tm-mobile-header {
position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.tm-mobile-brand {
position: absolute;
    left: 50%;
    top: 82px;
    transform: translateX(-50%);
    font-size: 1.62rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--tm-text);
}

.tm-mobile-cta {
margin-top: 28px;
    display: grid;
    gap: 12px;
}

.tm-mobile-cta .tm-btn {
width: 100%;
}

body.tm-menu-open .tm-menu-toggle span:nth-child(1) {
top: 23px;
    transform: translateX(-50%) rotate(45deg);
}

body.tm-menu-open .tm-menu-toggle span:nth-child(2) {
opacity: 0;
}

body.tm-menu-open .tm-menu-toggle span:nth-child(3) {
top: 23px;
    transform: translateX(-50%) rotate(-45deg);
}
}

/* =========================
   Responsive
========================= */

@media (max-width: 1020px) {
.tm-web-hero-grid,
.tm-website-grid,
.tm-web-intro-grid,
.tm-featured-grid,
.tm-about-hero-grid,
.tm-results-grid,
.ueber-mich-page .tm-maintenance-grid {
grid-template-columns: 1fr;
    gap: 48px;
}

.tm-about-visual {
max-width: 480px;
    margin-left: 0;
}

.tm-web-services-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tm-ref-case-grid,
.tm-logos-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}

@media (max-width: 900px) {
.tm-start-hero-grid,
.tw-hero-grid,
.tm-start-maintenance-grid,
.tw-solution-grid,
.tw-trust-grid,
.tm-start-image-grid,
.tm-start-image-grid-reverse,
.tm-footer-inner {
grid-template-columns: 1fr;
    gap: 32px;
}

.tm-ref-grid {
grid-template-columns: 1fr;
}

.tw-process-grid,
.tm-contact-alt-grid {
grid-template-columns: 1fr;
}

.ueber-mich-page .tm-about-timeline,
.ueber-mich-page .tm-about-process-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ueber-mich-page .tm-feature-grid {
grid-template-columns: 1fr;
}

.ueber-mich-page .tm-final-box {
grid-template-columns: 1fr;
}
}

@media (max-width: 740px) {
.tm-web-hero,
.tm-about-hero,
.tm-references-hero {
padding: 88px 0 76px;
}

.tm-web-benefits,
.tm-web-services-grid,
.tm-reference-grid,
.tm-web-testimonials,
.tm-web-two-grid,
.tm-ref-case-grid,
.tm-logos-grid {
grid-template-columns: 1fr;
}

.tm-device-preview {
min-height: 360px;
}

.tm-laptop {
min-height: 260px;
}

.tm-phone {
right: 0;
    width: 130px;
    min-height: 210px;
}

.tm-about-visual {
max-width: 100%;
}

.tm-about-overlay {
left: 18px;
    right: 18px;
    bottom: 18px;
  
}

.ueber-mich-page section {
padding: 80px 0;
}
}

@media (max-width: 600px) {
h1 {
font-size: 2.4rem;
}

h2 {
font-size: 2rem;
}

.tm-start-hero {
padding: 80px 0 90px;
}

.tm-start-form-card,
.tw-status-card {
padding: 22px;
}

.ueber-mich-page .tm-about-timeline,
.ueber-mich-page .tm-about-process-grid {
grid-template-columns: 1fr;
}
}

/* =========================
   Header Logo Fix
========================= */

.site-header .tm-logo {
display: inline-flex;
  align-items: baseline;
  justify-content: flex-start;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.site-header .tm-logo:hover {
transform: none;
  box-shadow: none;
}

.site-header .tm-logo-main,
.site-header .tm-logo-dot,
.site-header .tm-logo-sub {
display: inline;
}

/* =========================
   Footer Logo Fix
========================= */

.site-footer .tm-logo {
display: inline-flex;
  align-items: baseline;
  justify-content: flex-start;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.site-footer .tm-logo:hover {
transform: none;
  box-shadow: none;
}

.site-footer .tm-logo-main,
.site-footer .tm-logo-dot,
.site-footer .tm-logo-sub {
display: inline;
}

/* =========================
   Startseite Website Check
========================= */

.tm-website-check-card {
display: block;
}

.tm-website-check-field {
display: grid;
  gap: 12px;
  margin-top: 18px;
}

.tm-website-check-field input {
width: 100%;
  height: 54px;
  padding: 0 18px;
  border: 1px solid #dbe3ef;
  border-radius: 999px;
  background: #f8fafc;
  color: var(--tm-text);
  font-size: 0.96rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.tm-website-check-field input:focus {
outline: none;
  border-color: var(--tm-primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.tm-website-check-field .tm-btn {
width: 100%;
  border: 0;
  cursor: pointer;
}

.tm-website-check-card small {
margin-top: 14px;
}

.tm-info-box {
max-width: 700px;
  margin: 0 auto 30px;
  padding: 16px 20px;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  text-align: center;
  font-size: 0.95rem;
}

.tm-info-box strong {
display: block;
  margin-top: 6px;
  color: #2563eb;
  font-weight: 700;
}

.tm-info-box {
max-width: 700px;
  margin: 0 auto 30px;
  padding: 16px 20px;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  text-align: center;
  font-size: 0.95rem;
}

.tm-info-box strong {
display: block;
  margin-top: 6px;
  color: #2563eb;
  font-weight: 700;
}

.tm-proof {
margin-top: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.tm-proof {
margin-top: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.tm-check-form-section {
padding: 90px 0;
  background: #ffffff;
}

.tm-success-box {
max-width: 720px;
  margin: 0 auto;
  padding: 42px;
  border-radius: 28px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  text-align: center;
}

.tm-check-form-head {
max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}

.tm-check-form-head h2 {
margin-left: auto;
  margin-right: auto;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.tm-check-form-head p {
max-width: 620px;
  margin: 14px auto 0;
  color: #64748b;
}

.tm-check-form-head strong {
color: #2563eb;
  word-break: break-all;
}

.tm-check-hero-form-card {
padding: 34px;
  border: 1px solid rgba(226, 232, 240, 0.14);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.96);
  color: #0f172a;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.35);
}

.tm-check-hero-form-card h2 {
  margin-bottom: 12px;
  font-size: 2rem;
  color: #0f172a;
}

.tm-check-hero-form-card p {
color: #475569;
}

.tm-check-hero-form-card strong {
color: var(--tm-primary);
  word-break: break-all;
}

.tm-check-form {
display: grid;
  gap: 12px;
}

.tm-check-form input,
.tm-check-form textarea {
width: 100%;
  padding: 16px 18px;
  border: 1px solid #dbe3ef;
  border-radius: 15px;
  background: #f8fafc;
  color: #0f172a;
  font-size: 0.95rem;
}

.tm-check-form textarea {
min-height: 110px;
  resize: vertical;
}

.tm-check-form button {
width: 100%;
  margin-top: 4px;
  border: 0;
}

.tm-check-form .tm-form-trust {
margin: 0;
  color: #64748b;
  font-size: 0.82rem;
  text-align: center;
}

.tm-check-form-section-secondary {
padding-top: 95px;
  padding-bottom: 105px;
  background: #ffffff;
}

.tm-check-form .tm-form-hint {
margin: -4px 0 0;
  color: #64748b;
  font-size: 0.82rem;
  text-align: center;
}

.tm-check-hero-form-card strong span {
display: inline-block;
  max-width: 100%;
  word-break: break-all;
  overflow-wrap: anywhere;
}

/* =========================
   Website Check Report Clean
========================= */

.website-check-page-single .tm-check-signal-hero {
padding: 120px 0 88px;
  background:
    radial-gradient(circle at 70% 8%, rgba(37, 99, 235, 0.45), transparent 34%),
    linear-gradient(135deg, #020617 0%, #071326 52%, #0b2f7a 100%);
  color: #ffffff;
}

.website-check-page-single .tm-check-single-wrap {
width: min(100% - 48px, 1180px);
  max-width: 1180px;
  margin: 0 auto;
}

.website-check-page-single .tm-check-signal-hero h1 {
max-width: 760px;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.website-check-page-single .tm-checked-site-line {
display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.website-check-page-single .tm-checked-site-line strong {
padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.website-check-page-single .tm-action-report {
width: 100%;
  margin: 0;
  padding: 22px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

.website-check-page-single .tm-action-status {
display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.18), rgba(15, 23, 42, 0.48));
  border: 1px solid rgba(250, 204, 21, 0.35);
}

.website-check-page-single .tm-action-status strong {
display: block;
  color: #ffffff;
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.website-check-page-single .tm-action-status span {
display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.website-check-page-single .tm-action-status p {
margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.website-check-page-single .tm-action-score {
margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.website-check-page-single .tm-action-score-top {
display: flex;
  align-items: center;
  gap: 18px;
}

.website-check-page-single .tm-action-score-top strong {
flex-shrink: 0;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.9;
  color: #ffffff;
  letter-spacing: -0.06em;
}

.website-check-page-single .tm-action-score-label span {
display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.website-check-page-single .tm-action-score-label p {
margin: 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  line-height: 1.5;
}

.website-check-page-single .tm-action-score-bar {
position: relative;
  width: 100%;
  height: 14px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.website-check-page-single .tm-action-score-bar {
position: relative;
  width: 100%;
  height: 14px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.website-check-page-single .tm-action-score-bar i {
display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg,
      #ef4444 0%,
      #facc15 52%,
      #22c55e 100%);
  box-shadow:
    0 0 20px rgba(37, 99, 235, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

@media (max-width: 680px) {
.website-check-page-single .tm-action-score-top {
flex-direction: column;
    align-items: flex-start;
}
}

fff .website-check-page-single .tm-action-status-bad {
background: linear-gradient(135deg, rgba(239, 68, 68, 0.22), rgba(15, 23, 42, 0.48));
  border-color: rgba(239, 68, 68, 0.42);
}

.website-check-page-single .tm-action-status-good {
background: linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(15, 23, 42, 0.48));
  border-color: rgba(34, 197, 94, 0.34);
}

.website-check-page-single .tm-action-light {
display: inline-flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.website-check-page-single .tm-action-light i {
display: block;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
}

.website-check-page-single .tm-action-light i:nth-child(1) {
border: 2px solid rgba(239, 68, 68, 0.8);
}

.website-check-page-single .tm-action-light i:nth-child(2) {
border: 2px solid rgba(250, 204, 21, 0.9);
}

.website-check-page-single .tm-action-light i:nth-child(3) {
border: 2px solid rgba(34, 197, 94, 0.78);
}

.website-check-page-single .tm-action-status-warning .tm-action-light i:nth-child(2),
.website-check-page-single .tm-action-status:not(.tm-action-status-bad):not(.tm-action-status-good) .tm-action-light i:nth-child(2) {
background: #facc15;
  box-shadow: 0 0 18px rgba(250, 204, 21, 0.6);
}

.website-check-page-single .tm-action-status-bad .tm-action-light i:nth-child(1) {
background: #ef4444;
  box-shadow: 0 0 18px rgba(239, 68, 68, 0.6);
}

.website-check-page-single .tm-action-status-good .tm-action-light i:nth-child(3) {
background: #22c55e;
  box-shadow: 0 0 18px rgba(34, 197, 94, 0.55);
}

.website-check-page-single .tm-action-diagnosis,
.website-check-page-single .tm-action-hints,
.website-check-page-single .tm-action-details {
margin-top: 14px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.website-check-page-single .tm-action-diagnosis h2 {
max-width: 860px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.website-check-page-single .tm-action-diagnosis p {
max-width: 860px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
}

.website-check-page-single .tm-action-kpis {
display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.website-check-page-single .tm-action-kpis>div {
padding: 18px 14px;
  border-radius: 18px;
  text-align: center;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.website-check-page-single .tm-action-kpis strong {
display: block;
  color: #ffffff;
  font-size: 1.65rem;
}

.website-check-page-single .tm-action-kpis span {
display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
}

.website-check-page-single .tm-action-hints-head {
display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.website-check-page-single .tm-action-hints-head strong {
color: #ffffff;
}

.website-check-page-single .tm-action-hints-head span {
color: rgba(255, 255, 255, 0.52);
  font-size: 0.74rem;
}

.website-check-page-single .tm-action-hint-grid {
display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.website-check-page-single .tm-action-hint {
padding: 18px;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.website-check-page-single .tm-action-hint h3 {
margin: 0 0 8px;
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.08;
}

.website-check-page-single .tm-action-hint p {
margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
  line-height: 1.48;
}

.website-check-page-single .tm-action-form-card {
width: 100%;
  max-width: 920px;
  margin: 64px auto 0;
  padding: 30px;
  border-radius: 28px;
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.website-check-page-single .tm-action-form-card .tm-btn-blue {
width: 100%;
  justify-content: center;
}

.website-check-page-single .tm-single-backend-section {
padding: 76px 0;
  background: #ffffff;
}

.website-check-page-single .tm-backend-limit-box-v2 {
max-width: 920px;
  margin: 0 auto;
  padding: 28px;
  border-radius: 28px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.website-check-page-single .tm-backend-limit-box-v2 ul {
display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.website-check-page-single .tm-backend-limit-box-v2 li {
padding: 10px 13px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  font-size: 0.78rem;
  font-weight: 900;
}

.website-check-page-single .tm-check-form .tm-btn-blue {
width: 100%;
}

@media (max-width: 980px) {
.website-check-page-single .tm-check-single-wrap {
width: min(100% - 28px, 1180px);
}

.website-check-page-single .tm-action-status,
.website-check-page-single .tm-action-kpis,
.website-check-page-single .tm-action-hint-grid {
grid-template-columns: 1fr;
}

.website-check-page-single .tm-action-hints-head {
display: block;
}
}

/* =========================
   TOABAI LOADER CLEAN v2
========================= */

.tm-scan-loader {
position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(37, 99, 235, 0.25), transparent 35%),
    linear-gradient(135deg, #050914 0%, #071226 45%, #0b1e4a 100%);
  color: #ffffff;
}

.tm-scan-loader.is-visible {
display: flex;
}

.tm-scan-loader-inner {
width: min(92vw, 520px);
  text-align: center;
  padding: 40px 20px;
}

.tm-scan-step {
margin: 0 0 16px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.tm-scan-note {
max-width: 460px;
  margin: 0 auto 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.5;
}

.tm-scan-dots {
display: flex;
  justify-content: center;
  gap: 10px;
}

.tm-scan-dots i {
width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  animation: tmScanDot 1.2s ease-in-out infinite;
}

.tm-scan-dots i:nth-child(1) {
animation-delay: 0s;
}

.tm-scan-dots i:nth-child(2) {
animation-delay: 0.12s;
}

.tm-scan-dots i:nth-child(3) {
animation-delay: 0.24s;
}

.tm-scan-dots i:nth-child(4) {
animation-delay: 0.36s;
  background: #2563eb;
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.6);
}

.tm-scan-dots i:nth-child(5) {
animation-delay: 0.48s;
}

.tm-scan-brand {
margin-top: 28px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.04em;
}

.tm-scan-brand strong {
color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

@keyframes tmScanDot {
0%,
  100% {
    transform: scale(1);
    opacity: 0.4;
  }

  50% {
    transform: scale(1.3);
    opacity: 1;
  }
}

/* =========================
   WEBSITE CHECK SCORE
========================= */

.website-check-page-single .tm-action-score {
margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.website-check-page-single .tm-action-score-top {
display: flex;
  align-items: center;
  gap: 18px;
}

.website-check-page-single .tm-action-score-top>strong {
flex-shrink: 0;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.website-check-page-single .tm-action-score-label span {
display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.website-check-page-single .tm-action-score-label p {
margin: 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  line-height: 1.45;
}

.website-check-page-single .tm-action-score-bar {
position: relative;
  width: 100%;
  height: 14px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.website-check-page-single .tm-action-score-bar i {
display: block;
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(90deg,
      #ef4444 0%,
      #facc15 50%,
      #22c55e 100%);
  box-shadow:
    0 0 24px rgba(37, 99, 235, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

@media (max-width: 680px) {
.website-check-page-single .tm-action-score-top {
flex-direction: column;
    align-items: flex-start;
}
}

/* =========================
   WEBSITE CHECK REPORT AREAS
========================= */

.website-check-page-single .tm-report-areas {
margin-top: 14px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.website-check-page-single .tm-report-areas-head {
display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.website-check-page-single .tm-report-areas-head span {
color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.website-check-page-single .tm-report-areas-head strong {
color: #ffffff;
  font-size: 1rem;
}

.website-check-page-single .tm-report-area-grid {
display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.website-check-page-single .tm-report-area {
position: relative;
  min-height: 94px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.website-check-page-single .tm-report-area::before {
content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.website-check-page-single .tm-report-area span {
display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 800;
}

.website-check-page-single .tm-report-area strong {
display: block;
  margin-top: 6px;
  color: #ffffff;
  font-size: 1rem;
}

.website-check-page-single .tm-report-area-good::before {
background: #22c55e;
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.45);
}

.website-check-page-single .tm-report-area-warning::before {
background: #facc15;
  box-shadow: 0 0 16px rgba(250, 204, 21, 0.45);
}

.website-check-page-single .tm-report-area-bad::before {
background: #ef4444;
  box-shadow: 0 0 16px rgba(239, 68, 68, 0.45);
}

@media (max-width: 980px) {
.website-check-page-single .tm-report-area-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}

.website-check-page-single .tm-report-areas-head {
display: block;
}

.website-check-page-single .tm-report-areas-head strong {
display: block;
    margin-top: 6px;
}
}

@media (max-width: 520px) {
.website-check-page-single .tm-report-area-grid {
grid-template-columns: 1fr;
}
}

/* =========================
   REPORT TECH OVERVIEW
========================= */

.website-check-page-single .tm-report-tech-overview {
margin-top: 14px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.website-check-page-single .tm-report-tech-head {
display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.website-check-page-single .tm-report-tech-head span {
color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.website-check-page-single .tm-report-tech-head strong {
color: #ffffff;
  font-size: 1rem;
}

.website-check-page-single .tm-report-tech-grid {
display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.website-check-page-single .tm-report-tech-item {
padding: 18px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.website-check-page-single .tm-report-tech-item span {
display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.website-check-page-single .tm-report-tech-item strong {
display: block;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.35;
  word-break: break-word;
}

@media (max-width: 980px) {
.website-check-page-single .tm-report-tech-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}

.website-check-page-single .tm-report-tech-head {
display: block;
}

.website-check-page-single .tm-report-tech-head strong {
display: block;
    margin-top: 6px;
}
}

@media (max-width: 560px) {
.website-check-page-single .tm-report-tech-grid {
grid-template-columns: 1fr;
}
}

/* =========================
   SPECIAL FINDINGS PREMIUM
========================= */

.website-check-page-single .tm-special-findings {
margin-top: 14px;
  padding: 24px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.46));
  border: 1px solid rgba(37, 99, 235, 0.7);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 24px 70px rgba(0, 0, 0, 0.25);
}

.website-check-page-single .tm-special-findings .tm-report-tech-head {
position: relative;
  display: block;
  padding-left: 58px;
  margin-bottom: 22px;
}

.website-check-page-single .tm-special-findings .tm-report-tech-head::before {
content: "⌁";
  position: absolute;
  left: 0;
  top: -3px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  font-size: 1.45rem;
  background: rgba(37, 99, 235, 0.24);
  border: 1px solid rgba(147, 197, 253, 0.34);
  box-shadow: 0 0 24px rgba(37, 99, 235, 0.35);
}

.website-check-page-single .tm-special-findings .tm-report-tech-head span {
display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.website-check-page-single .tm-special-findings .tm-report-tech-head strong {
display: block;
  margin-top: 5px;
  color: #ffffff;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.1;
}

.website-check-page-single .tm-special-findings .tm-action-hint-grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
}

.website-check-page-single .tm-special-findings .tm-action-hint {
min-height: 190px;
  padding: 22px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(30, 41, 59, 0.76), rgba(15, 23, 42, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.website-check-page-single .tm-special-findings .tm-action-hint small {
display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.18);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.website-check-page-single .tm-special-findings .tm-action-hint h3 {
margin-bottom: 12px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.website-check-page-single .tm-special-findings .tm-action-hint p {
font-size: 0.88rem;
  line-height: 1.55;
}

.website-check-page-single .tm-special-findings .tm-result-meaning {
margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.72);
}

.website-check-page-single .tm-special-findings .tm-action-hint-warning {
background:
    linear-gradient(180deg, rgba(30, 41, 59, 0.78), rgba(15, 23, 42, 0.74));
}

.website-check-page-single .tm-special-findings .tm-action-hint-good {
border-color: rgba(34, 197, 94, 0.28);
}

.website-check-page-single .tm-special-findings .tm-action-hint-bad {
border-color: rgba(239, 68, 68, 0.32);
}

@media (max-width: 980px) {
.website-check-page-single .tm-special-findings .tm-action-hint-grid {
grid-template-columns: 1fr;
}
}

/* ========================================
   SPECIAL FINDINGS
======================================== */

/* =========================================================
   SPECIAL FINDINGS PREMIUM
========================================================= */

/* =========================
   Diagnose Grid
========================= */

/* =========================
   Diagnose Mini CTA
========================= */

/* =========================
   Special Card Status
========================= */

/* =========================
   Diagnosis KPI v2
========================= */

/* =========================
   Diagnosis KPI qualitative
========================= */

/* =========================
   Secondary Hint Cards
========================= */

.tm-action-hints {
margin-top: 38px;
  padding: 26px;
  border-radius: 26px;
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.03) 0%,
      rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.tm-action-hints-head {
margin-bottom: 22px;
}

.tm-action-hints-head strong {
display: block;
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.tm-action-hints-head span {
font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.tm-action-hint-grid {
gap: 16px;
}

.tm-action-hint {
padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: none;
  transform: none;
}

.tm-action-hint:hover {
transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.09);
}

.tm-action-hint small {
font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.tm-action-hint h3 {
margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.2;
}

.tm-action-hint em {
display: inline-flex;
  margin-bottom: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  font-style: normal;
  font-size: 0.74rem;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.62);
}

.tm-action-hint p {
font-size: 0.93rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

.tm-result-meaning {
margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.54);
}

/* =========================
   PATH BADGES
========================= */

/* =========================
   FEATURED SPECIAL CARD
========================= */

/* =========================
   COMPACT REPORT HEADER
========================= */

/* =========================
   Report Meta + Score Strip
========================= */

.tm-check-single-wrap {
max-width: 1280px;
}

.tm-action-report {
max-width: 100%;
}

.tm-check-single-hero h1 {
font-size: clamp(3.2rem, 6vw, 5.7rem);
  margin-bottom: 10px;
}

.tm-check-single-hero .tm-eyebrow {
margin-bottom: 10px;
}

/* =========================
   Website Check Dashboard Width
========================= */

.website-check-page-single .tm-check-single-wrap {
max-width: 1220px;
}

.website-check-page-single .tm-action-report {
max-width: 100%;
  width: 100%;
}

.website-check-page-single .tm-check-hero-form-card {
max-width: 720px;
}

/* =========================
   Website Check Hero Compact
========================= */

.website-check-page-single .tm-check-single-hero {
padding-top: 72px;
}

.website-check-page-single .tm-check-single-hero h1 {
font-size: clamp(3rem, 5.2vw, 5rem);
  line-height: 0.95;
  margin-bottom: 10px;
}

.website-check-page-single .tm-eyebrow {
margin-bottom: 8px;
}

.website-check-page-single .tm-checked-site-line {
margin-bottom: 22px;
}

/* =========================
   Score Strip Refinement
========================= */

/* =========================
   Dashboard Vertical Rhythm
========================= */

.tm-action-hints,
.tm-action-details {
margin-top: 14px;
}

/* =========================
   Explainer Block
========================= */

/* =========================
   WEBSITE CHECK FINAL OVERRIDE
========================= */

.website-check-page-single .tm-check-single-wrap {
width: min(100% - 48px, 1180px);
  max-width: 1180px;
}

.website-check-page-single .tm-action-report {
padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.065));
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.website-check-page-single .tm-check-signal-hero {
padding-top: 86px;
}

.website-check-page-single .tm-check-signal-hero h1 {
font-size: clamp(2.8rem, 5vw, 4.8rem);
  margin-bottom: 10px;
}

.website-check-page-single .tm-check-report-meta,
.website-check-page-single .tm-check-score-strip,
.website-check-page-single .tm-report-areas,
.website-check-page-single .tm-report-tech-overview,
.website-check-page-single .tm-special-findings,
.website-check-page-single .tm-diagnosis-grid,
.website-check-page-single .tm-action-hints,
.website-check-page-single .tm-action-details {
margin-top: 12px;
}

.website-check-page-single .tm-check-report-meta {
margin-top: 0;
  padding: 12px 18px;
  border-radius: 16px;
}

.website-check-page-single .tm-check-score-strip {
padding: 24px 28px;
  border-radius: 22px;
  grid-template-columns: 1.05fr 0.95fr;
}

.website-check-page-single .tm-check-score-left>strong {
min-width: 104px;
  font-size: clamp(3.2rem, 5.4vw, 4.8rem);
}

.website-check-page-single .tm-check-score-left h2 {
font-size: 1.12rem;
}

.website-check-page-single .tm-check-score-left p {
font-size: 0.9rem;
}

.website-check-page-single .tm-report-areas,
.website-check-page-single .tm-report-tech-overview,
.website-check-page-single .tm-action-hints,
.website-check-page-single .tm-action-details {
padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.1);
}

.website-check-page-single .tm-report-area,
.website-check-page-single .tm-report-tech-item,
.website-check-page-single .tm-action-hint {
background: rgba(15, 23, 42, 0.48);
  border-color: rgba(255, 255, 255, 0.08);
}

.website-check-page-single .tm-special-findings {
padding: 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(8, 18, 40, 0.96), rgba(7, 16, 34, 0.98));
  border: 1px solid rgba(59, 130, 246, 0.32);
}

.website-check-page-single .tm-special-findings-grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.website-check-page-single .tm-special-card {
min-height: 245px;
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  border-color: rgba(255, 255, 255, 0.08);
}

.website-check-page-single .tm-special-card-featured {
grid-column: span 2;
}

.website-check-page-single .tm-diagnosis-grid {
display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 14px;
  margin-bottom: 0;
}

.website-check-page-single .tm-diagnosis-main,
.website-check-page-single .tm-diagnosis-action {
padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.website-check-page-single .tm-diagnosis-main h2 {
font-size: clamp(1.9rem, 3.2vw, 3.1rem);
}

.website-check-page-single .tm-action-form-card {
max-width: 860px;
  margin-top: 42px;
}

.website-check-page-single .tm-check-explainer {
padding-top: 96px;
  padding-bottom: 90px;
}

.website-check-page-single .tm-check-explainer-grid {
max-width: 1120px;
}

.website-check-page-single .tm-check-explainer-main,
.website-check-page-single .tm-check-explainer-side {
border-radius: 30px;
  padding: 46px;
}

.website-check-page-single .tm-check-explainer h2 {
font-size: clamp(2.6rem, 4.4vw, 4.7rem);
}

@media (max-width: 980px) {
.website-check-page-single .tm-check-score-strip,
.website-check-page-single .tm-diagnosis-grid,
.website-check-page-single .tm-check-explainer-grid {
grid-template-columns: 1fr;
}

.website-check-page-single .tm-special-findings-grid {
grid-template-columns: 1fr;
}

.website-check-page-single .tm-special-card-featured {
grid-column: span 1;
}
}

.website-check-page-single .tm-action-form-card {
max-width: 860px;
}

.website-check-page-single .tm-action-form-card .wpcf7-form {
padding: 10px 4px 0;
}

.website-check-page-single .tm-check-single-wrap::before {
content: "";
  position: absolute;
  inset: -120px;
  background:
    radial-gradient(circle at top,
      rgba(37, 99, 235, 0.26),
      transparent 65%);
  z-index: -1;
  pointer-events: none;
}

.website-check-page-single .tm-check-single-wrap {
position: relative;
}

.website-check-page-single .tm-check-explainer {
position: relative;
  margin-top: 80px;
}

.website-check-page-single .tm-check-explainer::before {
content: "";
  position: absolute;
  top: -120px;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom,
      transparent,
      #f5f5f7);
}

.website-check-page-single .tm-check-explainer-side {
padding: 42px 38px;
}

.website-check-page-single .tm-check-explainer-side h3 {
font-size: 1.4rem;
}

.website-check-page-single .tm-action-report {
position: relative;
  overflow: hidden;
}

.website-check-page-single .tm-action-report::before {
content: "";
  position: absolute;
  top: -180px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle,
      rgba(59, 130, 246, 0.22),
      transparent 70%);
  pointer-events: none;
}

.website-check-page-single .tm-action-form-card input {
height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #f8fafc;
  padding: 0 18px;
  font-size: 0.95rem;
}

.website-check-page-single .tm-action-form-card input:focus {
outline: none;
  border-color: rgba(37, 99, 235, 0.45);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.website-check-page-single .tm-check-url {
opacity: 0.55;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.website-check-page-single .tm-check-signal-hero h1 {
font-size: clamp(3.4rem, 6vw, 6rem);
  line-height: 0.95;
  max-width: 780px;
}

/* =========================
   Score Wording Refinement
========================= */

.website-check-page-single .tm-score-kicker {
display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.website-check-page-single .tm-check-score-left h2 {
max-width: 460px;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  line-height: 1.08;
}

.website-check-page-single .tm-check-score-left p {
max-width: 520px;
  font-size: 0.88rem;
  line-height: 1.45;
}

.website-check-page-single .tm-check-score-labels span {
text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.68rem;
}

/* Website Check Final Hero Balance */

.website-check-page-single .tm-check-signal-hero {
padding-top: 70px;
}

.website-check-page-single .tm-check-signal-hero h1 {
max-width: 720px;
  font-size: clamp(2.8rem, 4.8vw, 4.9rem);
  line-height: 0.92;
  margin-bottom: 14px;
}

.website-check-page-single .tm-check-hero-subline {
max-width: 680px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.98rem;
  line-height: 1.55;
}

.website-check-page-single .tm-checked-site-line {
margin-bottom: 18px;
}

.website-check-page-single .tm-action-form-card {
margin-top: 48px;
}

.website-check-page-single .tm-check-explainer {
padding-top: 82px;
}

/* =========================
   Special Findings Cleaner Layout
========================= */

.website-check-page-single .tm-special-findings-grid {
display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.website-check-page-single .tm-special-card-featured {
grid-column: 1 / -1;
  min-height: 220px;
}

.website-check-page-single .tm-special-card-featured .tm-special-card-header {
max-width: 720px;
}

.website-check-page-single .tm-special-card-featured .tm-special-description,
.website-check-page-single .tm-special-card-featured .tm-special-meaning-box {
max-width: 820px;
}

@media (max-width: 860px) {
.website-check-page-single .tm-special-findings-grid {
grid-template-columns: 1fr;
}
}

.tm-success-box-modern {
max-width: 700px;
  margin: 0 auto;
  padding: 48px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  text-align: center;
}

.tm-success-icon {
width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.35);
}

.tm-success-kicker {
display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #2563eb;
}

.tm-success-box-modern h2 {
margin: 0 0 18px;
  font-size: 42px;
  line-height: 1.05;
  color: #0f172a;
}

.tm-success-box-modern p {
margin: 0 auto;
  max-width: 540px;
  font-size: 18px;
  line-height: 1.7;
  color: #475569;
}

.tm-success-note {
margin-top: 24px;
  font-size: 14px;
  color: #64748b;
}

@media (max-width:768px) {
.tm-success-box-modern {
padding: 34px 24px;
    border-radius: 24px;
}

.tm-success-box-modern h2 {
font-size: 34px;
}

.tm-success-box-modern p {
font-size: 16px;
}
}

/* =========================
   Zielgruppe / Für wen
========================= */

.tw-target {
padding: 110px 0;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 40%),
    #ffffff;
}

.tw-target-grid {
display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.tw-target-card {
background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  padding: 32px;
  box-shadow:
    0 10px 40px rgba(15, 23, 42, 0.04);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.tw-target-card:hover {
transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.18);
  box-shadow:
    0 18px 60px rgba(15, 23, 42, 0.08);
}

.tw-target-card strong {
display: block;
  font-size: 1.15rem;
  line-height: 1.3;
  color: #0f172a;
  margin-bottom: 14px;
}

.tw-target-card p {
margin: 0;
  color: #475569;
  line-height: 1.7;
}

/* =========================
   Hero Secondary Button
========================= */

.tm-btn-light {
display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #ffffff;
  color: #0f172a;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.tm-btn-light:hover {
background: #f8fafc;
  border-color: rgba(15, 23, 42, 0.18);
  transform: translateY(-1px);
}

/* =========================
   Wartungspaket V2
========================= */

.tw-package {
padding: 130px 0;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 35%),
    #ffffff;
}

.tw-package-layout {
display: grid;
  grid-template-columns: minmax(0, 1.2fr) 420px;
  gap: 80px;
  align-items: center;
}

.tw-package-content h2 {
max-width: 640px;
}

.tw-package-lead {
max-width: 640px;
  margin-top: 24px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #475569;
}

.tw-package-points {
display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.tw-package-points div {
background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  padding: 28px;
  box-shadow:
    0 10px 40px rgba(15, 23, 42, 0.04);
}

.tw-package-points strong {
display: block;
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: #0f172a;
}

.tw-package-points p {
margin: 0;
  color: #475569;
  line-height: 1.7;
}

.tw-price-card-v2 {
position: relative;
  background: linear-gradient(180deg,
      #ffffff 0%,
      #f8fbff 100%);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 34px;
  padding: 42px;
  box-shadow:
    0 30px 80px rgba(15, 23, 42, 0.08);
}

.tw-price-badge {
display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.tw-price-big {
display: flex;
  align-items: flex-end;
  gap: 10px;
  margin: 18px 0 30px;
}

.tw-price-big span {
font-size: 1rem;
  color: #64748b;
  margin-bottom: 10px;
}

.tw-price-big strong {
font-size: 4rem;
  line-height: 1;
  color: #0f172a;
  letter-spacing: -0.04em;
}

.tw-price-big em {
font-style: normal;
  color: #64748b;
  margin-bottom: 12px;
}

.tw-price-list {
display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.tw-price-list li {
position: relative;
  padding-left: 28px;
  color: #334155;
}

.tw-price-list li::before {
content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #2563eb;
}

.tw-price-card-v2 small {
display: block;
  margin-top: 20px;
  color: #64748b;
  line-height: 1.6;
}

/* =========================
   Nutzen / Vorteile
========================= */

.tw-benefits {
padding: 120px 0;
  background:
    linear-gradient(180deg,
      #ffffff 0%,
      #f8fafc 100%);
}

.tw-benefits-grid {
display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.tw-benefit-card {
background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  padding: 34px;
  box-shadow:
    0 10px 40px rgba(15, 23, 42, 0.04);
}

.tw-benefit-card strong {
display: block;
  margin-bottom: 14px;
  font-size: 1.1rem;
  color: #0f172a;
}

.tw-benefit-card p {
margin: 0;
  color: #475569;
  line-height: 1.7;
}

/* =========================
   Persönliche Betreuung
========================= */

.tw-human {
padding: 130px 0;
  background:
    radial-gradient(circle at bottom left, rgba(37, 99, 235, 0.06), transparent 35%),
    #ffffff;
}

.tw-human-grid {
display: grid;
  grid-template-columns: minmax(0, 1.1fr) 420px;
  gap: 80px;
  align-items: center;
}

.tw-human-lead {
margin-top: 24px;
  max-width: 640px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #475569;
}

.tw-human-points {
display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 42px;
}

.tw-human-points div {
padding-bottom: 24px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.tw-human-points strong {
display: block;
  margin-bottom: 10px;
  color: #0f172a;
  font-size: 1.05rem;
}

.tw-human-points p {
margin: 0;
  color: #475569;
  line-height: 1.7;
}

.tw-human-quote-box {
position: relative;
  padding: 42px;
  border-radius: 34px;
  background:
    linear-gradient(180deg,
      #0f172a 0%,
      #111c33 100%);
  color: #ffffff;
  box-shadow:
    0 30px 80px rgba(15, 23, 42, 0.18);
}

.tw-human-quote-box p {
margin: 0 0 28px;
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

.tw-human-quote-box strong {
display: block;
  font-size: 1rem;
}

.tw-human-quote-box span {
display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.65);
}

/* ========================================
   Premium Spacing & Typography Pass
======================================== */

.tw-target,
.tw-risk,
.tw-solution,
.tw-process,
.tw-takeover,
.tw-package,
.tw-benefits,
.tw-trust,
.tw-human,
.tw-faq,
.tw-final {
position: relative;
  overflow: hidden;
}

.tw-process,
.tw-takeover,
.tw-benefits,
.tw-human,
.tw-faq {
padding-top: 140px;
  padding-bottom: 140px;
}

.tw-section-head {
max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.tw-section-head h2 {
max-width: 680px;
  margin:
    18px auto 0;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.tw-solution h2,
.tw-package h2,
.tw-human h2,
.tw-trust h2 {
max-width: 720px;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.tw-hero {
padding-top: 150px;
  padding-bottom: 150px;
}

.tw-hero-content h1 {
max-width: 620px;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.tw-hero-text {
max-width: 580px;
  margin-top: 30px;
  font-size: 1.08rem;
  line-height: 1.85;
}

.tw-target-grid {
margin-top: 70px;
}

.tw-risk {
padding-top: 150px;
  padding-bottom: 150px;
}

.tw-risk-grid {
margin-top: 60px;
}

.tw-solution {
padding-top: 170px;
  padding-bottom: 170px;
}

.tw-feature-panel {
transform: translateY(10px);
}

.tw-process-grid {
margin-top: 70px;
}

.tw-process-grid div {
min-height: 190px;
  padding: 34px;
}

.tw-takeover-box {
padding: 70px;
  border-radius: 38px;
}

.tw-package-layout {
gap: 110px;
}

.tw-price-card-v2 {
padding: 52px;
  border-radius: 38px;
}

.tw-price-big strong {
font-size: 4.8rem;
}

.tw-benefits-grid {
margin-top: 70px;
}

.tw-trust-grid {
gap: 90px;
  align-items: center;
}

.tw-trust-image img {
border-radius: 30px;
}

.tw-human {
padding-top: 170px;
  padding-bottom: 170px;
}

.tw-human-grid {
gap: 110px;
}

.tw-human-quote-box {
padding: 54px;
  border-radius: 40px;
}

.tw-human-quote-box p {
font-size: 1.35rem;
  line-height: 1.8;
}

.tw-faq-list {
max-width: 860px;
  margin: 70px auto 0;
}

.tw-faq-list details {
border-radius: 24px;
  overflow: hidden;
  margin-bottom: 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 10px 40px rgba(15, 23, 42, 0.04);
}

.tw-faq-list summary {
padding: 30px 34px;
  font-size: 1.05rem;
  font-weight: 600;
}

.tw-faq-list p {
padding:
    0 34px 30px;
  line-height: 1.8;
  color: #475569;
}

.tw-final {
padding-top: 180px;
  padding-bottom: 180px;
}

.tw-final-box {
max-width: 980px;
  padding: 90px;
  border-radius: 42px;
}

.tw-final-box h2 {
max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.tm-btn {
min-height: 54px;
  padding: 0 26px;
  font-weight: 600;
  border-radius: 999px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.tm-btn:hover {
transform: translateY(-2px);
}

.tw-target-card,
.tw-benefit-card,
.tw-package-points div,
.tw-process-grid div {
box-shadow:
    0 12px 40px rgba(15, 23, 42, 0.04);
}

/* =========================
   Kleine Vertrauens-Section
========================= */

.tw-proof {
padding-top: 120px;
  padding-bottom: 40px;
  background: #ffffff;
}

.tw-proof-box {
max-width: 980px;
  margin: 0 auto;
  padding: 70px;
  border-radius: 40px;
  background:
    linear-gradient(180deg,
      #f8fbff 0%,
      #ffffff 100%);
  border: 1px solid rgba(37, 99, 235, 0.08);
  text-align: center;
  box-shadow:
    0 20px 60px rgba(15, 23, 42, 0.05);
}

.tw-proof-box h2 {
max-width: 720px;
  margin:
    18px auto 0;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.tw-proof-box p {
max-width: 720px;
  margin:
    28px auto 0;
  color: #475569;
  line-height: 1.9;
  font-size: 1.05rem;
}

.tw-proof-items {
display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 42px;
}

.tw-proof-items span {
display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  font-size: 0.92rem;
  font-weight: 600;
}

/* ========================================
   Mobile Optimierung Wartungsseite
======================================== */

@media (max-width: 980px) {
.tm-container {
padding-left: 24px;
    padding-right: 24px;
}

.tw-hero {
padding-top: 110px;
    padding-bottom: 110px;
}

.tw-hero-grid {
grid-template-columns: 1fr;
    gap: 70px;
}

.tw-hero-content h1 {
max-width: 100%;
    font-size: clamp(3rem, 10vw, 4.8rem);
    line-height: 0.95;
}

.tw-hero-text {
max-width: 100%;
    font-size: 1rem;
    line-height: 1.8;
}

.tw-status-card {
max-width: 420px;
}

.tw-target-grid {
grid-template-columns: 1fr;
}

.tw-risk-grid {
grid-template-columns: 1fr;
}

.tw-solution {
padding-top: 130px;
    padding-bottom: 130px;
}

.tw-solution-grid {
grid-template-columns: 1fr;
    gap: 70px;
}

.tw-feature-panel {
grid-template-columns: 1fr;
}

.tw-process-grid {
grid-template-columns: 1fr 1fr;
}

.tw-takeover-box {
grid-template-columns: 1fr;
    gap: 50px;
    padding: 50px;
}

.tw-package-layout {
grid-template-columns: 1fr;
    gap: 70px;
}

.tw-package-points {
grid-template-columns: 1fr;
}

.tw-price-card-v2 {
max-width: 460px;
}

.tw-benefits-grid {
grid-template-columns: 1fr;
}

.tw-trust-grid {
grid-template-columns: 1fr;
    gap: 70px;
}

.tw-trust-image {
max-width: 460px;
}

.tw-human {
padding-top: 140px;
    padding-bottom: 140px;
}

.tw-human-grid {
grid-template-columns: 1fr;
    gap: 70px;
}

.tw-human-quote-box {
max-width: 460px;
}

.tw-proof-box {
padding: 50px;
}

.tw-final {
padding-top: 140px;
    padding-bottom: 140px;
}

.tw-final-box {
padding: 60px 40px;
}
}

@media (max-width: 640px) {
.tm-container {
padding-left: 20px;
    padding-right: 20px;
}

.tw-hero {
padding-top: 90px;
    padding-bottom: 90px;
}

.tw-hero-content h1 {
font-size: clamp(2.6rem, 12vw, 4rem);
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.tm-actions {
flex-direction: column;
    align-items: stretch;
}

.tm-btn {
width: 100%;
}

.tw-status-card {
max-width: 100%;
}

.tw-target,
.tw-risk,
.tw-solution,
.tw-process,
.tw-takeover,
.tw-package,
.tw-benefits,
.tw-trust,
.tw-human,
.tw-faq,
.tw-final {
padding-top: 100px;
    padding-bottom: 100px;
}

.tw-section-head h2,
.tw-solution h2,
.tw-package h2,
.tw-human h2,
.tw-trust h2,
.tw-proof-box h2,
.tw-final-box h2 {
font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1;
}

.tw-process-grid {
grid-template-columns: 1fr;
}

.tw-target-card,
.tw-benefit-card,
.tw-package-points div,
.tw-process-grid div {
padding: 28px;
}

.tw-takeover-box {
padding: 40px 30px;
}

.tw-price-card-v2 {
padding: 40px 30px;
}

.tw-price-big strong {
font-size: 4rem;
}

.tw-human-quote-box {
padding: 40px 32px;
}

.tw-human-quote-box p {
font-size: 1.15rem;
}

.tw-faq-list summary {
padding: 24px 24px;
}

.tw-faq-list p {
padding:
      0 24px 24px;
}

.tw-proof-box {
padding: 40px 28px;
}

.tw-proof-items {
gap: 10px;
}

.tw-proof-items span {
width: 100%;
    justify-content: center;
}

.tw-final-box {
padding: 50px 28px;
}
}

/* ========================================
   Mobile Feintuning
======================================== */

@media (max-width: 640px) {
.tw-hero {
padding-top: 72px;
    padding-bottom: 72px;
}

.tw-hero-grid {
gap: 50px;
}

.tw-hero-content h1 {
font-size: clamp(2.3rem, 11vw, 3.4rem);
    line-height: 0.98;
    max-width: 320px;
}

.tw-hero-text {
margin-top: 22px;
    line-height: 1.7;
}

.tm-actions {
gap: 12px;
    margin-top: 28px;
}

.tm-btn {
min-height: 50px;
}

.tw-target,
.tw-risk,
.tw-solution,
.tw-process,
.tw-takeover,
.tw-package,
.tw-benefits,
.tw-trust,
.tw-human,
.tw-faq,
.tw-final {
padding-top: 72px;
    padding-bottom: 72px;
}

.tw-risk-grid {
gap: 18px;
    margin-top: 40px;
}

.tw-solution {
padding-top: 90px;
    padding-bottom: 90px;
}

.tw-solution-grid {
gap: 50px;
}

.tw-feature-panel {
gap: 16px;
}

.tw-process-grid {
gap: 16px;
    margin-top: 40px;
}

.tw-process-grid div {
min-height: auto;
}

.tw-takeover-box {
gap: 34px;
}

.tw-package-layout {
gap: 50px;
}

.tw-package-points {
gap: 16px;
    margin-top: 34px;
}

.tw-benefits-grid {
gap: 16px;
    margin-top: 40px;
}

.tw-trust-grid {
gap: 40px;
}

.tw-human {
padding-top: 90px;
    padding-bottom: 90px;
}

.tw-human-grid {
gap: 42px;
}

.tw-human-points {
gap: 18px;
    margin-top: 30px;
}

.tw-human-quote-box {
padding: 34px 28px;
    border-radius: 30px;
}

.tw-human-quote-box p {
font-size: 1.02rem;
    line-height: 1.65;
}

.tw-faq-list {
margin-top: 40px;
}

.tw-proof {
padding-top: 80px;
    padding-bottom: 20px;
}

.tw-final {
padding-top: 90px;
    padding-bottom: 90px;
}

.tw-final-box h2 {
font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1;
}
}

/* ========================================
   Website Check Analyse-Vorschau
======================================== */

.tm-check-preview {
padding: 130px 0;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 38%),
    #f8fafc;
}

.tm-check-preview-head {
max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.tm-check-preview-head h2 {
max-width: 720px;
  margin: 18px auto 0;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.tm-check-preview-head p {
max-width: 660px;
  margin: 24px auto 0;
  color: #475569;
  line-height: 1.8;
  font-size: 1.05rem;
}

.tm-check-preview-grid {
display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1fr;
  gap: 22px;
  margin-top: 70px;
}

.tm-check-preview-card {
background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 30px;
  padding: 32px;
  box-shadow:
    0 14px 45px rgba(15, 23, 42, 0.05);
}

.tm-check-preview-card span,
.tm-check-preview-label {
display: inline-flex;
  margin-bottom: 18px;
  color: #2563eb;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tm-check-preview-card strong {
display: block;
  color: #0f172a;
  font-size: 1.08rem;
  line-height: 1.3;
  margin-bottom: 12px;
}

.tm-check-preview-card p {
margin: 0;
  color: #475569;
  line-height: 1.7;
}

.tm-check-preview-card-main {
background:
    linear-gradient(180deg, #0f172a 0%, #111c33 100%);
  color: #ffffff;
}

.tm-check-preview-card-main strong,
.tm-check-preview-card-main .tm-check-preview-label {
color: #ffffff;
}

.tm-check-preview-status {
display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}

.tm-check-preview-status i {
width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.14);
}

.tm-check-preview-card-main ul {
display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tm-check-preview-card-main li {
position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.tm-check-preview-card-main li::before {
content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #3b82f6;
}

@media (max-width: 980px) {
.tm-check-preview-grid {
grid-template-columns: 1fr 1fr;
}

.tm-check-preview-card-main {
grid-column: 1 / -1;
}
}

@media (max-width: 640px) {
.tm-check-preview {
padding: 80px 0;
}

.tm-check-preview-grid {
grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 44px;
}

.tm-check-preview-card {
padding: 28px;
    border-radius: 26px;
}

.tm-check-preview-head h2 {
font-size: clamp(2rem, 9vw, 3rem);
}
}

.tm-action-form-card input,
.tm-action-form-card textarea {
color: #0f172a;
}

.tm-action-form-card input::placeholder,
.tm-action-form-card textarea::placeholder {
color: #64748b;
}

/* ========================================
   Website Check Score Label
======================================== */

/* =========================
   Sonderprüfung optimieren
========================= */

/* =========================
   Wartungsreport Summary
========================= */

/* =========================
   Wartungsfolgen
========================= */

.website-check-page-single .tm-check-result-title {
max-width: 620px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
}

/* ========================================
   WEBSITE CHECK . OBEREN BEREICH KOMPAKTER
======================================== */

.tm-check-signal-hero {
padding-top: 42px;
}

/* ========================================
   WEBSITE CHECK . HERO ABSTÄNDE FIX
======================================== */

.website-check-page-single .tm-check-single-wrap {
padding-top: 28px !important;
}

.website-check-page-single .tm-check-report-meta {
margin-bottom: 14px !important;
}

.website-check-page-single .tm-check-score-strip {
margin-top: 0 !important;
}

.website-check-page-single .tm-check-score-strip {
padding: 18px !important;
}

.website-check-page-single .tm-check-score-left {
gap: 14px !important;
}

/* ========================================
   WEBSITE CHECK . MOBILE REPORT FEINSCHLIFF
======================================== */

@media (max-width: 700px) {
.website-check-page-single .tm-check-signal-hero {
padding-top: 28px;
}

.website-check-page-single .tm-check-single-wrap {
padding-top: 0 !important;
}

.website-check-page-single .tm-check-report-meta {
flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 14px 16px;
    margin-bottom: 14px !important;
}

.website-check-page-single .tm-maintenance-summary {
grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px;
    border-radius: 26px;
}

.website-check-page-single .tm-maintenance-summary-main h2 {
font-size: clamp(2rem, 10vw, 3rem);
    line-height: 0.98;
}

.website-check-page-single .tm-maintenance-summary-main p {
font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 18px;
}

.website-check-page-single .tm-maintenance-summary-side {
padding: 18px;
    border-radius: 20px;
    gap: 10px;
}

.website-check-page-single .tm-maintenance-summary-side div {
padding-top: 10px;
}

.website-check-page-single .tm-maintenance-summary-side strong {
font-size: 1.5rem;
}

.website-check-page-single .tm-report-tech-overview {
padding: 20px;
    border-radius: 24px;
}

.website-check-page-single .tm-report-tech-grid {
grid-template-columns: 1fr;
    gap: 12px;
}

.website-check-page-single .tm-special-findings {
padding: 24px 20px;
    border-radius: 26px;
}

.website-check-page-single .tm-special-findings-head h2 {
font-size: clamp(1.8rem, 9vw, 2.6rem);
    line-height: 1.02;
}

.website-check-page-single .tm-special-findings-grid {
grid-template-columns: 1fr;
    gap: 14px;
}

.website-check-page-single .tm-special-card {
padding: 20px;
    border-radius: 22px;
}

.website-check-page-single .tm-special-card-featured {
grid-column: auto;
}

.website-check-page-single .tm-diagnosis-grid {
grid-template-columns: 1fr;
    gap: 16px;
}

.website-check-page-single .tm-diagnosis-main,
.website-check-page-single .tm-diagnosis-action,
.website-check-page-single .tm-maintenance-consequences {
padding: 24px 20px;
    border-radius: 24px;
}

.website-check-page-single .tm-diagnosis-main h2,
.website-check-page-single .tm-maintenance-consequences h3 {
font-size: clamp(1.8rem, 9vw, 2.6rem);
    line-height: 1.02;
}

.website-check-page-single .tm-diagnosis-kpis {
grid-template-columns: 1fr;
    gap: 10px;
}

.website-check-page-single .tm-maintenance-consequence-grid {
grid-template-columns: 1fr;
    gap: 12px;
}

.website-check-page-single .tm-maintenance-consequence-grid div {
padding: 18px;
}

.website-check-page-single .tm-action-hint-grid {
grid-template-columns: 1fr;
    gap: 12px;
}

.website-check-page-single .tm-action-hint {
padding: 18px;
    border-radius: 20px;
}

.website-check-page-single .tm-single-form-section {
padding-top: 50px;
}

.website-check-page-single .tm-action-form-card {
padding: 26px 20px;
    border-radius: 26px;
}
}

/* =========================
   WEBSITE CHECK MOBILE FIX
========================= */

@media (max-width: 768px) {
.tm-action-hint-grid {
grid-template-columns: 1fr !important;
}

.tm-action-hint {
width: 100% !important;
}

.tm-check-single-wrap {
padding-left: 20px !important;
    padding-right: 20px !important;
}

.tm-action-report {
overflow: hidden !important;
}
}

@media (max-width: 768px) {
.tm-action-hint p {
font-size: 15px !important;
    line-height: 1.6 !important;
}

.tm-action-hint {
padding: 20px !important;
}
}

@media (max-width: 768px) {
.tm-check-single-wrap {
width: 100% !important;
    max-width: 100% !important;

    padding-left: 12px !important;
    padding-right: 12px !important;
}

.tm-action-report,
.tm-single-form-card {
width: 100% !important;
    max-width: 100% !important;
}

.tm-action-hint,
.tm-single-form-card {
border-radius: 24px !important;
}
}

/* ========================================
   WEBSITE CHECK . NEUE HAUPTKARTE
======================================== */

/* ========================================
   WEBSITE CHECK . ACCORDION
======================================== */

/* =========================
   WEBSITE CHECK REPORT TOPBAR + ICON FIX
========================= */

.website-check-page-single .tm-check-report-topbar {
display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  margin: 18px 0 22px;
}

.website-check-page-single .tm-check-report-site {
min-height: 76px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  color: rgba(226, 232, 240, 0.82);
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(8, 13, 24, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 26px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.website-check-page-single .tm-check-report-site strong {
color: #ffffff;
  font-weight: 800;
}

.website-check-page-single .tm-check-report-site-icon {
width: 36px;
  height: 36px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: rgba(203, 213, 225, 0.95);
}

.website-check-page-single .tm-check-report-site-icon svg,
.website-check-page-single .tm-check-report-site-arrow svg,
.website-check-page-single .tm-check-report-date svg,
.website-check-page-single .tm-mobile-report-icon svg {
width: 100%;
  height: 100%;
  display: block;
}

.website-check-page-single .tm-check-report-site-arrow {
width: 26px;
  height: 26px;
  margin-left: auto;
  color: rgba(148, 163, 184, 0.9);
}

.website-check-page-single .tm-check-report-date {
display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(203, 213, 225, 0.82);
  font-size: 0.98rem;
  white-space: nowrap;
}

.website-check-page-single .tm-check-report-date span {
width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
}

.website-check-page-single .tm-mobile-report-icon {
color: #fbbf24;
}

@media (max-width: 760px) {
.website-check-page-single .tm-check-report-topbar {
grid-template-columns: 1fr;
    gap: 12px;
    margin: 14px 0 18px;
}

.website-check-page-single .tm-check-report-date {
order: -1;
    justify-content: flex-end;
    font-size: 0.86rem;
}

.website-check-page-single .tm-check-report-site {
min-height: 64px;
    padding: 14px 16px;
    border-radius: 22px;
    gap: 12px;
}

.website-check-page-single .tm-check-report-site-icon {
width: 30px;
    height: 30px;
}

.website-check-page-single .tm-check-report-site-arrow {
width: 22px;
    height: 22px;
}
}

.website-check-page-single .tm-mobile-report-icon {
width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 18px;
  color: #fbbf24;
}

.website-check-page-single .tm-mobile-report-icon svg {
width: 30px;
  height: 30px;
}

@media (max-width: 760px) {
.website-check-page-single .tm-mobile-report-icon {
width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 16px;
}

.website-check-page-single .tm-mobile-report-icon svg {
width: 26px;
    height: 26px;
}
}

.website-check-page-single .tm-check-report-topbar {
display: block;
}

.website-check-page-single .tm-check-report-date {
margin-left: auto;
  padding-left: 18px;
  font-size: 0.92rem;
  opacity: 0.78;
}

.website-check-page-single .tm-check-report-site-arrow {
margin-left: 8px;
}

.website-check-page-single .tm-mobile-report-icon {
width: 64px;
  height: 64px;
  min-width: 64px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #f59e0b;
  background:
    linear-gradient(135deg, rgba(245, 158, 11, 0.22), rgba(15, 23, 42, 0.92));
  border: 1px solid rgba(245, 158, 11, 0.18);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.website-check-page-single .tm-mobile-report-icon svg {
width: 34px;
  height: 34px;
}

@media (max-width: 760px) {
.website-check-page-single .tm-check-report-site {
flex-wrap: wrap;
}

.website-check-page-single .tm-check-report-date {
width: 100%;
    margin-left: 42px;
    padding-left: 0;
    justify-content: flex-start;
    font-size: 0.82rem;
}

.website-check-page-single .tm-mobile-report-icon {
width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 17px;
}

.website-check-page-single .tm-mobile-report-icon svg {
width: 28px;
    height: 28px;
}
}

.website-check-page-single .tm-check-report-topbar {
display: block;
}

.website-check-page-single .tm-check-report-site {
display: flex;
  align-items: center;
}

.website-check-page-single .tm-check-report-date {
margin-left: auto;
  padding-left: 18px;
  font-size: 0.92rem;
  opacity: 0.78;
}

.website-check-page-single .tm-check-report-site-arrow {
margin-left: 8px;
}

.website-check-page-single .tm-mobile-report-icon {
width: 64px;
  height: 64px;
  min-width: 64px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #f59e0b;
  background:
    linear-gradient(135deg, rgba(245, 158, 11, 0.22), rgba(15, 23, 42, 0.92));
  border: 1px solid rgba(245, 158, 11, 0.18);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.website-check-page-single .tm-mobile-report-icon svg {
width: 34px;
  height: 34px;
}

@media (max-width: 760px) {
.website-check-page-single .tm-check-report-site {
flex-wrap: wrap;
}

.website-check-page-single .tm-check-report-date {
width: 100%;
    margin-left: 42px;
    padding-left: 0;
    justify-content: flex-start;
    font-size: 0.82rem;
}

.website-check-page-single .tm-mobile-report-icon {
width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 17px;
}

.website-check-page-single .tm-mobile-report-icon svg {
width: 28px;
    height: 28px;
}
}

.website-check-page-single .tm-report-accordion-content {
padding: 1.4rem 1.4rem 1.5rem;
}

.website-check-page-single .tm-special-card,
.website-check-page-single .tm-action-hint,
.website-check-page-single .tm-diagnosis-main,
.website-check-page-single .tm-diagnosis-action,
.website-check-page-single .tm-maintenance-consequences,
.website-check-page-single .tm-report-tech-item {
border-radius: 22px;
}

.website-check-page-single .tm-diagnosis-main,
.website-check-page-single .tm-maintenance-consequences {
background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.98),
      rgba(248, 250, 252, 0.96));
}

.website-check-page-single .tm-special-findings-grid,
.website-check-page-single .tm-action-hint-grid,
.website-check-page-single .tm-report-tech-grid,
.website-check-page-single .tm-diagnosis-grid,
.website-check-page-single .tm-maintenance-consequence-grid {
gap: 1rem;
}

.website-check-page-single .tm-diagnosis-kpi {
padding: 1rem;
  border-radius: 18px;
}

.website-check-page-single .tm-report-accordion-summary {
align-items: center;
}

.website-check-page-single .tm-report-accordion-arrow {
display: flex;
  align-items: center;
  justify-content: center;
}

.website-check-page-single .tm-special-description,
.website-check-page-single .tm-result-meaning,
.website-check-page-single .tm-maintenance-consequences p,
.website-check-page-single .tm-diagnosis-main p {
line-height: 1.65;
}

.website-check-page-single .tm-action-hint,
.website-check-page-single .tm-special-card,
.website-check-page-single .tm-report-tech-item {
border-color: rgba(255, 255, 255, 0.06);
}

.website-check-page-single .tm-diagnosis-main,
.website-check-page-single .tm-maintenance-consequences {
color: #0f172a;
}

.website-check-page-single .tm-diagnosis-main h2,
.website-check-page-single .tm-maintenance-consequences h3 {
color: #0f172a;
}

.website-check-page-single .tm-diagnosis-main p,
.website-check-page-single .tm-maintenance-consequences p,
.website-check-page-single .tm-diagnosis-main span,
.website-check-page-single .tm-maintenance-consequences span {
color: #475569;
}

.website-check-page-single .tm-diagnosis-kpi strong {
color: #0f172a;
}

.website-check-page-single .tm-mobile-report-card {
padding: 1.25rem;
  border-radius: 24px;
}

.website-check-page-single .tm-mobile-report-head {
gap: 1rem;
  margin-bottom: 1rem;
}

.website-check-page-single .tm-mobile-report-head h2 {
font-size: clamp(1.6rem, 4vw, 2.6rem);
  line-height: 1.02;
}

.website-check-page-single .tm-mobile-risk-meter {
margin: 0.9rem 0 1rem;
}

.website-check-page-single .tm-mobile-report-text {
margin: 0 0 1rem;
  font-size: 0.88rem;
}

.website-check-page-single .tm-mobile-report-kpis {
gap: 0.55rem;
}

.website-check-page-single .tm-mobile-report-kpis>div {
padding: 0.7rem 0.85rem;
}

.website-check-page-single .tm-mobile-report-kpis strong {
font-size: 1.35rem;
}

.website-check-page-single .tm-mobile-report-kpis span {
font-size: 0.72rem;
}

.website-check-page-single .tm-report-accordion-summary {
min-height: 68px;
  padding: 0.85rem 1rem;
}

.website-check-page-single .tm-report-accordion-icon {
width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 15px;
}

.website-check-page-single .tm-report-accordion-left strong {
font-size: 1rem;
}

.website-check-page-single .tm-report-accordion-left small {
font-size: 0.74rem;
}

.website-check-page-single .tm-report-mini-cta {
display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0 1.15rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(8, 13, 24, 0.98));
  border: 1px solid rgba(59, 130, 246, 0.28);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.website-check-page-single .tm-report-mini-cta strong {
display: block;
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.website-check-page-single .tm-report-mini-cta span {
display: block;
  color: rgba(203, 213, 225, 0.78);
  font-size: 0.82rem;
  line-height: 1.45;
}

.website-check-page-single .tm-report-mini-cta-button {
display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 1.1rem;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.86rem;
  text-decoration: none;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.32);
  white-space: nowrap;
}

@media (max-width: 760px) {
.website-check-page-single .tm-report-mini-cta {
grid-template-columns: 1fr;
}

.website-check-page-single .tm-report-mini-cta-button {
width: 100%;
}
}

/* ========================================
   Kompakter Website-Check Report
======================================== */

.website-check-page-single .tm-mobile-report-card {
padding: 1.15rem 1.15rem 1rem;
}

.website-check-page-single .tm-mobile-report-topline {
display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.website-check-page-single .tm-mobile-report-site {
display: flex;
  align-items: center;
  gap: 0.65rem;
}

.website-check-page-single .tm-mobile-report-site-dot {
width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 14px rgba(34, 197, 94, 0.6);
}

.website-check-page-single .tm-mobile-report-site strong {
color: #ffffff;
  font-size: 0.92rem;
}

.website-check-page-single .tm-mobile-report-date {
color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  white-space: nowrap;
}

.website-check-page-single .tm-mobile-report-head {
margin-bottom: 0.8rem;
}

.website-check-page-single .tm-mobile-report-head span {
display: none;
}

.website-check-page-single .tm-mobile-report-head h2 {
font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 0.95;
}

.website-check-page-single .tm-mobile-report-text {
margin-bottom: 0.8rem;
  max-width: 760px;
  font-size: 0.82rem;
}

.website-check-page-single .tm-mobile-risk-meter {
margin: 0.7rem 0 1rem;
}

.website-check-page-single .tm-mobile-risk-bar {
height: 8px;
}

.website-check-page-single .tm-mobile-risk-labels {
margin-top: 0.45rem;
}

.website-check-page-single .tm-mobile-risk-labels small {
font-size: 0.58rem;
  letter-spacing: 0.08em;
}

.website-check-page-single .tm-mobile-report-bottom-row {
display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}

.website-check-page-single .tm-mobile-report-kpis {
display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}

.website-check-page-single .tm-mobile-report-kpis>div {
padding: 0.75rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.website-check-page-single .tm-mobile-report-kpis strong {
display: block;
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 0.15rem;
}

.website-check-page-single .tm-mobile-report-kpis span {
font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.62);
}

.website-check-page-single .tm-report-inline-button {
display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.82rem;
  white-space: nowrap;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.28);
}

@media (max-width: 760px) {
.website-check-page-single .tm-mobile-report-bottom-row {
grid-template-columns: 1fr;
}

.website-check-page-single .tm-report-inline-button {
width: 100%;
}

.website-check-page-single .tm-mobile-report-kpis {
grid-template-columns: repeat(3, 1fr);
}

.website-check-page-single .tm-mobile-report-kpis>div {
padding: 0.65rem;
}

.website-check-page-single .tm-mobile-report-head h2 {
font-size: 1.9rem;
}
}

.website-check-page-single .tm-check-single-wrap {
padding-top: 3.4rem;
}

.website-check-page-single .tm-mobile-report-card {
padding: 1.05rem;
}

.website-check-page-single .tm-mobile-report-topline {
margin-bottom: 0.75rem;
}

.website-check-page-single .tm-mobile-report-head {
margin-bottom: 0.65rem;
}

.website-check-page-single .tm-mobile-report-icon {
width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 14px;
}

.website-check-page-single .tm-mobile-report-icon svg {
width: 24px;
  height: 24px;
}

.website-check-page-single .tm-mobile-report-head h2 {
font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.website-check-page-single .tm-mobile-risk-meter {
margin: 0.55rem 0 0.75rem;
}

.website-check-page-single .tm-mobile-report-text {
margin: 0.65rem 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
}

.website-check-page-single .tm-report-accordion-summary {
min-height: 60px;
}

/* ========================================
   Website-Check: kompakte Ergebnis-Hauptkarte
======================================== */

.website-check-page-single .tm-report-card-compact {
padding: 1.15rem;
  border-radius: 28px;
}

.website-check-page-single .tm-report-compact-top {
display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.website-check-page-single .tm-report-compact-site {
display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #ffffff;
  font-size: 0.82rem;
}

.website-check-page-single .tm-report-compact-site span {
width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 14px rgba(34, 197, 94, 0.75);
}

.website-check-page-single .tm-report-compact-date {
color: rgba(226, 232, 240, 0.62);
  font-size: 0.72rem;
  white-space: nowrap;
}

.website-check-page-single .tm-report-compact-grid {
display: grid;
  grid-template-columns: minmax(0, 1fr) 185px;
  gap: 1rem;
  align-items: start;
}

.website-check-page-single .tm-report-card-compact {
min-height: 255px;
}

.website-check-page-single .tm-report-compact-main {
min-width: 0;
}

.website-check-page-single .tm-report-compact-head {
display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.website-check-page-single .tm-report-compact-head h2 {
margin: 0;
  color: #ffffff;
  font-size: clamp(1.75rem, 3.5vw, 2.7rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.website-check-page-single .tm-report-compact-head p {
margin: 0.3rem 0 0;
  color: rgba(226, 232, 240, 0.68);
  font-size: 0.78rem;
}

.website-check-page-single .tm-report-card-compact .tm-mobile-report-icon {
width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 15px;
}

.website-check-page-single .tm-report-card-compact .tm-mobile-report-icon svg {
width: 25px;
  height: 25px;
}

.website-check-page-single .tm-report-card-compact .tm-mobile-risk-meter {
margin: 0;
}

.website-check-page-single .tm-report-card-compact .tm-mobile-risk-bar {
height: 8px;
}

.website-check-page-single .tm-report-card-compact .tm-mobile-risk-labels {
margin-top: 0.45rem;
}

.website-check-page-single .tm-report-card-compact .tm-mobile-risk-labels small {
font-size: 0.56rem;
}

.website-check-page-single .tm-report-compact-side {
display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.website-check-page-single .tm-report-compact-kpis {
display: grid;
  gap: 0.45rem;
}

.website-check-page-single .tm-report-compact-kpis div {
padding: 0.52rem 0.65rem;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.website-check-page-single .tm-report-compact-kpis strong {
display: block;
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1;
}

.website-check-page-single .tm-report-compact-kpis span {
display: block;
  margin-top: 0.18rem;
  color: rgba(226, 232, 240, 0.62);
  font-size: 0.67rem;
}

.website-check-page-single .tm-report-compact-note {
margin: 0.85rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(226, 232, 240, 0.66);
  font-size: 0.76rem;
  line-height: 1.45;
}

.website-check-page-single .tm-report-card-compact .tm-report-inline-button {
min-height: 36px;
  padding: 0.65rem 0.8rem;
}

@media (max-width: 760px) {
.website-check-page-single .tm-report-compact-grid {
grid-template-columns: 1fr;
}

.website-check-page-single .tm-report-compact-kpis {
grid-template-columns: repeat(3, 1fr);
}

.website-check-page-single .tm-report-compact-head h2 {
font-size: 1.55rem;
}

.website-check-page-single .tm-report-card-compact {
padding: 1rem;
}
}

.website-check-page-single .tm-report-compact-note {
margin-top: auto;
}

.website-check-page-single .tm-report-side-status {
padding: 0.75rem 0.8rem;
  border-radius: 16px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.22);
}

.website-check-page-single .tm-report-side-status span {
display: block;
  color: rgba(251, 191, 36, 0.78);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.25rem;
}

.website-check-page-single .tm-report-side-status strong {
display: block;
  color: #fbbf24;
  font-size: 0.9rem;
  line-height: 1.2;
}

.website-check-page-single .tm-report-card-compact .tm-report-inline-button {
width: 100%;
  min-height: 42px;
  border-radius: 14px;
}

.website-check-page-single .tm-report-risk-track {
height: 14px;
  border-radius: 999px;
}

.website-check-page-single .tm-report-risk-progress {
height: 14px;
  border-radius: 999px;
}

.website-check-page-single .tm-report-risk-indicator {
width: 24px;
  height: 24px;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 4px solid #fff;
  box-shadow:
    0 0 0 6px rgba(251, 191, 36, 0.18),
    0 10px 24px rgba(0, 0, 0, 0.35);
}

/* ========================================
   Website-Check: Wartungsbereiche Kontrollzentrum
======================================== */

.website-check-page-single .tm-report-maintenance-areas {
margin-top: 1rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.website-check-page-single .tm-report-maintenance-head {
display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 0.7rem;
}

.website-check-page-single .tm-report-maintenance-head strong {
color: #ffffff;
  font-size: 0.95rem;
}

.website-check-page-single .tm-report-maintenance-head span {
color: rgba(226, 232, 240, 0.58);
  font-size: 0.68rem;
}

.website-check-page-single .tm-report-area-grid {
display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.55rem;
}

.website-check-page-single .tm-report-area-card {
min-height: 118px;
  padding: 0.72rem 0.62rem;
  border-radius: 17px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 0.28rem;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.website-check-page-single .tm-report-area-icon {
width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  margin-bottom: 0.2rem;
}

.website-check-page-single .tm-report-area-icon svg {
width: 20px;
  height: 20px;
}

.website-check-page-single .tm-report-area-card strong {
color: #ffffff;
  font-size: 0.7rem;
  line-height: 1.2;
}

.website-check-page-single .tm-report-area-card em {
font-style: normal;
  font-weight: 900;
  font-size: 0.78rem;
  line-height: 1.1;
}

.website-check-page-single .tm-report-area-card small {
color: rgba(226, 232, 240, 0.62);
  font-size: 0.62rem;
  line-height: 1.2;
}

.website-check-page-single .tm-report-area-good {
border-color: rgba(34, 197, 94, 0.32);
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.12), rgba(255, 255, 255, 0.035));
}

.website-check-page-single .tm-report-area-good .tm-report-area-icon {
color: #22c55e;
  background: rgba(34, 197, 94, 0.16);
}

.website-check-page-single .tm-report-area-good em {
color: #22c55e;
}

.website-check-page-single .tm-report-area-warning {
border-color: rgba(245, 158, 11, 0.34);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.13), rgba(255, 255, 255, 0.035));
}

.website-check-page-single .tm-report-area-warning .tm-report-area-icon {
color: #f59e0b;
  background: rgba(245, 158, 11, 0.16);
}

.website-check-page-single .tm-report-area-warning em {
color: #f59e0b;
}

.website-check-page-single .tm-report-area-bad {
border-color: rgba(239, 68, 68, 0.34);
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.13), rgba(255, 255, 255, 0.035));
}

.website-check-page-single .tm-report-area-bad .tm-report-area-icon {
color: #ef4444;
  background: rgba(239, 68, 68, 0.16);
}

.website-check-page-single .tm-report-area-bad em {
color: #ef4444;
}

@media (max-width: 980px) {
.website-check-page-single .tm-report-area-grid {
grid-template-columns: repeat(3, 1fr);
}
}

@media (max-width: 620px) {
.website-check-page-single .tm-report-maintenance-head {
display: block;
}

.website-check-page-single .tm-report-maintenance-head span {
display: block;
    margin-top: 0.2rem;
}

.website-check-page-single .tm-report-area-grid {
grid-template-columns: repeat(2, 1fr);
}

.website-check-page-single .tm-report-area-card {
min-height: 104px;
}
}

.website-check-page-single .tm-report-area-grid {
gap: 0.75rem;
}

.website-check-page-single .tm-report-area-card {
min-height: 132px;
  padding: 0.9rem 0.7rem;
}

.website-check-page-single .tm-report-risk-track,
.website-check-page-single .tm-report-risk-progress {
height: 18px;
}

.website-check-page-single .tm-report-risk-indicator {
width: 28px;
  height: 28px;
}

/* ========================================
   Website-Check: Main Score
======================================== */

.website-check-page-single .tm-report-main-score {
display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 1.4rem;
  margin-bottom: 1.35rem;
}

.website-check-page-single .tm-report-main-score span {
color: rgba(226, 232, 240, 0.62);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.website-check-page-single .tm-report-main-score strong {
display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  line-height: 0.92;
  font-weight: 900;
  color: #ffffff;
}

.website-check-page-single .tm-report-main-score small {
font-size: 1.15rem;
  color: rgba(226, 232, 240, 0.56);
  margin-bottom: 0.42rem;
}

.website-check-page-single .tm-report-main-score p {
max-width: 420px;
  margin-top: 0.7rem;
  color: rgba(226, 232, 240, 0.68);
  font-size: 0.82rem;
  line-height: 1.5;
}

/* =========================
   REPORT HERO KOMPAKTER
========================= */

/* =========================
   TOP STATS KLEINER
========================= */

/* =========================
   RISIKO AMPEL DICKER
========================= */

/* =========================
   WARTUNGSBEREICHE KOMPAKTER
========================= */

/* =========================
   CTA KOMPAKTER
========================= */

/* =========================
   Website Check Lead-System Optimierung
========================= */

.website-check-page-single .tm-mobile-risk-meter {
margin-top: 1.4rem !important;
  margin-bottom: 1.6rem !important;
}

.website-check-page-single .tm-mobile-risk-bar {
height: 18px !important;
  border-radius: 999px !important;
  overflow: visible !important;
  background: linear-gradient(90deg,
      #22c55e 0%,
      #84cc16 25%,
      #eab308 48%,
      #f97316 72%,
      #ef4444 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .18),
    0 12px 26px rgba(0, 0, 0, .38) !important;
}

.website-check-page-single .tm-mobile-risk-bar span {
width: 30px !important;
  height: 30px !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  border: 6px solid #f97316 !important;
  box-shadow:
    0 0 0 7px rgba(255, 255, 255, .1),
    0 0 30px rgba(249, 115, 22, .55),
    0 10px 24px rgba(0, 0, 0, .45) !important;
}

.website-check-page-single .tm-mobile-risk-labels {
margin-top: 1rem !important;
}

/* =========================
   Website Check Report V2
========================= */

/* =========================
   Website Check Redesign 2026
========================= */

/* =========================
   Website Check Redesign 2026
   Neuer finaler Aufbau
   Alte Website-Check-Styles erst später löschen
========================= */

.website-check-page-single.tm-wc-redesign {
background: #f5f7fb;
  color: #0f172a;
}

.tm-wc-redesign .tm-check-signal-hero {
padding: 86px 0 72px;
  background:
    radial-gradient(circle at 82% 0%, rgba(37, 99, 235, 0.10), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
  color: #0f172a;
}

.tm-wc-redesign .tm-check-single-wrap {
width: min(100% - 48px, 1180px);
  max-width: 1180px;
  margin: 0 auto;
}

.tm-wc-redesign .tm-wc-layout {
display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: 36px;
  align-items: stretch;
}

.tm-wc-redesign .tm-wc-intro {
max-width: 720px;
}

.tm-wc-redesign .tm-wc-kicker {
display: inline-flex;
  margin-bottom: 16px;
  color: #2563eb;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tm-wc-redesign .tm-wc-intro h1 {
max-width: 760px;
  margin: 0;
  color: #0f172a;
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.tm-wc-redesign .tm-wc-intro p {
max-width: 640px;
  margin: 22px 0 0;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.7;
}

.tm-wc-redesign .tm-wc-status-card {
padding: 30px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 80% 0%, rgba(37, 99, 235, 0.26), transparent 38%),
    linear-gradient(180deg, #0f172a 0%, #111827 100%);
  color: #ffffff;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.20);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tm-wc-redesign .tm-wc-status-label {
display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tm-wc-redesign .tm-wc-ampel {
display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

.tm-wc-redesign .tm-wc-ampel span {
width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.tm-wc-redesign .tm-wc-ampel .is-red {
border: 2px solid #ef4444;
}

.tm-wc-redesign .tm-wc-ampel .is-yellow {
background: #facc15;
  box-shadow: 0 0 0 8px rgba(250, 204, 21, 0.13);
}

.tm-wc-redesign .tm-wc-ampel .is-green {
border: 2px solid #22c55e;
}

.tm-wc-redesign .tm-wc-status-card h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.tm-wc-redesign .tm-wc-status-card p {
margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
  line-height: 1.65;
}

.tm-wc-redesign .tm-wc-meta {
display: grid;
  gap: 10px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.tm-wc-redesign .tm-wc-meta div {
display: flex;
  justify-content: space-between;
  gap: 18px;
}

.tm-wc-redesign .tm-wc-meta span {
color: rgba(255, 255, 255, 0.52);
  font-size: 0.84rem;
}

.tm-wc-redesign .tm-wc-meta strong {
color: #ffffff;
  font-size: 0.86rem;
}

@media (max-width: 900px) {
.tm-wc-redesign .tm-wc-layout {
grid-template-columns: 1fr;
}
}

@media (max-width: 640px) {
.tm-wc-redesign .tm-check-signal-hero {
padding: 56px 0 54px;
}

.tm-wc-redesign .tm-check-single-wrap {
width: calc(100% - 28px);
}

.tm-wc-redesign .tm-wc-status-card {
padding: 24px;
    border-radius: 26px;
}
}

.tm-wc-redesign .tm-wc-personal-section {
margin-top: 26px;
}

.tm-wc-redesign .tm-wc-personal-card {
display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.tm-wc-redesign .tm-wc-personal-image img {
width: 120px;
  height: 120px;
  border-radius: 999px;
  object-fit: cover;
  display: block;
}

.tm-wc-redesign .tm-wc-personal-kicker {
display: inline-flex;
  margin-bottom: 14px;
  color: #2563eb;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tm-wc-redesign .tm-wc-personal-content h2 {
max-width: 760px;
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.tm-wc-redesign .tm-wc-personal-content p {
max-width: 760px;
  margin: 18px 0 0;
  color: #475569;
  line-height: 1.7;
}

.tm-wc-redesign .tm-wc-personal-meta {
display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid #e2e8f0;
}

.tm-wc-redesign .tm-wc-personal-meta strong {
display: block;
  color: #0f172a;
  font-size: 1rem;
}

.tm-wc-redesign .tm-wc-personal-meta span {
color: #64748b;
  font-size: 0.92rem;
}

.tm-wc-redesign .tm-wc-personal-signature {
color: #2563eb;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

@media (max-width: 720px) {
.tm-wc-redesign .tm-wc-personal-card {
grid-template-columns: 1fr;
    padding: 26px;
}

.tm-wc-redesign .tm-wc-personal-image img {
width: 92px;
    height: 92px;
}

.tm-wc-redesign .tm-wc-personal-meta {
flex-direction: column;
    align-items: flex-start;
}
}

/* =========================
   Neue helle Accordions
========================= */

.tm-wc-redesign .tm-report-accordion {
margin-top: 18px;
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.tm-wc-redesign .tm-report-accordion-summary {
display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  cursor: pointer;
  list-style: none;
  background: #ffffff;
  transition: background 0.2s ease;
}

.tm-wc-redesign .tm-report-accordion-summary:hover {
background: #f8fafc;
}

.tm-wc-redesign .tm-report-accordion-summary::-webkit-details-marker {
display: none;
}

.tm-wc-redesign .tm-report-accordion-left {
display: flex;
  align-items: center;
  gap: 18px;
}

.tm-wc-redesign .tm-report-accordion-icon {
display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: #eff6ff;
  color: #2563eb;
  flex-shrink: 0;
}

.tm-wc-redesign .tm-report-accordion-icon svg {
width: 24px;
  height: 24px;
}

.tm-wc-redesign .tm-report-accordion-left strong {
display: block;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 700;
}

.tm-wc-redesign .tm-report-accordion-left small {
display: block;
  margin-top: 4px;
  color: #64748b;
  font-size: 0.88rem;
}

.tm-wc-redesign .tm-report-accordion-arrow {
display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #0f172a;
  transition:
    transform 0.25s ease,
    background 0.2s ease;
}

.tm-wc-redesign .tm-report-accordion[open] .tm-report-accordion-arrow {
transform: rotate(180deg);
  background: #dbeafe;
}

.tm-wc-redesign .tm-report-accordion-content {
padding: 0 28px 28px;
  border-top: 1px solid #e2e8f0;
  background: #ffffff;
}

@media (max-width: 720px) {
.tm-wc-redesign .tm-report-accordion-summary {
padding: 20px;
}

.tm-wc-redesign .tm-report-accordion-content {
padding: 0 20px 20px;
}

.tm-wc-redesign .tm-report-accordion-left {
gap: 14px;
}

.tm-wc-redesign .tm-report-accordion-icon {
width: 48px;
    height: 48px;
}
}

/* =========================
   Website Check Redesign 2026
   Report, Insights, Care
========================= */

.tm-wc-redesign .tm-wc-report-section,
.tm-wc-redesign .tm-wc-insights-section,
.tm-wc-redesign .tm-wc-care-section {
margin-top: 26px;
}

.tm-wc-redesign .tm-wc-section-kicker {
display: inline-flex;
  margin-bottom: 14px;
  color: #2563eb;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tm-wc-redesign .tm-wc-report-card {
display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 310px;
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
}

.tm-wc-redesign .tm-wc-report-sheet {
transform: rotate(-5deg);
  padding: 22px;
  min-height: 180px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
}

.tm-wc-redesign .tm-wc-report-sheet strong,
.tm-wc-redesign .tm-wc-report-sheet span,
.tm-wc-redesign .tm-wc-report-sheet i {
display: block;
}

.tm-wc-redesign .tm-wc-report-sheet strong {
color: #0f172a;
  font-size: 0.9rem;
}

.tm-wc-redesign .tm-wc-report-sheet span {
margin: 4px 0 22px;
  color: #64748b;
  font-size: 0.78rem;
}

.tm-wc-redesign .tm-wc-report-sheet i {
height: 8px;
  margin-top: 12px;
  border-radius: 999px;
  background: #e2e8f0;
}

.tm-wc-redesign .tm-wc-report-sheet i:first-of-type {
width: 42%;
  background: #facc15;
}

.tm-wc-redesign .tm-wc-report-content h2 {
margin: 0;
  color: #0f172a;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.tm-wc-redesign .tm-wc-report-content p {
max-width: 620px;
  margin: 16px 0 22px;
  color: #475569;
}

.tm-wc-redesign .tm-wc-report-form {
display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.tm-wc-redesign .tm-wc-report-form input {
height: 54px;
  padding: 0 16px;
  border: 1px solid #dbe3ef;
  border-radius: 14px;
  background: #f8fafc;
  color: #0f172a;
  font-size: 0.95rem;
}

.tm-wc-redesign .tm-wc-report-form button {
grid-column: 1 / -1;
  height: 56px;
  border: 0;
  border-radius: 14px;
  background: #020617;
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
}

.tm-wc-redesign .tm-wc-report-content small {
display: block;
  margin-top: 12px;
  color: #64748b;
  font-size: 0.82rem;
}

.tm-wc-redesign .tm-wc-report-list {
padding: 24px;
  border-radius: 22px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.tm-wc-redesign .tm-wc-report-list strong {
display: block;
  margin-bottom: 14px;
  color: #0f172a;
}

.tm-wc-redesign .tm-wc-report-list ul {
display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tm-wc-redesign .tm-wc-report-list li {
position: relative;
  padding-left: 24px;
  color: #475569;
  font-size: 0.9rem;
}

.tm-wc-redesign .tm-wc-report-list li::before {
content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 900;
}

.tm-wc-redesign .tm-wc-insights-grid {
display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tm-wc-redesign .tm-wc-insight-card {
padding: 28px;
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.045);
}

.tm-wc-redesign .tm-wc-insight-icon {
width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 999px;
  font-weight: 900;
}

.tm-wc-redesign .tm-wc-insight-good .tm-wc-insight-icon {
background: #dcfce7;
  color: #16a34a;
}

.tm-wc-redesign .tm-wc-insight-warning .tm-wc-insight-icon {
background: #fef3c7;
  color: #d97706;
}

.tm-wc-redesign .tm-wc-insight-card h3 {
margin: 0 0 10px;
  color: #0f172a;
  font-size: 1.15rem;
}

.tm-wc-redesign .tm-wc-insight-card p {
margin: 0;
  color: #475569;
  font-size: 0.94rem;
}

.tm-wc-redesign .tm-wc-insight-card button {
margin-top: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #2563eb;
  font-weight: 800;
  cursor: pointer;
}

.tm-wc-redesign .tm-wc-care-section {
display: grid;
  grid-template-columns: minmax(0, 1.15fr) 360px;
  gap: 28px;
  align-items: stretch;
  padding: 34px;
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
}

.tm-wc-redesign .tm-wc-care-text h2 {
margin: 0;
  color: #0f172a;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.tm-wc-redesign .tm-wc-care-text p {
max-width: 680px;
  margin: 18px 0 0;
  color: #475569;
}

.tm-wc-redesign .tm-wc-care-benefits {
display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.tm-wc-redesign .tm-wc-care-benefits strong {
display: block;
  color: #0f172a;
  font-size: 0.92rem;
}

.tm-wc-redesign .tm-wc-care-benefits span {
color: #64748b;
  font-size: 0.82rem;
}

.tm-wc-redesign .tm-wc-care-box {
padding: 28px;
  border-radius: 24px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.tm-wc-redesign .tm-wc-care-box h3 {
color: #0f172a;
  font-size: 1.45rem;
}

.tm-wc-redesign .tm-wc-care-box p {
color: #475569;
}

.tm-wc-redesign .tm-wc-care-box ul {
display: grid;
  gap: 10px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.tm-wc-redesign .tm-wc-care-box li {
position: relative;
  padding-left: 24px;
  color: #0f172a;
  font-size: 0.92rem;
}

.tm-wc-redesign .tm-wc-care-box li::before {
content: "✓";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: 900;
}

.tm-wc-redesign .tm-wc-care-box a {
display: inline-flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #020617;
  color: #ffffff;
  font-weight: 800;
}

@media (max-width: 980px) {
.tm-wc-redesign .tm-wc-report-card,
.tm-wc-redesign .tm-wc-care-section {
grid-template-columns: 1fr;
}

.tm-wc-redesign .tm-wc-insights-grid,
.tm-wc-redesign .tm-wc-care-benefits {
grid-template-columns: 1fr;
}

.tm-wc-redesign .tm-wc-report-preview {
display: none;
}
}

@media (max-width: 640px) {
.tm-wc-redesign .tm-wc-report-card,
.tm-wc-redesign .tm-wc-care-section {
padding: 24px;
    border-radius: 26px;
}

.tm-wc-redesign .tm-wc-report-form {
grid-template-columns: 1fr;
}

.tm-wc-redesign .tm-wc-insight-card {
padding: 24px;
}
}

/* =========================
   Website Check Hero wie Ziel-Mockup
========================= */

.tm-wc-redesign .tm-wc-layout {
display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.15fr);
  gap: 54px;
  align-items: center;
}

.tm-wc-redesign .tm-wc-status-card {
padding: 34px;
  border: 1px solid #dfe7f2;
  border-radius: 30px;
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}

.tm-wc-redesign .tm-wc-status-label {
display: block;
  margin-bottom: 24px;
  color: #0f172a;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tm-wc-redesign .tm-wc-status-main {
display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid #e2e8f0;
}

.tm-wc-redesign .tm-wc-ampel-ring {
position: relative;
  width: 168px;
  height: 168px;
  border-radius: 999px;
  background:
    conic-gradient(#f5a400 0deg 265deg, #edf2f7 265deg 360deg);
  display: grid;
  place-items: center;
}

.tm-wc-redesign .tm-wc-ampel-ring::before {
content: "";
  position: absolute;
  inset: 18px;
  border-radius: 999px;
  background: #ffffff;
}

.tm-wc-redesign .tm-wc-ampel-ring span {
position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 999px;
  background: #fff7e6;
  color: #0f172a;
  font-size: 2.4rem;
}

.tm-wc-redesign .tm-wc-status-copy h2 {
margin: 0;
  color: #f5a400;
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.tm-wc-redesign .tm-wc-status-copy p {
max-width: 360px;
  margin: 16px 0 22px;
  color: #334155;
  font-size: 0.98rem;
  line-height: 1.65;
}

.tm-wc-redesign .tm-wc-status-copy a {
display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  background: #020617;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
}

.tm-wc-redesign .tm-wc-meta {
display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.tm-wc-redesign .tm-wc-meta div {
padding: 0;
  border: 0;
}

.tm-wc-redesign .tm-wc-meta span {
display: block;
  margin-bottom: 6px;
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tm-wc-redesign .tm-wc-meta strong {
display: block;
  color: #0f172a;
  font-size: 1rem;
}

.tm-wc-redesign .tm-wc-meta strong.is-good {
color: #16a34a;
}

.tm-wc-redesign .tm-wc-meta strong.is-warning {
color: #d97706;
}

@media (max-width: 980px) {
.tm-wc-redesign .tm-wc-layout {
grid-template-columns: 1fr;
    gap: 34px;
}
}

@media (max-width: 680px) {
.tm-wc-redesign .tm-wc-status-main {
grid-template-columns: 1fr;
    gap: 24px;
}

.tm-wc-redesign .tm-wc-ampel-ring {
width: 150px;
    height: 150px;
}

.tm-wc-redesign .tm-wc-meta {
grid-template-columns: 1fr;
}
}

/* =========================
   Website Check Hero Statuskarte Ziel-Mockup
========================= */

.tm-wc-redesign .tm-wc-layout {
display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.15fr);
  gap: 54px;
  align-items: center;
}

.tm-wc-redesign .tm-wc-status-card {
padding: 34px;
  border: 1px solid #dfe7f2;
  border-radius: 30px;
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}

.tm-wc-redesign .tm-wc-status-label {
display: block;
  margin-bottom: 24px;
  color: #0f172a;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tm-wc-redesign .tm-wc-status-main {
display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid #e2e8f0;
}

.tm-wc-redesign .tm-wc-ampel-ring {
position: relative;
  width: 168px;
  height: 168px;
  border-radius: 999px;
  background: conic-gradient(#f5a400 0deg 265deg, #edf2f7 265deg 360deg);
  display: grid;
  place-items: center;
}

.tm-wc-redesign .tm-wc-ampel-ring::before {
content: "";
  position: absolute;
  inset: 18px;
  border-radius: 999px;
  background: #ffffff;
}

.tm-wc-redesign .tm-wc-ampel-ring span {
position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 999px;
  background: #fff7e6;
  color: #0f172a;
}

.tm-wc-redesign .tm-wc-ampel-ring svg {
width: 40px;
  height: 40px;
}

.tm-wc-redesign .tm-wc-status-copy h2 {
margin: 0;
  color: #f5a400;
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.tm-wc-redesign .tm-wc-status-copy p {
max-width: 360px;
  margin: 16px 0 22px;
  color: #334155;
  font-size: 0.98rem;
  line-height: 1.65;
}

.tm-wc-redesign .tm-wc-status-copy a {
display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  background: #020617;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
}

.tm-wc-redesign .tm-wc-meta {
display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.tm-wc-redesign .tm-wc-meta div {
padding: 0;
  border: 0;
}

.tm-wc-redesign .tm-wc-meta span {
display: block;
  margin-bottom: 6px;
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tm-wc-redesign .tm-wc-meta strong {
display: block;
  color: #0f172a;
  font-size: 1rem;
}

.tm-wc-redesign .tm-wc-meta strong.is-good {
color: #16a34a;
}

.tm-wc-redesign .tm-wc-meta strong.is-warning {
color: #d97706;
}

@media (max-width: 980px) {
.tm-wc-redesign .tm-wc-layout {
grid-template-columns: 1fr;
    gap: 34px;
}
}

@media (max-width: 680px) {
.tm-wc-redesign .tm-wc-status-main {
grid-template-columns: 1fr;
    gap: 24px;
}

.tm-wc-redesign .tm-wc-ampel-ring {
width: 150px;
    height: 150px;
}

.tm-wc-redesign .tm-wc-meta {
grid-template-columns: 1fr;
}
}

/* =========================
   Website Check Hero Feinschliff 2026
========================= */

.tm-wc-redesign .tm-check-signal-hero {
padding-top: 58px;
  padding-bottom: 46px;
}

.tm-wc-redesign .tm-check-single-wrap {
padding-top: 0 !important;
  padding-bottom: 0;
}

.tm-wc-redesign .tm-wc-layout {
display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.28fr);
  gap: 38px;
  align-items: stretch;
}

.tm-wc-redesign .tm-wc-intro {
display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 620px;
}

.tm-wc-redesign .tm-wc-intro h1 {
max-width: 10ch;
  margin: 0;
  color: #0f172a;
  font-size: clamp(3rem, 5vw, 5.1rem);
  line-height: 0.94;
  letter-spacing: -0.078em;
}

.tm-wc-redesign .tm-wc-intro p {
max-width: 520px;
  margin-top: 24px;
  color: #475569;
  font-size: 1rem;
  line-height: 1.7;
}

.tm-wc-redesign .tm-wc-status-card {
min-height: 100%;
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tm-wc-redesign .tm-wc-status-main {
grid-template-columns: 210px minmax(0, 1fr);
  gap: 38px;
}

.tm-wc-redesign .tm-wc-ampel-ring {
width: 188px;
  height: 188px;
}

.tm-wc-redesign .tm-wc-ampel-ring span {
width: 86px;
  height: 86px;
}

.tm-wc-redesign .tm-wc-status-copy h2 {
font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.tm-wc-redesign .tm-wc-status-copy p {
max-width: 390px;
}

@media (max-width: 980px) {
.tm-wc-redesign .tm-check-signal-hero {
padding-top: 46px;
}

.tm-wc-redesign .tm-wc-layout {
grid-template-columns: 1fr;
    gap: 28px;
}

.tm-wc-redesign .tm-wc-intro h1 {
max-width: 12ch;
}
}

@media (max-width: 680px) {
.tm-wc-redesign .tm-check-signal-hero {
padding-top: 38px;
    padding-bottom: 34px;
}

.tm-wc-redesign .tm-wc-status-card {
padding: 26px;
}

.tm-wc-redesign .tm-wc-status-main {
grid-template-columns: 1fr;
    gap: 24px;
}

.tm-wc-redesign .tm-wc-ampel-ring {
width: 152px;
    height: 152px;
}
}

/* =========================
   Website Check Hero Mockup-Nähe
========================= */

.tm-wc-redesign .tm-check-signal-hero {
padding-top: 70px;
  padding-bottom: 56px;
}

.tm-wc-redesign .tm-wc-layout {
display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 42px;
  align-items: center;
}

.tm-wc-redesign .tm-wc-intro {
max-width: 500px;
}

.tm-wc-redesign .tm-wc-intro h1 {
max-width: 11ch;
  font-size: clamp(3.2rem, 5.2vw, 5.2rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
}

.tm-wc-redesign .tm-wc-intro p {
max-width: 430px;
  margin-top: 22px;
  font-size: 1rem;
  line-height: 1.65;
}

.tm-wc-redesign .tm-wc-status-card {
padding: 34px 38px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}

.tm-wc-redesign .tm-wc-status-main {
display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid #e2e8f0;
}

.tm-wc-redesign .tm-wc-ampel-ring {
width: 168px;
  height: 168px;
}

.tm-wc-redesign .tm-wc-ampel-ring span {
width: 76px;
  height: 76px;
}

.tm-wc-redesign .tm-wc-ampel-ring svg {
width: 38px;
  height: 38px;
}

.tm-wc-redesign .tm-wc-status-copy h2 {
color: #f5a400;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.tm-wc-redesign .tm-wc-status-copy p {
max-width: 390px;
  margin-top: 16px;
}

.tm-wc-redesign .tm-wc-meta {
grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
  gap: 22px;
}

@media (max-width: 980px) {
.tm-wc-redesign .tm-wc-layout {
grid-template-columns: 1fr;
    gap: 30px;
}
}

/* =========================
   Website Check Final Hero Mockup
========================= */

.tm-wc-redesign .tm-wc-final-hero {
display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 44px;
  align-items: center;
  margin-bottom: 28px;
}

.tm-wc-redesign .tm-wc-final-left {
max-width: 520px;
}

.tm-wc-redesign .tm-wc-final-status {
display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: #0f172a;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tm-wc-redesign .tm-wc-final-status::before {
content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #22c55e;
}

.tm-wc-redesign .tm-wc-final-left h1 {
max-width: 11ch;
  margin: 0;
  color: #0f172a;
  font-size: clamp(3.3rem, 5.4vw, 5.35rem);
  line-height: 0.96;
  letter-spacing: -0.075em;
}

.tm-wc-redesign .tm-wc-final-left p {
max-width: 440px;
  margin: 28px 0 0;
  color: #334155;
  font-size: 1rem;
  line-height: 1.7;
}

.tm-wc-redesign .tm-wc-final-facts {
display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.tm-wc-redesign .tm-wc-final-facts div {
display: grid;
  gap: 4px;
}

.tm-wc-redesign .tm-wc-final-facts strong {
color: #0f172a;
  font-size: 0.85rem;
}

.tm-wc-redesign .tm-wc-final-facts span {
color: #64748b;
  font-size: 0.78rem;
}

.tm-wc-redesign .tm-wc-final-status-card {
padding: 34px;
  border: 1px solid #dfe7f2;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}

.tm-wc-redesign .tm-wc-final-card-label {
display: inline-flex;
  margin-bottom: 24px;
  color: #0f172a;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tm-wc-redesign .tm-wc-final-card-main {
display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid #e2e8f0;
}

.tm-wc-redesign .tm-wc-final-ring {
position: relative;
  width: 168px;
  height: 168px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: conic-gradient(#f5a400 0deg 265deg, #edf2f7 265deg 360deg);
}

.tm-wc-redesign .tm-wc-final-ring::before {
content: "";
  position: absolute;
  inset: 18px;
  border-radius: 999px;
  background: #ffffff;
}

.tm-wc-redesign .tm-wc-final-ring span {
position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 999px;
  background: #fff7e6;
  color: #0f172a;
}

.tm-wc-redesign .tm-wc-final-ring svg {
width: 38px;
  height: 38px;
}

.tm-wc-redesign .tm-wc-final-card-main h2 {
margin: 0;
  color: #f5a400;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.tm-wc-redesign .tm-wc-final-card-main p {
max-width: 390px;
  margin: 16px 0 22px;
  color: #334155;
  font-size: 0.98rem;
  line-height: 1.65;
}

.tm-wc-redesign .tm-wc-final-card-main a {
display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  background: #020617;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
}

.tm-wc-redesign .tm-wc-final-status-grid {
display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.tm-wc-redesign .tm-wc-final-status-grid span {
display: block;
  margin-bottom: 7px;
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tm-wc-redesign .tm-wc-final-status-grid strong {
display: block;
  color: #0f172a;
  font-size: 1.08rem;
}

.tm-wc-redesign .tm-wc-final-status-grid .is-good {
color: #16a34a;
}

.tm-wc-redesign .tm-wc-final-status-grid .is-warning {
color: #d97706;
}

.tm-wc-redesign .tm-wc-final-personal {
display: grid;
  grid-template-columns: 140px minmax(0, 1fr) 180px;
  gap: 30px;
  align-items: center;
  margin-top: 26px;
  padding: 30px 34px;
  border: 1px solid #dfe7f2;
  border-radius: 30px;
  background: #f8fbff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.045);
}

.tm-wc-redesign .tm-wc-final-personal-image img {
width: 118px;
  height: 118px;
  border-radius: 999px;
  object-fit: cover;
}

.tm-wc-redesign .tm-wc-final-personal-text h2 {
margin: 0 0 12px;
  color: #0f172a;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.tm-wc-redesign .tm-wc-final-personal-text p {
max-width: 720px;
  margin: 0 0 20px;
  color: #334155;
  font-size: 0.96rem;
  line-height: 1.65;
}

.tm-wc-redesign .tm-wc-final-personal-text strong {
display: block;
  color: #0f172a;
}

.tm-wc-redesign .tm-wc-final-personal-text span {
color: #64748b;
  font-size: 0.88rem;
}

.tm-wc-redesign .tm-wc-final-signature {
justify-self: end;
  color: #2563eb;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

@media (max-width: 980px) {
.tm-wc-redesign .tm-wc-final-hero {
grid-template-columns: 1fr;
}

.tm-wc-redesign .tm-wc-final-personal {
grid-template-columns: 100px minmax(0, 1fr);
}

.tm-wc-redesign .tm-wc-final-signature {
display: none;
}
}

@media (max-width: 680px) {
.tm-wc-redesign .tm-wc-final-card-main {
grid-template-columns: 1fr;
}

.tm-wc-redesign .tm-wc-final-status-grid,
.tm-wc-redesign .tm-wc-final-facts {
grid-template-columns: 1fr;
}

.tm-wc-redesign .tm-wc-final-personal {
grid-template-columns: 1fr;
}
}

/* =========================
   Website Check Final Sections
   Trust, Details, Bottom CTA
========================= */

.tm-wc-redesign .tm-wc-trust-section {
display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  gap: 18px;
  margin-top: 26px;
}

.tm-wc-redesign .tm-wc-trust-card {
min-height: 116px;
  padding: 26px;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.045);
}

.tm-wc-redesign .tm-wc-trust-card > strong {
display: block;
  color: #0f172a;
  font-size: 2.1rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.tm-wc-redesign .tm-wc-trust-card span {
display: block;
  margin-top: 8px;
  color: #0f172a;
  font-weight: 800;
}

.tm-wc-redesign .tm-wc-trust-card small {
display: block;
  margin-top: 6px;
  color: #64748b;
  font-size: 0.86rem;
  line-height: 1.45;
}

.tm-wc-redesign .tm-wc-trust-card p {
margin: 0 0 16px;
  color: #334155;
  font-size: 1rem;
  line-height: 1.65;
}

.tm-wc-redesign .tm-wc-trust-card p + strong {
color: #2563eb;
  font-size: 0.92rem;
  letter-spacing: 0;
}

.tm-wc-redesign .tm-wc-details-section {
display: grid;
  grid-template-columns: minmax(0, 1.25fr) 360px;
  gap: 18px;
  margin-top: 26px;
}

.tm-wc-redesign .tm-wc-details-card,
.tm-wc-redesign .tm-wc-consulting-card {
padding: 28px;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.045);
}

.tm-wc-redesign .tm-wc-detail-row {
display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 46px;
  border-bottom: 1px solid #edf2f7;
}

.tm-wc-redesign .tm-wc-detail-row:last-child {
border-bottom: 0;
}

.tm-wc-redesign .tm-wc-detail-row span {
color: #334155;
  font-size: 0.95rem;
  font-weight: 700;
}

.tm-wc-redesign .tm-wc-detail-row strong {
font-size: 0.92rem;
  font-weight: 850;
}

.tm-wc-redesign .tm-wc-detail-row strong.is-good {
color: #16a34a;
}

.tm-wc-redesign .tm-wc-detail-row strong.is-warning {
color: #d97706;
}

.tm-wc-redesign .tm-wc-consulting-card h3 {
margin: 0;
  color: #0f172a;
  font-size: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.045em;
}

.tm-wc-redesign .tm-wc-consulting-card p {
margin: 14px 0 22px;
  color: #475569;
  font-size: 0.96rem;
  line-height: 1.65;
}

.tm-wc-redesign .tm-wc-consulting-card a {
display: inline-flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #020617;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 850;
}

.tm-wc-redesign .tm-wc-bottom-cta {
display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: center;
  margin-top: 26px;
  padding: 48px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 50%, rgba(37, 99, 235, 0.28), transparent 28%),
    linear-gradient(135deg, #06111f 0%, #0f172a 100%);
  color: #ffffff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
}

.tm-wc-redesign .tm-wc-bottom-cta h2 {
margin: 0;
  color: #ffffff;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.06em;
  max-width: 560px;
}

.tm-wc-redesign .tm-wc-bottom-cta p {
max-width: 700px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.65;
}

.tm-wc-redesign .tm-wc-bottom-cta-right a {
display: inline-flex;
  width: 100%;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #ffffff;
  color: #0f172a;
  font-size: 0.92rem;
  font-weight: 900;
}

.tm-wc-redesign .tm-wc-bottom-cta-right ul {
display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.tm-wc-redesign .tm-wc-bottom-cta-right li {
position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.tm-wc-redesign .tm-wc-bottom-cta-right li::before {
content: "✓";
  position: absolute;
  left: 0;
  color: #60a5fa;
  font-weight: 900;
}

@media (max-width: 980px) {
.tm-wc-redesign .tm-wc-trust-section,
.tm-wc-redesign .tm-wc-details-section,
.tm-wc-redesign .tm-wc-bottom-cta {
grid-template-columns: 1fr;
}
}

@media (max-width: 640px) {
.tm-wc-redesign .tm-wc-trust-card,
.tm-wc-redesign .tm-wc-details-card,
.tm-wc-redesign .tm-wc-consulting-card,
.tm-wc-redesign .tm-wc-bottom-cta {
padding: 24px;
    border-radius: 24px;
}
}

.tm-wc-insight-icon svg {
width: 18px;
  height: 18px;
}

.tm-wc-redesign .tm-wc-trust-card {
transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tm-wc-redesign .tm-wc-trust-card:hover {
transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
}

.tm-wc-redesign .tm-wc-trust-card:nth-child(2) {
background:
    radial-gradient(circle at top right, rgba(37,99,235,0.08), transparent 40%),
    #ffffff;
}

.tm-wc-final-hero,
.tm-wc-final-personal,
.tm-wc-report-card,
.tm-wc-insight-card,
.tm-wc-care-section,
.tm-wc-details-section,
.tm-wc-bottom-cta {
border-radius: 34px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.05),
    0 2px 10px rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(255,255,255,0.8);
}

.tm-wc-insights-grid {
gap: 24px;
}

.tm-wc-insight-card {
padding: 34px;
}

.tm-wc-insight-icon {
width: 58px;
  height: 58px;
  border-radius: 18px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tm-wc-insight-good .tm-wc-insight-icon {
background: rgba(34,197,94,0.12);
  color: #16a34a;
}

.tm-wc-insight-warning .tm-wc-insight-icon {
background: rgba(245,158,11,0.14);
  color: #d97706;
}

.tm-wc-insight-icon svg {
width: 22px;
  height: 22px;
}

.tm-wc-bottom-cta {
margin-top: 48px;
  padding: 48px;
  background:
    radial-gradient(circle at top left, rgba(37,99,235,0.25), transparent 45%),
    #081225;
  color: #fff;
}

.tm-wc-bottom-cta h2 {
color: #fff;
}

.tm-wc-bottom-cta p {
color: rgba(255,255,255,0.72);
}

.tm-wc-redesign section {
margin-top: 28px;
}

/* =========================
   Website Check Mockup Polish
========================= */

.tm-wc-redesign .tm-action-report {
display: grid;
  gap: 26px;
}

.tm-wc-redesign .tm-wc-final-hero,
.tm-wc-redesign .tm-wc-final-personal,
.tm-wc-redesign .tm-wc-report-card,
.tm-wc-redesign .tm-wc-care-section,
.tm-wc-redesign .tm-wc-trust-section,
.tm-wc-redesign .tm-wc-details-section,
.tm-wc-redesign .tm-wc-bottom-cta {
margin-top: 0;
}

.tm-wc-redesign .tm-wc-final-hero,
.tm-wc-redesign .tm-wc-final-personal,
.tm-wc-redesign .tm-wc-report-card,
.tm-wc-redesign .tm-wc-care-section,
.tm-wc-redesign .tm-wc-details-card,
.tm-wc-redesign .tm-wc-consulting-card,
.tm-wc-redesign .tm-wc-trust-card {
border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow:
    0 18px 50px rgba(15, 23, 42, 0.055),
    0 2px 8px rgba(15, 23, 42, 0.035);
}

.tm-wc-redesign .tm-wc-final-hero {
padding: 42px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 86% 0%, rgba(37, 99, 235, 0.14), transparent 34%),
    #ffffff;
}

.tm-wc-redesign .tm-wc-final-left h1 {
font-size: clamp(3.2rem, 5vw, 5.4rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.tm-wc-redesign .tm-wc-final-status-card {
padding: 34px;
  border-radius: 28px;
  box-shadow:
    0 22px 60px rgba(15, 23, 42, 0.08);
}

.tm-wc-redesign .tm-wc-final-personal {
padding: 28px 34px;
}

.tm-wc-redesign .tm-wc-report-card,
.tm-wc-redesign .tm-wc-care-section {
padding: 34px;
}

.tm-wc-redesign .tm-wc-report-section,
.tm-wc-redesign .tm-wc-insights-section,
.tm-wc-redesign .tm-wc-care-section {
margin-top: 0;
}

.tm-wc-redesign .tm-wc-insights-grid {
gap: 22px;
}

.tm-wc-redesign .tm-wc-insight-card {
padding: 30px;
  border-radius: 26px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow:
    0 14px 36px rgba(15, 23, 42, 0.05);
}

.tm-wc-redesign .tm-wc-insight-icon {
width: 58px;
  height: 58px;
  border-radius: 20px;
}

.tm-wc-redesign .tm-wc-insight-icon svg {
width: 23px;
  height: 23px;
}

.tm-wc-redesign .tm-wc-care-text h2 {
font-size: clamp(2.5rem, 4.4vw, 4.4rem);
  line-height: 0.92;
}

.tm-wc-redesign .tm-wc-trust-section {
gap: 18px;
}

.tm-wc-redesign .tm-wc-trust-card {
border-radius: 24px;
}

.tm-wc-redesign .tm-wc-bottom-cta {
padding: 42px;
  border-radius: 28px;
  box-shadow:
    0 24px 70px rgba(15, 23, 42, 0.22);
}

@media (max-width: 780px) {
.tm-wc-redesign .tm-wc-final-hero,
.tm-wc-redesign .tm-wc-report-card,
.tm-wc-redesign .tm-wc-care-section,
.tm-wc-redesign .tm-wc-bottom-cta {
padding: 26px;
}
}

/* =========================
   Website Check Mockup Polish 2
========================= */

.tm-wc-redesign .tm-wc-final-hero {
grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
}

.tm-wc-redesign .tm-wc-final-status-card {
display: flex;
  flex-direction: column;
  justify-content: center;
}

.tm-wc-redesign .tm-wc-final-ring {
width: 150px;
  height: 150px;
}

.tm-wc-redesign .tm-wc-final-card-main {
grid-template-columns: 165px minmax(0, 1fr);
  gap: 28px;
}

.tm-wc-redesign .tm-wc-report-section {
margin-bottom: 22px;
}

.tm-wc-redesign .tm-wc-insights-section {
margin-top: 0;
}

.tm-wc-redesign .tm-wc-insight-card {
min-height: 255px;
  display: flex;
  flex-direction: column;
}

.tm-wc-redesign .tm-wc-insight-card button {
margin-top: auto;
}

.tm-wc-redesign .tm-wc-care-section {
grid-template-columns: minmax(0, 1.15fr) 240px minmax(0, 0.9fr);
  align-items: center;
}

.tm-wc-redesign .tm-wc-care-visual {
display: flex;
  justify-content: center;
  align-items: center;
}

.tm-wc-redesign .tm-wc-care-shield {
width: 180px;
  height: 180px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.24), transparent 58%),
    linear-gradient(145deg, #eff6ff 0%, #dbeafe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  box-shadow:
    inset 0 8px 30px rgba(255, 255, 255, 0.9),
    0 25px 50px rgba(37, 99, 235, 0.18);
}

.tm-wc-redesign .tm-wc-care-shield svg {
width: 88px;
  height: 88px;
}

.tm-wc-redesign .tm-wc-bottom-cta {
min-height: 220px;
  align-items: center;
}

@media (max-width: 980px) {
.tm-wc-redesign .tm-wc-final-hero,
.tm-wc-redesign .tm-wc-care-section {
grid-template-columns: 1fr;
}

.tm-wc-redesign .tm-wc-care-visual {
order: 2;
}

.tm-wc-redesign .tm-wc-care-box {
order: 3;
}
}

@media (max-width: 640px) {
.tm-wc-redesign .tm-wc-final-card-main {
grid-template-columns: 1fr;
}

.tm-wc-redesign .tm-wc-care-shield {
width: 140px;
    height: 140px;
}

.tm-wc-redesign .tm-wc-care-shield svg {
width: 68px;
    height: 68px;
}
}

/* =========================
   Website Check Premium Polish
========================= */

.tm-wc-redesign {
background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 28%),
    #f5f7fb;
}

.tm-wc-redesign .tm-check-single-wrap {
max-width: 1240px;
}

.tm-wc-redesign section {
margin-bottom: 22px;
}

.tm-wc-redesign .tm-wc-final-hero,
.tm-wc-redesign .tm-wc-final-personal,
.tm-wc-redesign .tm-wc-report-card,
.tm-wc-redesign .tm-wc-care-section,
.tm-wc-redesign .tm-wc-details-section,
.tm-wc-redesign .tm-wc-bottom-cta,
.tm-wc-redesign .tm-wc-trust-card,
.tm-wc-redesign .tm-wc-insight-card {
border-radius: 30px;
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow:
    0 10px 35px rgba(15, 23, 42, 0.04),
    0 2px 10px rgba(15, 23, 42, 0.03);
}

.tm-wc-redesign .tm-wc-final-hero {
padding: 46px;
}

.tm-wc-redesign .tm-wc-final-left h1 {
font-size: clamp(3.4rem, 5vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  max-width: 520px;
}

.tm-wc-redesign .tm-wc-final-left p {
max-width: 520px;
  font-size: 1.05rem;
  line-height: 1.75;
}

.tm-wc-redesign .tm-wc-final-status-card {
padding: 34px;
}

.tm-wc-redesign .tm-wc-final-card-main h2 {
font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.tm-wc-redesign .tm-wc-final-card-main p {
font-size: 1rem;
  line-height: 1.7;
}

.tm-wc-redesign .tm-wc-final-status-grid {
margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.tm-wc-redesign .tm-wc-final-status-grid strong {
font-size: 1.1rem;
}

.tm-wc-redesign .tm-wc-final-personal {
padding: 30px;
  align-items: center;
}

.tm-wc-redesign .tm-wc-final-personal-image img {
width: 94px;
  height: 94px;
  object-fit: cover;
}

.tm-wc-redesign .tm-wc-report-card {
padding: 34px;
}

.tm-wc-redesign .tm-wc-report-content h2 {
font-size: 2.5rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.tm-wc-redesign .tm-wc-report-content p {
font-size: 1rem;
  line-height: 1.7;
}

.tm-wc-redesign .tm-wc-insight-card {
padding: 34px 30px;
}

.tm-wc-redesign .tm-wc-insight-card h3 {
font-size: 1.45rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.tm-wc-redesign .tm-wc-insight-card p {
line-height: 1.7;
}

.tm-wc-redesign .tm-wc-care-section {
padding: 40px;
}

.tm-wc-redesign .tm-wc-care-text h2 {
font-size: clamp(2.8rem, 4vw, 4.6rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.tm-wc-redesign .tm-wc-care-text p {
line-height: 1.75;
}

.tm-wc-redesign .tm-wc-care-shield {
width: 220px;
  height: 220px;
  box-shadow:
    0 0 80px rgba(37, 99, 235, 0.18),
    inset 0 8px 30px rgba(255,255,255,0.9);
}

.tm-wc-redesign .tm-wc-care-shield svg {
width: 94px;
  height: 94px;
}

.tm-wc-redesign .tm-wc-care-box {
padding: 34px;
}

.tm-wc-redesign .tm-wc-care-box h3 {
font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.tm-wc-redesign .tm-wc-trust-section {
gap: 18px;
}

.tm-wc-redesign .tm-wc-trust-card {
padding: 30px;
}

.tm-wc-redesign .tm-wc-trust-card strong {
font-size: 2rem;
  letter-spacing: -0.05em;
}

.tm-wc-redesign .tm-wc-details-card,
.tm-wc-redesign .tm-wc-consulting-card {
padding: 34px;
  border-radius: 30px;
}

.tm-wc-redesign .tm-wc-bottom-cta {
padding: 42px;
  overflow: hidden;
  position: relative;
}

.tm-wc-redesign .tm-wc-bottom-cta::before {
content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(37,99,235,0.3), transparent 35%);
  pointer-events: none;
}

.tm-wc-redesign .tm-wc-bottom-cta h2 {
font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  max-width: 520px;
}

.tm-wc-redesign .tm-wc-bottom-cta p {
max-width: 520px;
  line-height: 1.7;
}

@media (max-width: 980px) {
.tm-wc-redesign .tm-wc-final-hero,
.tm-wc-redesign .tm-wc-care-section,
.tm-wc-redesign .tm-wc-details-section {
padding: 26px;
}

.tm-wc-redesign .tm-wc-final-left h1,
.tm-wc-redesign .tm-wc-care-text h2,
.tm-wc-redesign .tm-wc-bottom-cta h2 {
line-height: 1;
}

.tm-wc-redesign .tm-wc-care-shield {
width: 170px;
    height: 170px;
}
}

.tm-wc-redesign .tm-wc-final-hero {
padding: 42px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.tm-wc-redesign .tm-wc-final-left h1 {
font-size: clamp(3.1rem, 4.4vw, 4.8rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
  max-width: 430px;
}

.tm-wc-redesign .tm-wc-final-left p {
font-size: 0.98rem;
  line-height: 1.7;
  max-width: 440px;
}

.tm-wc-redesign .tm-wc-final-status-card {
padding: 32px;
}

.tm-wc-redesign .tm-wc-final-ring {
width: 150px;
  height: 150px;
}

.tm-wc-redesign .tm-wc-final-ring span {
width: 76px;
  height: 76px;
}

.tm-wc-redesign .tm-wc-final-card-main h2 {
font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  line-height: 1;
}

.tm-wc-redesign .tm-wc-final-status-grid div {
position: relative;
  padding-left: 48px;
}

.tm-wc-redesign .tm-wc-mini-icon {
position: absolute;
  left: 0;
  top: 2px;
  width: 34px;
  height: 34px;
  color: #0f172a;
}

.tm-wc-redesign .tm-wc-mini-icon svg {
width: 34px;
  height: 34px;
}

/* Website Check Breite wieder näher ans Mockup */

.tm-wc-redesign .tm-check-single-wrap {
max-width: 1180px;
}

.tm-wc-redesign .tm-action-report {
max-width: 100%;
}

.tm-wc-redesign .tm-wc-final-hero {
grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.tm-wc-redesign .tm-wc-final-status-card {
min-width: 0;
}

/* Blauen Balken unter Header entfernen */

.tm-wc-redesign .tm-check-single-hero,
.tm-wc-redesign .tm-check-single-wrap,
.tm-wc-redesign .tm-action-report {
background: transparent;
}

.tm-wc-redesign .tm-check-signal-hero::before,
.tm-wc-redesign .tm-check-signal-hero::after,
.tm-wc-redesign .tm-check-single-wrap::before,
.tm-wc-redesign .tm-check-single-wrap::after {
display: none;
  content: none;
}

.tm-wc-redesign {
padding-top: 28px;
}

.tm-wc-redesign .tm-check-single-wrap {
max-width: 1320px;
}

.tm-wc-redesign .tm-wc-final-hero,
.tm-wc-redesign .tm-wc-final-personal,
.tm-wc-redesign .tm-wc-report-card,
.tm-wc-redesign .tm-wc-care-section,
.tm-wc-redesign .tm-wc-details-section,
.tm-wc-redesign .tm-wc-bottom-cta,
.tm-wc-redesign .tm-wc-trust-card,
.tm-wc-redesign .tm-wc-insight-card {
border-radius: 26px;
}

.tm-wc-redesign section {
margin-bottom: 18px;
}

.tm-wc-redesign section {
margin-bottom: 14px;
}

.tm-wc-redesign .tm-wc-final-personal,
.tm-wc-redesign .tm-wc-report-card,
.tm-wc-redesign .tm-wc-care-section,
.tm-wc-redesign .tm-wc-details-section {
padding: 26px;
}

.tm-wc-redesign .tm-wc-insight-card {
padding: 28px 24px;
}

.tm-wc-redesign .tm-wc-trust-card {
padding: 24px;
}

.tm-wc-redesign .tm-wc-details-section {
align-items: stretch;
}

.tm-wc-redesign .tm-wc-consulting-card {
justify-content: center;
}

.tm-wc-redesign .tm-wc-bottom-cta {
margin-bottom: 0;
}

.tm-wc-redesign footer {
margin-top: 28px;
}

.tm-wc-redesign .tm-wc-final-personal-text p,
.tm-wc-redesign .tm-wc-report-content p,
.tm-wc-redesign .tm-wc-care-text p,
.tm-wc-redesign .tm-wc-care-box p,
.tm-wc-redesign .tm-wc-consulting-card p {
font-size: 0.96rem;
  line-height: 1.7;
}

.tm-wc-redesign .tm-wc-insight-card h3,
.tm-wc-redesign .tm-wc-care-box h3,
.tm-wc-redesign .tm-wc-consulting-card h3 {
font-weight: 800;
}

.tm-wc-redesign .tm-wc-final-personal {
grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 28px;
}

.tm-wc-redesign .tm-wc-final-personal-image {
width: 120px;
  min-width: 120px;
}

.tm-wc-redesign .tm-wc-final-personal-image img {
width: 120px;
  height: 120px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow:
    0 10px 30px rgba(15,23,42,0.10);
}

/* =========================
   REPORT PREVIEW CLEAN
========================= */

.tm-wc-redesign .tm-wc-report-preview {
display: flex;
  align-items: center;
  justify-content: center;
}

.tm-wc-redesign .tm-wc-report-sheet {
position: relative;

  width: 138px;
  height: 188px;

  padding: 18px 16px;

  border-radius: 22px;

  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);

  border: 1px solid rgba(15,23,42,0.06);

  box-shadow:
    0 24px 50px rgba(15,23,42,0.10),
    0 8px 20px rgba(15,23,42,0.05);

  transform: rotate(-6deg);

  overflow: hidden;
}

.tm-wc-redesign .tm-wc-report-sheet::before {
content: "";

  position: absolute;
  top: 0;
  right: 0;

  width: 82px;
  height: 82px;

  background:
    linear-gradient(
      135deg,
      rgba(37,99,235,0.10),
      rgba(37,99,235,0)
    );

  border-radius: 0 0 0 100%;
}

.tm-wc-redesign .tm-wc-report-top strong {
display: block;

  font-size: 13px;
  line-height: 1.15;
  font-weight: 800;

  color: #0f172a;
}

.tm-wc-redesign .tm-wc-report-top span {
display: block;

  margin-top: 4px;

  font-size: 10px;
  font-weight: 700;

  color: #64748b;
}

.tm-wc-redesign .tm-wc-report-ring {
position: relative;

  width: 62px;
  height: 62px;

  margin: 18px auto;

  border-radius: 999px;

  background:
    conic-gradient(
      #f4b000 0 72%,
      #e8edf5 72% 100%
    );
}

.tm-wc-redesign .tm-wc-report-ring::after {
content: "";

  position: absolute;
  inset: 10px;

  border-radius: 999px;

  background: #ffffff;
}

.tm-wc-redesign .tm-wc-report-lines {
display: flex;
  flex-direction: column;
  gap: 8px;
}

.tm-wc-redesign .tm-wc-report-lines i {
display: block;

  height: 7px;

  border-radius: 999px;

  background: #e7edf5;
}

.tm-wc-redesign .tm-wc-report-lines i:nth-child(1) {
width: 92%;
}

.tm-wc-redesign .tm-wc-report-lines i:nth-child(2) {
width: 74%;
}

.tm-wc-redesign .tm-wc-report-lines i:nth-child(3) {
width: 86%;
}

.tm-wc-redesign .tm-wc-report-lines i:nth-child(4) {
width: 58%;
}

.tm-wc-redesign .tm-wc-report-checks {
display: flex;
  gap: 8px;

  margin-top: 16px;
}

.tm-wc-redesign .tm-wc-report-checks span {
width: 10px;
  height: 10px;

  border-radius: 999px;

  background: #22c55e;
}

.tm-wc-redesign .tm-wc-report-preview {
justify-content: flex-start;
  padding-left: 8px;
}

.tm-wc-redesign .tm-wc-report-sheet {
width: 155px;
  height: 210px;

  transform:
    rotate(-7deg)
    translateY(6px);

  box-shadow:
    0 30px 60px rgba(15,23,42,0.14),
    0 12px 24px rgba(15,23,42,0.08);
}

.tm-wc-redesign .tm-wc-report-preview {
justify-content: flex-start;
  padding-left: 8px;
}

.tm-wc-redesign .tm-wc-report-sheet {
width: 155px;
  height: 210px;

  transform:
    rotate(-7deg)
    translateY(6px);

  box-shadow:
    0 30px 60px rgba(15,23,42,0.14),
    0 12px 24px rgba(15,23,42,0.08);
}

.tm-wc-redesign .tm-wc-checked-url {
display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;

  margin-top: 18px;
  margin-bottom: 18px;

  padding: 9px 13px;

  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(15,23,42,0.08);

  box-shadow:
    0 8px 18px rgba(15,23,42,0.04);
}

.tm-wc-redesign .tm-wc-checked-url span {
font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.tm-wc-redesign .tm-wc-checked-url strong {
font-size: 0.9rem;
  font-weight: 800;
  color: #081226;
}

/* =========================
   Website Check Final Mockup Override
========================= */

.tm-wc-redesign .tm-check-single-wrap {
max-width: 1180px;
}

.tm-wc-redesign .tm-wc-final-hero {
display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: stretch;
  padding: 40px;
  border-radius: 28px;
}

.tm-wc-redesign .tm-wc-final-left h1 {
max-width: 440px;
  font-size: clamp(2.55rem, 3.25vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.tm-wc-redesign .tm-wc-final-left p {
max-width: 470px;
  font-size: 0.98rem;
  line-height: 1.65;
}

.tm-wc-redesign .tm-wc-final-status-card {
padding: 34px;
  border-radius: 24px;
}

.tm-wc-redesign .tm-wc-final-card-main {
grid-template-columns: 160px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.tm-wc-redesign .tm-wc-final-ring {
width: 150px;
  height: 150px;
}

.tm-wc-redesign .tm-wc-final-ring span {
width: 78px;
  height: 78px;
}

.tm-wc-redesign .tm-wc-final-card-main h2 {
font-size: clamp(1.9rem, 2.3vw, 2.55rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.tm-wc-redesign .tm-wc-final-status-grid {
margin-top: 26px;
  padding-top: 22px;
}

.tm-wc-redesign .tm-wc-final-personal {
grid-template-columns: 112px minmax(0, 1fr) auto;
  gap: 28px;
  padding: 30px;
}

.tm-wc-redesign .tm-wc-final-personal-image img {
width: 112px;
  height: 112px;
}

.tm-wc-redesign .tm-wc-report-card {
grid-template-columns: 150px minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 34px;
  padding: 34px;
}

.tm-wc-redesign .tm-wc-report-content h2 {
font-size: clamp(2rem, 2.5vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.tm-wc-redesign .tm-wc-insights-grid {
gap: 20px;
}

.tm-wc-redesign .tm-wc-insight-card {
min-height: 230px;
  padding: 30px;
}

.tm-wc-redesign .tm-wc-care-section {
grid-template-columns: minmax(0, 1.15fr) 230px minmax(0, 0.85fr);
  gap: 28px;
  padding: 36px;
}

.tm-wc-redesign .tm-wc-care-text h2 {
max-width: 480px;
  font-size: clamp(2.55rem, 3.5vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.tm-wc-redesign .tm-wc-care-shield {
width: 210px;
  height: 210px;
}

.tm-wc-redesign .tm-wc-care-shield svg {
width: 92px;
  height: 92px;
}

.tm-wc-redesign .tm-wc-bottom-cta h2 {
font-size: clamp(2.4rem, 3.2vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

@media (max-width: 980px) {
.tm-wc-redesign .tm-wc-final-hero,
.tm-wc-redesign .tm-wc-report-card,
.tm-wc-redesign .tm-wc-care-section {
grid-template-columns: 1fr;
}
}

.tm-wc-redesign .tm-wc-final-left h1 {
font-size: clamp(2.6rem, 3.15vw, 3.75rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  max-width: 430px;
}

.tm-wc-redesign .tm-wc-final-left p {
font-size: 0.95rem;
  line-height: 1.65;
  max-width: 430px;
}

.tm-wc-redesign .tm-wc-final-hero {
padding: 38px;
}

/* =========================
   Website Check Optik Feinschliff
========================= */

.tm-wc-redesign section {
margin-top: 34px;
}

.tm-wc-redesign .tm-wc-final-hero {
padding: 44px;
  border-radius: 30px;
  box-shadow:
    0 12px 30px rgba(15,23,42,0.04),
    0 2px 10px rgba(15,23,42,0.03);
}

.tm-wc-redesign .tm-wc-final-left h1 {
font-size: clamp(2.55rem, 3.15vw, 3.75rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 800;
  max-width: 440px;
}

.tm-wc-redesign .tm-wc-final-left p {
font-size: 0.95rem;
  line-height: 1.65;
  max-width: 440px;
}

.tm-wc-redesign .tm-wc-final-left h1,
.tm-wc-redesign .tm-wc-care-text h2,
.tm-wc-redesign .tm-wc-bottom-cta h2,
.tm-wc-redesign .tm-wc-report-content h2 {
font-weight: 800;
  letter-spacing: -0.07em;
}

.tm-wc-redesign .tm-wc-insight-card,
.tm-wc-redesign .tm-wc-report-card,
.tm-wc-redesign .tm-wc-final-personal,
.tm-wc-redesign .tm-wc-details-card,
.tm-wc-redesign .tm-wc-consulting-card,
.tm-wc-redesign .tm-wc-care-box,
.tm-wc-redesign .tm-wc-trust-card {
box-shadow:
    0 8px 24px rgba(15,23,42,0.03),
    0 1px 4px rgba(15,23,42,0.03);
  border: 1px solid rgba(15,23,42,0.05);
}

.tm-wc-redesign .tm-wc-bottom-cta {
padding: 42px;
  border-radius: 28px;
}

.tm-wc-redesign .tm-wc-bottom-cta h2 {
max-width: 420px;
  font-size: clamp(2.4rem, 3vw, 3.7rem);
  line-height: 0.95;
}

/* =========================
   Website Check Hero Fixes
========================= */

.tm-wc-redesign .tm-wc-final-facts div {
display: grid;
  grid-template-columns: 28px 1fr;
  column-gap: 10px;
  align-items: center;
}

.tm-wc-redesign .tm-wc-final-facts strong,
.tm-wc-redesign .tm-wc-final-facts span {
grid-column: 2;
}

.tm-wc-redesign .tm-wc-fact-icon {
grid-row: 1 / span 2;
  width: 24px;
  height: 24px;
  color: #0f172a;
  opacity: 0.85;
}

.tm-wc-redesign .tm-wc-fact-icon svg {
width: 24px;
  height: 24px;
}

.tm-wc-redesign .tm-wc-final-card-main h2 {
font-size: clamp(1.55rem, 1.8vw, 2.05rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.tm-wc-redesign .tm-wc-final-card-main p {
font-size: 0.9rem;
  line-height: 1.55;
}

.tm-wc-redesign .tm-wc-final-ring {
background:
    conic-gradient(
      #f5a400 0 var(--tm-wc-ring),
      #edf1f7 var(--tm-wc-ring) 100%
    );
}

.tm-wc-redesign .tm-wc-final-ring-good {
background:
    conic-gradient(
      #22c55e 0 var(--tm-wc-ring),
      #edf1f7 var(--tm-wc-ring) 100%
    );
}

.tm-wc-redesign .tm-wc-final-ring-bad {
background:
    conic-gradient(
      #ef4444 0 var(--tm-wc-ring),
      #edf1f7 var(--tm-wc-ring) 100%
    );
}

.tm-wc-redesign .tm-wc-final-status-grid div {
padding-left: 40px;
}

.tm-wc-redesign .tm-wc-mini-icon {
width: 26px;
  height: 26px;
  top: 4px;
}

.tm-wc-redesign .tm-wc-mini-icon svg {
width: 26px;
  height: 26px;
}

.tm-wc-redesign .tm-wc-final-status-grid span {
font-size: 0.66rem;
}

.tm-wc-redesign .tm-wc-final-status-grid strong {
font-size: 0.86rem;
}

/* =========================
   Hero Balance Fix
========================= */

.tm-wc-redesign .tm-wc-final-hero {
align-items: stretch;
  gap: 34px;
}

.tm-wc-redesign .tm-wc-final-left {
display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tm-wc-redesign .tm-wc-final-status-card {
display: flex;
  flex-direction: column;
  justify-content: space-between;

  min-height: 100%;
}

.tm-wc-redesign .tm-wc-final-card-main {
align-items: center;
}

.tm-wc-redesign .tm-wc-final-status-grid {
margin-top: auto;
}

.tm-wc-redesign .tm-wc-final-hero {
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
}

.tm-wc-redesign .tm-wc-final-status-card {
overflow: hidden;
}

.tm-wc-redesign .tm-wc-final-card-main h2 {
max-width: 100%;
  overflow-wrap: normal;
  hyphens: none;
  font-size: clamp(1.45rem, 1.65vw, 1.95rem);
  line-height: 1.02;
}

.tm-wc-redesign .tm-wc-final-card-main {
grid-template-columns: 130px minmax(0, 1fr);
  gap: 24px;
}

.tm-wc-redesign .tm-wc-final-ring {
width: 124px;
  height: 124px;
}

.tm-wc-redesign .tm-wc-final-card-main {
grid-template-columns: 140px minmax(0, 1fr);
  gap: 28px;
}

.tm-wc-redesign .tm-wc-final-ring {
width: 136px;
  height: 136px;
}

.tm-wc-redesign .tm-wc-final-ring span {
width: 70px;
  height: 70px;
}

.tm-wc-redesign .tm-wc-final-card-main h2 {
font-size: clamp(1.65rem, 1.85vw, 2.1rem);
  line-height: 1;
}

.tm-wc-redesign .tm-wc-final-status-grid {
margin-top: 26px;
}

.tm-wc-redesign .tm-wc-final-ring {
background:
    conic-gradient(
      #f5a400 0 var(--tm-wc-ring),
      #edf1f7 var(--tm-wc-ring) 100%
    );
}

.tm-wc-redesign .tm-wc-final-ring-good {
background:
    conic-gradient(
      #22c55e 0 var(--tm-wc-ring),
      #edf1f7 var(--tm-wc-ring) 100%
    );
}

.tm-wc-redesign .tm-wc-final-ring-warning {
background:
    conic-gradient(
      #f5a400 0 var(--tm-wc-ring),
      #edf1f7 var(--tm-wc-ring) 100%
    );
}

.tm-wc-redesign .tm-wc-final-ring-bad {
background:
    conic-gradient(
      #ef4444 0 var(--tm-wc-ring),
      #edf1f7 var(--tm-wc-ring) 100%
    );
}

.tm-wc-redesign .tm-wc-hero-visual {
display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0 10px;
  padding: 14px;
  border-radius: 22px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.tm-wc-redesign .tm-wc-hero-screen {
width: 118px;
  height: 78px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.10);
  overflow: hidden;
  flex: 0 0 auto;
}

.tm-wc-redesign .tm-wc-hero-screen-top {
height: 12px;
  background: #eef4ff;
}

.tm-wc-redesign .tm-wc-hero-screen-body {
height: 66px;
  display: grid;
  place-items: center;
}

.tm-wc-redesign .tm-wc-hero-screen-body span {
display: none;
}

.tm-wc-redesign .tm-wc-hero-screen-body strong {
width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #16a34a;
  color: #ffffff;
}

.tm-wc-redesign .tm-wc-hero-screen-body svg {
width: 22px;
  height: 22px;
}

.tm-wc-redesign .tm-wc-orbit {
width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.tm-wc-redesign .tm-wc-orbit svg {
width: 21px;
  height: 21px;
}

.tm-wc-redesign .tm-wc-orbit-1 {
color: #16a34a;
}

.tm-wc-redesign .tm-wc-orbit-2 {
color: #f59e0b;
}

.tm-wc-redesign .tm-wc-orbit-3 {
color: #2563eb;
}

.tm-wc-redesign .tm-wc-orbit-4 {
color: #16a34a;
}

.tm-wc-redesign .tm-wc-final-left {
display: grid;
  grid-template-columns: 210px 1fr;
  column-gap: 34px;
  align-items: center;
}

.tm-wc-redesign .tm-wc-final-left > .tm-wc-final-status {
grid-column: 1 / -1;
}

.tm-wc-redesign .tm-wc-final-left > h1,
.tm-wc-redesign .tm-wc-final-left > p,
.tm-wc-redesign .tm-wc-final-left > .tm-wc-checked-url {
grid-column: 2;
}

.tm-wc-redesign .tm-wc-code-visual {
grid-column: 1;
  grid-row: 2 / 5;
  position: relative;
  width: 210px;
  height: 190px;
}

.tm-wc-redesign .tm-wc-code-laptop {
position: absolute;
  left: 38px;
  bottom: 28px;
  width: 132px;
}

.tm-wc-redesign .tm-wc-code-laptop-screen {
position: relative;
  height: 86px;
  border-radius: 14px 14px 6px 6px;
  background: #ffffff;
  border: 8px solid #334155;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.16);
}

.tm-wc-redesign .tm-wc-code-laptop-screen span {
position: absolute;
  width: 26px;
  height: 22px;
  border-radius: 5px;
  background: #eaf0f8;
}

.tm-wc-redesign .tm-wc-code-laptop-screen span:nth-child(1) {
left: 16px;
  top: 18px;
}

.tm-wc-redesign .tm-wc-code-laptop-screen span:nth-child(2) {
right: 16px;
  top: 18px;
}

.tm-wc-redesign .tm-wc-code-laptop-screen span:nth-child(3) {
left: 16px;
  bottom: 14px;
  width: 70px;
}

.tm-wc-redesign .tm-wc-code-laptop-screen strong {
position: absolute;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #16a34a;
  color: #ffffff;
  font-size: 30px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(22, 163, 74, 0.28);
}

.tm-wc-redesign .tm-wc-code-laptop-base {
width: 154px;
  height: 14px;
  margin-left: -11px;
  border-radius: 0 0 18px 18px;
  background: #cbd5e1;
}

.tm-wc-redesign .tm-wc-code-bubble {
position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.10);
  font-style: normal;
  font-size: 20px;
}

.tm-wc-redesign .tm-wc-code-bubble-1 {
left: 74px;
  top: 0;
}

.tm-wc-redesign .tm-wc-code-bubble-2 {
right: 0;
  top: 48px;
}

.tm-wc-redesign .tm-wc-code-bubble-3 {
left: 0;
  bottom: 30px;
}

.tm-wc-redesign .tm-wc-code-bubble-4 {
right: 6px;
  bottom: 20px;
}

.tm-wc-redesign .tm-wc-code-line {
position: absolute;
  height: 1px;
  background: rgba(37, 99, 235, 0.22);
  transform-origin: left center;
}

.tm-wc-redesign .tm-wc-code-line-1 {
left: 98px;
  top: 48px;
  width: 58px;
  transform: rotate(42deg);
}

.tm-wc-redesign .tm-wc-code-line-2 {
left: 52px;
  top: 100px;
  width: 54px;
  transform: rotate(-28deg);
}

.tm-wc-redesign .tm-wc-code-line-3 {
left: 146px;
  top: 112px;
  width: 48px;
  transform: rotate(-36deg);
}

.tm-wc-redesign .tm-wc-final-facts {
grid-column: 1 / -1;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(15, 23, 42, 0.10);
}

@media (max-width: 900px) {
.tm-wc-redesign .tm-wc-final-left {
display: block;
}

.tm-wc-redesign .tm-wc-code-visual {
display: none;
}
}

.tm-wc-redesign .tm-wc-code-bubble svg {
width: 24px;
  height: 24px;
}

.tm-wc-redesign .tm-wc-code-laptop-screen strong svg {
width: 28px;
  height: 28px;
}

.tm-wc-redesign .tm-wc-final-left {
position: relative;
  padding-left: 290px;
  min-height: 270px;
}

.tm-wc-redesign .tm-wc-final-status {
display: inline-flex;
  margin-bottom: 24px;
}

.tm-wc-redesign .tm-wc-final-left h1 {
max-width: 520px;
}

.tm-wc-redesign .tm-wc-final-left > p {
max-width: 520px;
}

.tm-wc-redesign .tm-wc-checked-url {
margin-top: 26px;
}

.tm-wc-redesign .tm-wc-code-visual {
position: absolute;
  left: 0;
  top: 58px;
  width: 240px;
  height: 220px;
}

.tm-wc-redesign .tm-wc-code-laptop {
position: absolute;
  left: 44px;
  bottom: 34px;
  width: 152px;
}

.tm-wc-redesign .tm-wc-code-laptop-screen {
position: relative;
  height: 102px;
  border-radius: 16px 16px 8px 8px;
  background: #ffffff;
  border: 8px solid #334155;
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.16);
}

.tm-wc-redesign .tm-wc-code-laptop-screen span {
position: absolute;
  border-radius: 6px;
  background: #eaf0f8;
}

.tm-wc-redesign .tm-wc-code-laptop-screen span:nth-child(1) {
left: 18px;
  top: 18px;
  width: 32px;
  height: 24px;
}

.tm-wc-redesign .tm-wc-code-laptop-screen span:nth-child(2) {
right: 18px;
  top: 18px;
  width: 32px;
  height: 24px;
}

.tm-wc-redesign .tm-wc-code-laptop-screen span:nth-child(3) {
left: 18px;
  bottom: 16px;
  width: 84px;
  height: 18px;
}

.tm-wc-redesign .tm-wc-code-laptop-screen strong {
position: absolute;
  left: 50%;
  top: 50%;
  width: 56px;
  height: 56px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #16a34a;
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(22, 163, 74, 0.30);
}

.tm-wc-redesign .tm-wc-code-laptop-screen strong svg {
width: 28px;
  height: 28px;
}

.tm-wc-redesign .tm-wc-code-laptop-base {
width: 176px;
  height: 14px;
  margin-left: -12px;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(to bottom, #cbd5e1, #94a3b8);
}

.tm-wc-redesign .tm-wc-code-bubble {
position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.10);
}

.tm-wc-redesign .tm-wc-code-bubble svg {
width: 24px;
  height: 24px;
}

.tm-wc-redesign .tm-wc-code-bubble-1 {
left: 88px;
  top: 0;
  color: #2563eb;
}

.tm-wc-redesign .tm-wc-code-bubble-2 {
right: 0;
  top: 58px;
  color: #f59e0b;
}

.tm-wc-redesign .tm-wc-code-bubble-3 {
left: 0;
  bottom: 34px;
  color: #16a34a;
}

.tm-wc-redesign .tm-wc-code-bubble-4 {
right: 8px;
  bottom: 22px;
  color: #16a34a;
}

.tm-wc-redesign .tm-wc-code-line {
position: absolute;
  height: 2px;
  background: rgba(37, 99, 235, 0.16);
  transform-origin: left center;
}

.tm-wc-redesign .tm-wc-code-line-1 {
left: 112px;
  top: 56px;
  width: 64px;
  transform: rotate(42deg);
}

.tm-wc-redesign .tm-wc-code-line-2 {
left: 52px;
  top: 120px;
  width: 64px;
  transform: rotate(-30deg);
}

.tm-wc-redesign .tm-wc-code-line-3 {
left: 154px;
  top: 132px;
  width: 56px;
  transform: rotate(-34deg);
}

.tm-wc-redesign .tm-wc-final-facts {
margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid rgba(15, 23, 42, 0.10);
}

@media (max-width: 980px) {
.tm-wc-redesign .tm-wc-final-left {
padding-left: 0;
    min-height: auto;
}

.tm-wc-redesign .tm-wc-code-visual {
display: none;
}

.tm-wc-redesign .tm-wc-final-left h1,
.tm-wc-redesign .tm-wc-final-left > p {
max-width: 100%;
}
}

.tm-wc-redesign .tm-wc-final-hero {
display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 42px;
  align-items: start;
}

.tm-wc-redesign .tm-wc-final-left {
position: relative;
  padding-left: 290px;
  min-width: 0;
}

.tm-wc-redesign .tm-wc-final-status-card {
position: relative;
  z-index: 5;
}

.tm-wc-redesign .tm-wc-final-left h1 {
position: relative;
  z-index: 3;
  max-width: 540px;
  margin-bottom: 24px;
}

.tm-wc-redesign .tm-wc-final-left > p {
position: relative;
  z-index: 3;
  max-width: 520px;
}

.tm-wc-redesign .tm-wc-final-status {
position: relative;
  z-index: 3;
  display: inline-flex;
  margin-bottom: 24px;
}

.tm-wc-redesign .tm-wc-checked-url {
position: relative;
  z-index: 3;
  margin-top: 28px;
}

.tm-wc-redesign .tm-wc-code-visual {
position: absolute;
  left: 0;
  top: 74px;
  width: 240px;
  height: 220px;
  z-index: 1;
}

.tm-wc-redesign .tm-wc-code-laptop {
position: absolute;
  left: 44px;
  bottom: 34px;
  width: 152px;
}

.tm-wc-redesign .tm-wc-code-laptop-screen {
position: relative;
  height: 102px;
  border-radius: 16px 16px 8px 8px;
  background: #ffffff;
  border: 8px solid #334155;
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.16);
}

.tm-wc-redesign .tm-wc-code-laptop-screen span {
position: absolute;
  border-radius: 6px;
  background: #eaf0f8;
}

.tm-wc-redesign .tm-wc-code-laptop-screen span:nth-child(1) {
left: 18px;
  top: 18px;
  width: 32px;
  height: 24px;
}

.tm-wc-redesign .tm-wc-code-laptop-screen span:nth-child(2) {
right: 18px;
  top: 18px;
  width: 32px;
  height: 24px;
}

.tm-wc-redesign .tm-wc-code-laptop-screen span:nth-child(3) {
left: 18px;
  bottom: 16px;
  width: 84px;
  height: 18px;
}

.tm-wc-redesign .tm-wc-code-laptop-screen strong {
position: absolute;
  left: 50%;
  top: 50%;
  width: 56px;
  height: 56px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #16a34a;
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(22, 163, 74, 0.30);
}

.tm-wc-redesign .tm-wc-code-laptop-screen strong svg {
width: 28px;
  height: 28px;
}

.tm-wc-redesign .tm-wc-code-laptop-base {
width: 176px;
  height: 14px;
  margin-left: -12px;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(to bottom, #cbd5e1, #94a3b8);
}

.tm-wc-redesign .tm-wc-code-bubble {
position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.10);
}

.tm-wc-redesign .tm-wc-code-bubble svg {
width: 24px;
  height: 24px;
}

.tm-wc-redesign .tm-wc-code-bubble-1 {
left: 88px;
  top: 0;
  color: #2563eb;
}

.tm-wc-redesign .tm-wc-code-bubble-2 {
right: 0;
  top: 58px;
  color: #f59e0b;
}

.tm-wc-redesign .tm-wc-code-bubble-3 {
left: 0;
  bottom: 34px;
  color: #16a34a;
}

.tm-wc-redesign .tm-wc-code-bubble-4 {
right: 8px;
  bottom: 22px;
  color: #16a34a;
}

.tm-wc-redesign .tm-wc-code-line {
position: absolute;
  height: 2px;
  background: rgba(37, 99, 235, 0.16);
  transform-origin: left center;
}

.tm-wc-redesign .tm-wc-code-line-1 {
left: 112px;
  top: 56px;
  width: 64px;
  transform: rotate(42deg);
}

.tm-wc-redesign .tm-wc-code-line-2 {
left: 52px;
  top: 120px;
  width: 64px;
  transform: rotate(-30deg);
}

.tm-wc-redesign .tm-wc-code-line-3 {
left: 154px;
  top: 132px;
  width: 56px;
  transform: rotate(-34deg);
}

.tm-wc-redesign .tm-wc-final-facts {
margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(15, 23, 42, 0.10);
}

@media (max-width: 1100px) {
.tm-wc-redesign .tm-wc-final-hero {
grid-template-columns: 1fr;
}

.tm-wc-redesign .tm-wc-final-left {
padding-left: 0;
}

.tm-wc-redesign .tm-wc-code-visual {
display: none;
}

.tm-wc-redesign .tm-wc-final-left h1,
.tm-wc-redesign .tm-wc-final-left > p {
max-width: 100%;
}
}

/* =========================================================
   WEBSITE-CHECK REPORT FIX 2026-05-15
   Nur Report-Shell + sauberer Hero. Keine globalen Overrides.
========================================================= */


.tm-wc-redesign .tm-action-report {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.tm-wc-redesign .tm-action-report > section,
.tm-wc-redesign .tm-action-report > div {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Hero */

.tm-wc-redesign .tm-wc-clean-hero {
  box-sizing: border-box;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 46px;
  align-items: stretch;
  padding: 48px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 42%, rgba(37, 99, 235, 0.06), transparent 30%),
    #ffffff;
  box-shadow:
    0 34px 80px rgba(15, 23, 42, 0.12),
    inset 0 0 0 1px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.tm-wc-redesign .tm-wc-clean-hero * {
  box-sizing: border-box;
}

.tm-wc-redesign .tm-wc-clean-left {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.tm-wc-redesign .tm-wc-clean-status,
.tm-wc-redesign .tm-wc-clean-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 30px;
  color: #0f172a;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.tm-wc-redesign .tm-wc-clean-status::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 999px;
  background: #22c55e;
}

.tm-wc-redesign .tm-wc-clean-content {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  min-height: 330px;
}

.tm-wc-redesign .tm-wc-clean-bg {
  display: block;
  width: 230px;
  max-width: 230px;
  height: auto;
  opacity: 0.62;
  pointer-events: none;
}

.tm-wc-redesign .tm-wc-clean-text {
  min-width: 0;
}

.tm-wc-redesign .tm-wc-clean-text h1 {
  max-width: 380px;
  margin: 0;
  color: #080d1d;
  font-size: clamp(3.25rem, 3.5vw, 4.7rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.tm-wc-redesign .tm-wc-clean-text p {
  max-width: 390px;
  margin: 24px 0 0;
  color: #263449;
  font-size: 1.04rem;
  line-height: 1.62;
}

.tm-wc-redesign .tm-wc-clean-url {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  gap: 10px;
  margin-top: 24px;
  padding: 11px 16px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.tm-wc-redesign .tm-wc-clean-url span {
  color: #64748b;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.tm-wc-redesign .tm-wc-clean-url strong {
  min-width: 0;
  overflow: hidden;
  color: #0f172a;
  font-size: 0.96rem;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tm-wc-redesign .tm-wc-clean-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: auto;
  padding-top: 30px;
  border-top: 1px solid rgba(15, 23, 42, 0.10);
}

.tm-wc-redesign .tm-wc-clean-facts div {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 3px 12px;
  align-items: center;
  min-width: 0;
}

.tm-wc-redesign .tm-wc-clean-facts i {
  grid-row: span 2;
  display: block;
  width: 24px;
  height: 24px;
  color: #0f172a;
}

.tm-wc-redesign .tm-wc-clean-facts svg {
  display: block;
  width: 24px;
  height: 24px;
}

.tm-wc-redesign .tm-wc-clean-facts strong {
  min-width: 0;
  color: #0f172a;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.2;
}

.tm-wc-redesign .tm-wc-clean-facts span {
  min-width: 0;
  color: #64748b;
  font-size: 0.84rem;
  line-height: 1.35;
}

/* Ampel-Karte */

.tm-wc-redesign .tm-wc-clean-ampel {
  min-width: 0;
  width: 100%;
  padding: 38px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.10);
  overflow: hidden;
}

.tm-wc-redesign .tm-wc-clean-ampel-main {
  display: grid;
  grid-template-columns: 122px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
}

.tm-wc-redesign .tm-wc-clean-ring {
  width: 116px;
  height: 116px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: conic-gradient(#f2a91f 0 var(--tm-wc-ring), #eef2f7 var(--tm-wc-ring) 100%);
}

.tm-wc-redesign .tm-wc-clean-ring span {
  width: 68px;
  height: 68px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #fff8e8;
  color: #0f172a;
  box-shadow: inset 0 0 0 12px #ffffff;
}

.tm-wc-redesign .tm-wc-clean-ring svg {
  display: block;
  width: 30px;
  height: 30px;
}

.tm-wc-redesign .tm-wc-clean-ampel h2 {
  margin: 0;
  color: #e9a21a;
  font-size: clamp(1.85rem, 2vw, 2.55rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.tm-wc-redesign .tm-wc-clean-ampel p {
  margin: 18px 0 0;
  color: #263449;
  font-size: 0.98rem;
  line-height: 1.58;
}

.tm-wc-redesign .tm-wc-clean-ampel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 13px 18px;
  border-radius: 12px;
  background: #050816;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.tm-wc-redesign .tm-wc-clean-ampel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid rgba(15, 23, 42, 0.10);
}

.tm-wc-redesign .tm-wc-clean-ampel-grid div {
  min-width: 0;
}

.tm-wc-redesign .tm-wc-clean-ampel-grid i {
  display: block;
  width: 24px;
  height: 24px;
  margin-bottom: 10px;
  color: #0f172a;
}

.tm-wc-redesign .tm-wc-clean-ampel-grid svg {
  display: block;
  width: 24px;
  height: 24px;
}

.tm-wc-redesign .tm-wc-clean-ampel-grid span {
  display: block;
  overflow: hidden;
  color: #64748b;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.tm-wc-redesign .tm-wc-clean-ampel-grid strong {
  display: block;
  margin-top: 6px;
  color: #16a34a;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.2;
}

.tm-wc-redesign .tm-wc-clean-ampel-grid .is-warning {
  color: #d97706;
}

@media (max-width: 1120px) {
  .tm-wc-redesign .tm-wc-clean-hero {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 760px) {
  

  .tm-wc-redesign .tm-wc-clean-hero {
    padding: 28px;
    border-radius: 26px;
  }

  .tm-wc-redesign .tm-wc-clean-content,
  .tm-wc-redesign .tm-wc-clean-ampel-main,
  .tm-wc-redesign .tm-wc-clean-facts,
  .tm-wc-redesign .tm-wc-clean-ampel-grid {
    grid-template-columns: 1fr;
  }

  .tm-wc-redesign .tm-wc-clean-bg {
    width: 210px;
    max-width: 210px;
  }

  .tm-wc-redesign .tm-wc-clean-text h1 {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }
}



/* =========================
   Website-Check Ergebnis-Seite
   Bereinigter Stand 15.05.2026
========================= */

.tm-wc-redesign .tm-wc-open-page {
  width: 100%;
  overflow: hidden;
  padding: 0;
  background: #f4f6fa;
}



.tm-wc-redesign .tm-action-report {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  display: block;
}

/* Hero */

.tm-wc-redesign .tm-check-result-hero-v2 {
  width: 100%;
  padding: 96px 24px 72px;
  background:
    radial-gradient(circle at 78% 14%, rgba(37, 99, 235, 0.16), transparent 26%),
    linear-gradient(180deg, #f4f7fc 0%, #ffffff 76%);
}

.tm-wc-redesign .tm-check-result-hero-v2-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 64px;
  align-items: center;
}

.tm-wc-redesign .tm-check-result-main-v2 {
  min-width: 0;
}

.tm-wc-redesign .tm-check-result-status-v2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #0f172a;
}

.tm-wc-redesign .tm-check-result-status-v2::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #22c55e;
}

.tm-wc-redesign .tm-check-result-copy-v2 {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.tm-wc-redesign .tm-check-result-visual-v2 {
  min-width: 0;
}

.tm-wc-redesign .tm-check-result-visual-v2 img {
  width: 190px;
  max-width: 100%;
  height: auto;
  display: block;
  opacity: 0.52;
}

.tm-wc-redesign .tm-check-result-text-v2 {
  min-width: 0;
}

.tm-wc-redesign .tm-check-result-text-v2 h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(3.4rem, 4.25vw, 5.35rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
  font-weight: 760;
  color: #080b18;
}

.tm-wc-redesign .tm-check-result-text-v2 p {
  max-width: 510px;
  margin: 24px 0 0;
  font-size: 1rem;
  line-height: 1.62;
  color: #334155;
}

.tm-wc-redesign .tm-check-result-url-v2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  margin-top: 24px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.tm-wc-redesign .tm-check-result-url-v2 span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
}

.tm-wc-redesign .tm-check-result-url-v2 strong {
  min-width: 0;
  font-size: 0.9rem;
  color: #0f172a;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tm-wc-redesign .tm-check-result-facts-v2 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid rgba(15, 23, 42, 0.10);
}

.tm-wc-redesign .tm-check-result-facts-v2 strong {
  display: block;
  font-size: 0.92rem;
  line-height: 1.2;
  color: #0f172a;
}

.tm-wc-redesign .tm-check-result-facts-v2 span {
  display: block;
  margin-top: 5px;
  font-size: 0.82rem;
  line-height: 1.35;
  color: #64748b;
}

/* Ampel */

.tm-wc-redesign .tm-check-result-ampel-v2 {
  width: 340px;
  max-width: 100%;
  padding: 40px 32px 28px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.10);
  overflow: hidden;
}

.tm-wc-redesign .tm-check-result-ampel-label-v2 {
  display: block;
  margin-bottom: 26px;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0f172a;
}

.tm-wc-redesign .tm-check-result-ring-v2 {
  width: 92px;
  height: 92px;
  margin-bottom: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(#f2b233 var(--tm-check-ring), #eef2f7 0);
}

.tm-wc-redesign .tm-check-result-ring-v2 span {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ffffff;
  color: #0f172a;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.06);
}

.tm-wc-redesign .tm-check-result-ring-v2 svg {
  width: 25px;
  height: 25px;
}

.tm-wc-redesign .tm-check-result-ampel-v2 h2 {
  max-width: 270px;
  margin: 0;
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 760;
  text-transform: uppercase;
  color: #e6a126;
}

.tm-wc-redesign .tm-check-result-ampel-v2 p {
  margin: 18px 0 0;
  font-size: 0.94rem;
  line-height: 1.58;
  color: #334155;
}

.tm-wc-redesign .tm-check-result-ampel-v2 a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 13px 18px;
  border-radius: 12px;
  background: #080b18;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.tm-wc-redesign .tm-check-result-mini-v2 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(15, 23, 42, 0.10);
}

.tm-wc-redesign .tm-check-result-mini-v2 span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #64748b;
}

.tm-wc-redesign .tm-check-result-mini-v2 strong {
  display: block;
  margin-top: 6px;
  font-size: 0.76rem;
}

.tm-wc-redesign .tm-check-result-mini-v2 .is-good {
  color: #16a34a;
}

.tm-wc-redesign .tm-check-result-mini-v2 .is-warning {
  color: #d97706;
}

/* Untere Report-Bereiche: sauber begrenzen */

.tm-wc-redesign .tm-wc-final-personal,
.tm-wc-redesign .tm-wc-report-card,
.tm-wc-redesign .tm-wc-insights-grid,
.tm-wc-redesign .tm-wc-care-section,
.tm-wc-redesign .tm-wc-trust-section,
.tm-wc-redesign .tm-wc-details-section,
.tm-wc-redesign .tm-wc-bottom-cta {
  width: min(1180px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

.tm-wc-redesign .tm-wc-final-personal {
  margin-top: 0;
}

.tm-wc-redesign .tm-wc-report-section,
.tm-wc-redesign .tm-wc-insights-section,
.tm-wc-redesign .tm-wc-care-section,
.tm-wc-redesign .tm-wc-trust-section,
.tm-wc-redesign .tm-wc-details-section {
  margin-top: 78px;
}

.tm-wc-redesign .tm-wc-bottom-cta {
  margin-top: 78px;
  margin-bottom: 0;
}

/* alte Hero-Klassen aus früheren Versuchen neutralisieren, falls noch HTML-Caches existieren */
.tm-wc-redesign .tm-wc-clean-hero {
  display: none;
}

@media (max-width: 1080px) {
  .tm-wc-redesign .tm-check-result-hero-v2-inner {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 44px;
  }

  .tm-wc-redesign .tm-check-result-copy-v2 {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 34px;
  }

  .tm-wc-redesign .tm-check-result-visual-v2 img {
    width: 150px;
  }
}

@media (max-width: 860px) {
  .tm-wc-redesign .tm-check-result-hero-v2 {
    padding: 72px 16px 44px;
  }

  .tm-wc-redesign .tm-check-result-hero-v2-inner {
    width: min(680px, 100%);
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .tm-wc-redesign .tm-check-result-copy-v2 {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .tm-wc-redesign .tm-check-result-visual-v2 {
    display: none;
  }

  .tm-wc-redesign .tm-check-result-text-v2 h1 {
    max-width: 100%;
    font-size: clamp(3rem, 12vw, 4.6rem);
  }

  .tm-wc-redesign .tm-check-result-text-v2 p {
    max-width: 100%;
  }

  .tm-wc-redesign .tm-check-result-facts-v2 {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tm-wc-redesign .tm-check-result-ampel-v2 {
    width: 100%;
  }

  .tm-wc-redesign .tm-wc-final-personal,
  .tm-wc-redesign .tm-wc-report-card,
  .tm-wc-redesign .tm-wc-insights-grid,
  .tm-wc-redesign .tm-wc-care-section,
  .tm-wc-redesign .tm-wc-trust-section,
  .tm-wc-redesign .tm-wc-details-section,
  .tm-wc-redesign .tm-wc-bottom-cta {
    width: calc(100% - 32px);
  }
}


.tm-check-result-hero-v2 {
  padding: 90px 0 70px;
}

.tm-check-result-hero-v2 h1 {
  font-size: clamp(4.2rem, 6vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  max-width: 7ch;
}

.tm-wc-report-section,
.tm-wc-insights-section,
.tm-wc-care-section,
.tm-wc-trust-section,
.tm-wc-details-section,
.tm-wc-bottom-cta {
  padding: 90px 0;
}

.tm-check-result-hero-v2 {
  padding-top: 70px !important;
  padding-bottom: 50px !important;
}

.tm-check-result-hero-v2 .tm-check-result-inner {
  align-items: center !important;
  gap: 80px !important;
}

.tm-check-result-hero-v2 h1 {
  font-size: clamp(72px, 5vw, 110px) !important;
  line-height: 0.88 !important;
  letter-spacing: -0.08em !important;
  max-width: 6.2ch !important;
  margin-bottom: 28px !important;
}

.tm-check-result-hero-v2 p {
  max-width: 520px !important;
  font-size: 17px !important;
  line-height: 1.7 !important;
}

.tm-check-result-hero-v2 .tm-check-result-card {
  max-width: 340px !important;
  transform: translateY(-10px);
}

.tm-wc-report-section,
.tm-wc-insights-section,
.tm-wc-care-section,
.tm-wc-trust-section,
.tm-wc-details-section,
.tm-wc-bottom-cta {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.tm-check-result-hero-v2 .tm-check-result-inner {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 320px !important;
  align-items: center !important;
  gap: 100px !important;
}

.tm-check-result-hero-v2 .tm-check-result-content {
  max-width: 760px !important;
}

.tm-check-result-hero-v2 h1 {
  font-size: clamp(82px, 7vw, 118px) !important;
  line-height: 0.9 !important;
  letter-spacing: -0.085em !important;
  max-width: 8.5ch !important;
  margin-bottom: 34px !important;
}

.tm-check-result-hero-v2 p {
  max-width: 560px !important;
  font-size: 17px !important;
  line-height: 1.75 !important;
}

.tm-check-result-hero-v2 .tm-check-result-card {
  width: 100% !important;
  max-width: 320px !important;
}

/* Website-Check: Hero V2 beruhigen */

.tm-wc-redesign .tm-check-result-hero-v2 {
  padding: 72px 0 58px !important;
}

.tm-wc-redesign .tm-check-result-hero-v2-inner {
  width: min(1120px, calc(100% - 80px)) !important;
  margin-inline: auto !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 300px !important;
  gap: 64px !important;
  align-items: center !important;
}

.tm-wc-redesign .tm-check-result-copy-v2 {
  display: grid !important;
  grid-template-columns: 130px minmax(0, 1fr) !important;
  gap: 38px !important;
  align-items: center !important;
}

.tm-wc-redesign .tm-check-result-text-v2 h1 {
  max-width: 620px !important;
  font-size: clamp(48px, 4.2vw, 72px) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.055em !important;
  font-weight: 760 !important;
}

.tm-wc-redesign .tm-check-result-text-v2 p {
  max-width: 520px !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
}

.tm-wc-redesign .tm-check-result-visual-v2 img {
  width: 130px !important;
  opacity: 0.45 !important;
}

.tm-wc-redesign .tm-check-result-ampel-v2 {
  width: 300px !important;
  padding: 34px 28px 26px !important;
}

.tm-wc-redesign .tm-check-result-ampel-v2 h2 {
  font-size: 30px !important;
  line-height: 1 !important;
  letter-spacing: -0.04em !important;
}

.tm-wc-redesign .tm-check-result-ring-v2 {
  width: 78px !important;
  height: 78px !important;
}

.tm-wc-redesign .tm-check-result-ring-v2 span {
  width: 48px !important;
  height: 48px !important;
}

.tm-wc-redesign .tm-wc-report-card,
.tm-wc-redesign .tm-wc-insights-grid,
.tm-wc-redesign .tm-wc-trust-section,
.tm-wc-redesign .tm-wc-details-section {
  width: min(1120px, calc(100% - 80px)) !important;
  margin-inline: auto !important;
}

.tm-wc-redesign .tm-wc-care-section,
.tm-wc-redesign .tm-wc-bottom-cta {
  width: min(1240px, calc(100% - 80px)) !important;
  margin-inline: auto !important;
}

@media (max-width: 980px) {
  .tm-wc-redesign .tm-check-result-hero-v2-inner,
  .tm-wc-redesign .tm-wc-report-card,
  .tm-wc-redesign .tm-wc-insights-grid,
  .tm-wc-redesign .tm-wc-trust-section,
  .tm-wc-redesign .tm-wc-details-section,
  .tm-wc-redesign .tm-wc-care-section,
  .tm-wc-redesign .tm-wc-bottom-cta {
    width: calc(100% - 32px) !important;
  }

  .tm-wc-redesign .tm-check-result-hero-v2-inner,
  .tm-wc-redesign .tm-check-result-copy-v2 {
    grid-template-columns: 1fr !important;
  }

  .tm-wc-redesign .tm-check-result-visual-v2 {
    display: none !important;
  }

  .tm-wc-redesign .tm-check-result-ampel-v2 {
    width: 100% !important;
  }
}

/* Website-Check: Feinschliff nach Hero-Fix */

.tm-wc-redesign .tm-wc-final-personal {
  width: min(1120px, calc(100% - 80px)) !important;
  margin: 0 auto !important;
  border-radius: 0 !important;
}

.tm-wc-redesign .tm-wc-report-section {
  padding-top: 96px !important;
  padding-bottom: 86px !important;
}

.tm-wc-redesign .tm-wc-insights-section {
  padding-top: 76px !important;
  padding-bottom: 92px !important;
}

.tm-wc-redesign .tm-wc-section-kicker {
  width: min(1120px, calc(100% - 80px)) !important;
  margin-inline: auto !important;
  display: block !important;
}

.tm-wc-redesign .tm-wc-care-section {
  width: min(1120px, calc(100% - 80px)) !important;
  margin-inline: auto !important;
  padding: 76px 0 !important;
}

.tm-wc-redesign .tm-wc-bottom-cta {
  width: min(1120px, calc(100% - 80px)) !important;
  margin: 82px auto 0 !important;
}

.tm-wc-redesign .tm-check-result-hero-v2-inner {
  transform: translateX(-18px);
}

.tm-wc-redesign .tm-check-result-text-v2 h1 {
  max-width: 680px !important;
}

.tm-wc-redesign .tm-check-result-ampel-v2 {
  transform: translateX(10px);
}

@media (max-width: 980px) {
  .tm-wc-redesign .tm-wc-final-personal,
  .tm-wc-redesign .tm-wc-section-kicker,
  .tm-wc-redesign .tm-wc-care-section,
  .tm-wc-redesign .tm-wc-bottom-cta {
    width: calc(100% - 32px) !important;
  }

  .tm-wc-redesign .tm-check-result-hero-v2-inner,
  .tm-wc-redesign .tm-check-result-ampel-v2 {
    transform: none;
  }
}

/* Website-Check: wechselnde Section-Hintergründe */

.tm-wc-redesign {
  background: #f4f6fa !important;
}

.tm-wc-redesign .tm-wc-open-page {
  background: transparent !important;
}

/* Hero hell */
.tm-wc-redesign .tm-check-result-hero-v2 {
  background:
    radial-gradient(circle at 72% 0%, rgba(37, 99, 235, 0.14), transparent 34%),
    linear-gradient(180deg, #f7faff 0%, #ffffff 58%, #f4f6fa 100%) !important;
}

/* Persönliche Einschätzung hell */
.tm-wc-redesign .tm-wc-final-personal {
  background: #ffffff !important;
}

/* Report-Section hell mit leichtem Verlauf */
.tm-wc-redesign .tm-wc-report-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.06), transparent 32%),
    #f4f6fa !important;
}

/* Erkenntnisse ruhig hell */
.tm-wc-redesign .tm-wc-insights-section {
  background: #f4f6fa !important;
}

/* Wartung wichtig dunkel wie Startseite */
.tm-wc-redesign .tm-wc-care-section {
  width: 100% !important;
  max-width: none !important;
  padding: 110px 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
  background:
    radial-gradient(circle at 68% 18%, rgba(37, 99, 235, 0.32), transparent 34%),
    linear-gradient(135deg, #050914 0%, #08111f 48%, #020617 100%) !important;
  color: #ffffff !important;
}

.tm-wc-redesign .tm-wc-care-section > * {
  width: min(1120px, calc(100% - 80px)) !important;
  margin-inline: auto !important;
}

.tm-wc-redesign .tm-wc-care-section h2,
.tm-wc-redesign .tm-wc-care-section h3,
.tm-wc-redesign .tm-wc-care-section strong {
  color: #ffffff !important;
}

.tm-wc-redesign .tm-wc-care-section p,
.tm-wc-redesign .tm-wc-care-section span,
.tm-wc-redesign .tm-wc-care-section li {
  color: rgba(255, 255, 255, 0.72) !important;
}

.tm-wc-redesign .tm-wc-care-box,
.tm-wc-redesign .tm-wc-care-benefits div {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
}

/* Trust wieder hell */
.tm-wc-redesign .tm-wc-trust-section {
  background: #f4f6fa !important;
}

/* Details weiß */
.tm-wc-redesign .tm-wc-details-section {
  background: #ffffff !important;
}

/* CTA dunkel, aber als eigene Section */
.tm-wc-redesign .tm-wc-bottom-cta {
  margin-top: 0 !important;
}

/* Footer sauber absetzen */
.site-footer {
  background: #f4f6fa;
}

/* Report-Section vollflächig weiß */

.tm-wc-redesign .tm-wc-report-section {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 110px 0 !important;
  background: #ffffff !important;
  overflow: hidden;
}

/* leichter Glow im Hintergrund */
.tm-wc-redesign .tm-wc-report-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.08), transparent 30%);
  pointer-events: none;
}

/* Inhalt wieder normal begrenzen */
.tm-wc-redesign .tm-wc-report-card {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 80px)) !important;
  margin-inline: auto !important;
}

/* =========================================================
   WEBSITE-CHECK
   SECTION FLOW / HINTERGRUND-SYSTEM
========================================================= */

/* Basis */

.tm-wc-redesign {
  background: #f3f5fa !important;
}


/* =========================================================
   HERO
========================================================= */

.tm-wc-redesign .tm-check-result-hero-v2 {
  position: relative;
  width: 100%;
  padding: 90px 0 110px;
  background:
    radial-gradient(circle at 72% 0%, rgba(37, 99, 235, 0.14), transparent 34%),
    linear-gradient(180deg, #f7faff 0%, #ffffff 58%, #f3f5fa 100%) !important;
}


/* =========================================================
   PERSÖNLICHE EINSCHÄTZUNG
========================================================= */

.tm-wc-redesign .tm-wc-final-personal {
  position: relative;
  width: 100%;
  max-width: none !important;
  padding: 52px 0 !important;
  background: #ffffff !important;
  border-radius: 0 !important;
}

.tm-wc-redesign .tm-wc-final-personal > * {
  width: min(1120px, calc(100% - 80px)) !important;
  margin-inline: auto !important;
}


/* =========================================================
   REPORT
========================================================= */

.tm-wc-redesign .tm-wc-report-section {
  position: relative;
  width: 100%;
  max-width: none !important;
  padding: 110px 0 !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.08), transparent 28%),
    #f7f9fd !important;
}

.tm-wc-redesign .tm-wc-report-card {
  width: min(1120px, calc(100% - 80px)) !important;
  margin-inline: auto !important;
}


/* =========================================================
   INSIGHTS
========================================================= */

.tm-wc-redesign .tm-wc-insights-section {
  position: relative;
  width: 100%;
  max-width: none !important;
  padding: 100px 0 !important;
  background: #f3f5fa !important;
}

.tm-wc-redesign .tm-wc-insights-section > * {
  width: min(1120px, calc(100% - 80px)) !important;
  margin-inline: auto !important;
}


/* =========================================================
   CARE SECTION / DUNKEL
========================================================= */

.tm-wc-redesign .tm-wc-care-section {
  position: relative;
  width: 100%;
  max-width: none !important;
  margin: 0 !important;
  padding: 120px 0 !important;
  border-radius: 0 !important;
  overflow: hidden;

  background:
    radial-gradient(circle at 68% 18%, rgba(37, 99, 235, 0.34), transparent 34%),
    linear-gradient(135deg, #030712 0%, #081121 48%, #020617 100%) !important;

  color: #ffffff !important;
}

.tm-wc-redesign .tm-wc-care-section > * {
  width: min(1120px, calc(100% - 80px)) !important;
  margin-inline: auto !important;
}

.tm-wc-redesign .tm-wc-care-section h2,
.tm-wc-redesign .tm-wc-care-section h3,
.tm-wc-redesign .tm-wc-care-section strong {
  color: #ffffff !important;
}

.tm-wc-redesign .tm-wc-care-section p,
.tm-wc-redesign .tm-wc-care-section span,
.tm-wc-redesign .tm-wc-care-section li {
  color: rgba(255,255,255,0.72) !important;
}

.tm-wc-redesign .tm-wc-care-box,
.tm-wc-redesign .tm-wc-care-benefits div {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  backdrop-filter: blur(12px);
}


/* =========================================================
   TRUST
========================================================= */

.tm-wc-redesign .tm-wc-trust-section {
  position: relative;
  width: 100%;
  max-width: none !important;
  padding: 90px 0 !important;
  background: #f3f5fa !important;
}

.tm-wc-redesign .tm-wc-trust-section > * {
  width: min(1120px, calc(100% - 80px)) !important;
  margin-inline: auto !important;
}


/* =========================================================
   DETAILS
========================================================= */

.tm-wc-redesign .tm-wc-details-section {
  position: relative;
  width: 100%;
  max-width: none !important;
  padding: 100px 0 !important;
  background: #ffffff !important;
}

.tm-wc-redesign .tm-wc-details-section > * {
  width: min(1120px, calc(100% - 80px)) !important;
  margin-inline: auto !important;
}


/* =========================================================
   CTA
========================================================= */

.tm-wc-redesign .tm-wc-bottom-cta {
  position: relative;
  width: 100%;
  max-width: none !important;
  margin: 0 !important;
  padding: 110px 0 !important;
  border-radius: 0 !important;

  background:
    radial-gradient(circle at 50% 10%, rgba(37, 99, 235, 0.34), transparent 32%),
    linear-gradient(135deg, #020617 0%, #08152d 45%, #030712 100%) !important;
}

.tm-wc-redesign .tm-wc-bottom-cta > * {
  width: min(1120px, calc(100% - 80px)) !important;
  margin-inline: auto !important;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  background: #f3f5fa !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 980px) {

  .tm-wc-redesign .tm-wc-final-personal > *,
  .tm-wc-redesign .tm-wc-report-card,
  .tm-wc-redesign .tm-wc-insights-section > *,
  .tm-wc-redesign .tm-wc-care-section > *,
  .tm-wc-redesign .tm-wc-trust-section > *,
  .tm-wc-redesign .tm-wc-details-section > *,
  .tm-wc-redesign .tm-wc-bottom-cta > * {
    width: calc(100% - 32px) !important;
  }

  .tm-wc-redesign .tm-check-result-hero-v2 {
    padding: 70px 0 80px;
  }

  .tm-wc-redesign .tm-wc-report-section,
  .tm-wc-redesign .tm-wc-insights-section,
  .tm-wc-redesign .tm-wc-care-section,
  .tm-wc-redesign .tm-wc-trust-section,
  .tm-wc-redesign .tm-wc-details-section,
  .tm-wc-redesign .tm-wc-bottom-cta {
    padding: 70px 0 !important;
  }
}


/* =========================================================
WEBSITE CHECK LANDINGPAGE REDESIGN
========================================================= */

.tm-check-lp-hero,
.tm-check-lp-personal,
.tm-check-lp-report,
.tm-check-lp-insights,
.tm-check-lp-dark,
.tm-check-lp-trust,
.tm-check-lp-final {
  width: 100%;
  position: relative;
}

.tm-check-lp-inner {
  width: min(1180px, calc(100vw - 48px));
  margin-inline: auto;
}

/* =========================================================
SECTION SPACING
========================================================= */

.tm-check-lp-hero {
  padding: 90px 0 70px;
  background:
    radial-gradient(circle at top right, rgba(37,99,235,.10), transparent 30%),
    #f8fafc;
}

.tm-check-lp-personal {
  padding: 70px 0;
  background: #ffffff;
}

.tm-check-lp-report {
  padding: 90px 0;
  background: #f8fafc;
}

.tm-check-lp-insights {
  padding: 90px 0;
  background: #ffffff;
}

.tm-check-lp-dark {
  padding: 110px 0;
  background:
    radial-gradient(circle at top left, rgba(37,99,235,.16), transparent 35%),
    #0f172a;
  color: #ffffff;
}

.tm-check-lp-trust {
  padding: 70px 0;
  background: #ffffff;
}

.tm-check-lp-final {
  padding: 110px 0;
  background:
    linear-gradient(180deg, #f8fafc 0%, #eef4ff 100%);
}

/* =========================================================
TYPO
========================================================= */

.tm-check-lp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(37,99,235,.08);
  color: #2563eb;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tm-check-lp-hero h1,
.tm-check-lp-dark h2,
.tm-check-lp-final h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 700;
}

.tm-check-lp-personal h2,
.tm-check-lp-report h2,
.tm-check-lp-insights h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.tm-check-lp-hero p,
.tm-check-lp-dark p,
.tm-check-lp-final p,
.tm-check-lp-personal p,
.tm-check-lp-report p,
.tm-check-lp-insights p {
  font-size: 1.08rem;
  line-height: 1.8;
  color: #475569;
}

.tm-check-lp-dark p {
  color: rgba(255,255,255,.74);
}

/* =========================================================
HERO
========================================================= */

.tm-check-lp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 360px;
  gap: 48px;
  align-items: start;
}

.tm-check-lp-hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.tm-check-lp-url {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
}

.tm-check-lp-url span {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #64748b;
}

.tm-check-lp-url strong {
  font-size: 1.2rem;
  color: #0f172a;
}

.tm-check-lp-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 10px;
}

.tm-check-lp-facts div {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(15,23,42,.06);
  backdrop-filter: blur(12px);
}

.tm-check-lp-facts strong {
  display: block;
  margin-bottom: 6px;
  font-size: .95rem;
  color: #0f172a;
}

.tm-check-lp-facts span {
  font-size: .92rem;
  color: #64748b;
}

/* =========================================================
AMPEL
========================================================= */

.tm-check-lp-ampel {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 36px;
  border-radius: 32px;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 30px 70px rgba(15,23,42,.08);
}

.tm-check-lp-ampel-label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #64748b;
  font-weight: 700;
}

.tm-check-lp-ring {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  margin-inline: auto;
  background:
    conic-gradient(#2563eb 0%, #60a5fa 75%, #dbeafe 100%);
  display: grid;
  place-items: center;
}

.tm-check-lp-ring::before {
  content: "";
  width: 126px;
  height: 126px;
  border-radius: 50%;
  background: #ffffff;
  position: absolute;
}

.tm-check-lp-ring span {
  position: relative;
  z-index: 2;
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
}

.tm-check-lp-ampel h2 {
  margin: 0;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #0f172a;
}

.tm-check-lp-ampel p {
  margin: 0;
  text-align: center;
}

.tm-check-lp-ampel a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  border-radius: 18px;
  background: #2563eb;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: .25s ease;
}

.tm-check-lp-ampel a:hover {
  transform: translateY(-2px);
  background: #1d4ed8;
}

/* =========================================================
PERSONAL
========================================================= */

.tm-check-lp-personal-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.tm-check-lp-personal-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.tm-check-lp-personal-card strong {
  display: block;
  margin-top: 24px;
  font-size: 1rem;
  color: #0f172a;
}

.tm-check-lp-personal-card span {
  display: block;
  margin-top: 6px;
  color: #64748b;
}

/* =========================================================
REPORT
========================================================= */

.tm-check-lp-report-box {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 360px;
  gap: 48px;
  padding: 56px;
  border-radius: 40px;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,.08);
}

.tm-check-lp-report form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.tm-check-lp-report input {
  min-height: 60px;
  padding: 0 22px;
  border-radius: 18px;
  border: 1px solid #dbe2ea;
  background: #ffffff;
  font-size: 1rem;
}

.tm-check-lp-report button {
  min-height: 60px;
  border: none;
  border-radius: 18px;
  background: #2563eb;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.tm-check-lp-report-right ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.tm-check-lp-report-right li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(15,23,42,.08);
}

/* =========================================================
INSIGHTS
========================================================= */

.tm-check-lp-insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 42px;
}

.tm-check-lp-insight-grid article {
  padding: 38px;
  border-radius: 32px;
  background: #f8fafc;
}

.tm-check-lp-insight-grid h3 {
  margin: 0 0 18px;
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #0f172a;
}

/* =========================================================
DARK SECTION
========================================================= */

.tm-check-lp-dark-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 60px;
  align-items: center;
}

.tm-check-lp-dark-right {
  padding: 40px;
  border-radius: 32px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}

.tm-check-lp-dark-right h3 {
  margin: 0 0 24px;
  font-size: 1.5rem;
}

.tm-check-lp-dark-right ul {
  margin: 0;
  padding-left: 20px;
}

.tm-check-lp-dark-right li {
  margin-bottom: 12px;
  color: rgba(255,255,255,.82);
}

.tm-check-lp-dark-right a {
  display: inline-flex;
  margin-top: 28px;
  color: #93c5fd;
  text-decoration: none;
  font-weight: 600;
}

/* =========================================================
TRUST
========================================================= */

.tm-check-lp-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.tm-check-lp-trust-grid article {
  padding: 42px;
  border-radius: 32px;
  background: #f8fafc;
}

.tm-check-lp-trust-grid strong {
  display: block;
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #0f172a;
}

.tm-check-lp-trust-grid span {
  display: block;
  margin-top: 12px;
  color: #475569;
}

/* =========================================================
FINAL CTA
========================================================= */

.tm-check-lp-final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: center;
}

.tm-check-lp-final a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 64px;
  width: 100%;
  border-radius: 22px;
  background: #2563eb;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media (max-width: 980px) {

  .tm-check-lp-hero-grid,
  .tm-check-lp-report-box,
  .tm-check-lp-dark-grid,
  .tm-check-lp-final-grid,
  .tm-check-lp-trust-grid,
  .tm-check-lp-insight-grid {
    grid-template-columns: 1fr;
  }

  .tm-check-lp-facts {
    grid-template-columns: 1fr;
  }

  .tm-check-lp-personal-card {
    grid-template-columns: 1fr;
  }

  .tm-check-lp-ampel {
    position: relative;
    top: 0;
  }

}

.tm-check-lp-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 70px;
  background: #f8fafc;
}

.tm-check-lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(37,99,235,.10), transparent 28%),
    radial-gradient(circle at top left, rgba(37,99,235,.06), transparent 24%);
  pointer-events: none;
  z-index: 0;
}

.tm-check-lp-hero .tm-check-lp-inner {
  position: relative;
  z-index: 2;
}

/* Website-Check Landingpage: alte Wrapper neutralisieren */



.tm-wc-redesign .tm-check-lp-hero {
  border-radius: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

.tm-wc-redesign .tm-check-lp-hero::before,
.tm-wc-redesign .tm-check-lp-hero::after {
  border-radius: 0 !important;
}

/* Abstand direkt unter dem Header entfernen */
.tm-wc-redesign .tm-wc-open-page {
  padding-top: 0 !important;
}

.tm-wc-redesign .tm-check-lp-hero {
  margin-top: 0 !important;
  padding-top: 72px !important;
}

/* Falls noch ein alter Wrapper Abstand setzt */
.tm-wc-redesign .tm-wc-open-inner,
.tm-wc-redesign .tm-action-report {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/***NEUER CODE **/

/* =========================
   NUR DIE FALSCHEN GRAUEN BALKEN ENTFERNEN
   ABSTÄNDE BLEIBEN ERHALTEN
========================= */

/* Die großen Zwischenflächen */
.tm-check-lp-personal,
.tm-check-lp-report,
.tm-check-lp-insights,
.tm-check-lp-trust,
.tm-check-lp-final {
  background: transparent !important;
}

/* ABER:
   Innenabstände bleiben bestehen */
.tm-check-lp-personal .tm-check-lp-inner,
.tm-check-lp-report .tm-check-lp-inner,
.tm-check-lp-insights .tm-check-lp-inner,
.tm-check-lp-trust .tm-check-lp-inner,
.tm-check-lp-final .tm-check-lp-inner {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Dark Section bleibt */
.tm-check-lp-dark {
  margin-top: 40px;
  margin-bottom: 40px;
}

/* =========================
   PERSÖNLICHE EINSCHÄTZUNG
   VISUELL VOM HERO TRENNEN
========================= */

.tm-check-lp-personal {
  position: relative;
  padding: 90px 0;
  background: #ffffff;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

/* optional etwas ruhiger */
.tm-check-lp-personal-card {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

/* mehr Luft */
.tm-check-lp-personal .tm-check-lp-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

/* =========================
   WEBSITE CHECK LANDINGPAGE
   Full-width Backgrounds, Content im unsichtbaren Container
========================= */

/* Alte äußere Container-Optik komplett neutralisieren */
.tm-wc-redesign .tm-wc-open-page,
.tm-wc-redesign .tm-wc-open-inner,
.tm-wc-redesign .tm-action-report {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

/* Grundfläche */
.tm-wc-redesign {
  background: #f4f6fa !important;
}

/* Unsichtbarer Inhaltscontainer */
.tm-check-lp-inner {
  width: min(1120px, calc(100vw - 48px)) !important;
  margin-inline: auto !important;
}

/* Alle Sections volle Breite */
.tm-check-lp-hero,
.tm-check-lp-personal,
.tm-check-lp-report,
.tm-check-lp-insights,
.tm-check-lp-dark,
.tm-check-lp-trust,
.tm-check-lp-final {
  width: 100% !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

/* HERO */
.tm-check-lp-hero {
  padding: 88px 0 86px !important;
  background:
    radial-gradient(circle at 78% 0%, rgba(37, 99, 235, 0.16), transparent 32%),
    linear-gradient(180deg, #f7faff 0%, #f4f6fa 100%) !important;
}

.tm-check-lp-hero-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 330px !important;
  gap: 64px !important;
  align-items: center !important;
}

.tm-check-lp-hero h1 {
  max-width: 720px !important;
  font-size: clamp(42px, 5.2vw, 76px) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.065em !important;
  font-weight: 750 !important;
}

.tm-check-lp-hero p {
  max-width: 620px !important;
}

.tm-check-lp-ampel {
  position: relative !important;
  top: auto !important;
  background: #ffffff !important;
  border-radius: 32px !important;
  border: 1px solid rgba(15, 23, 42, 0.07) !important;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.10) !important;
}

/* PERSÖNLICHE EINSCHÄTZUNG */
.tm-check-lp-personal {
  padding: 76px 0 !important;
  background: #ffffff !important;
}

.tm-check-lp-personal-card {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* REPORT ANFORDERN */
.tm-check-lp-report {
  padding: 92px 0 !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.07), transparent 28%),
    #f4f6fa !important;
}

.tm-check-lp-report-box {
  background: #ffffff !important;
  border-radius: 34px !important;
  border: 1px solid rgba(15, 23, 42, 0.07) !important;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06) !important;
}

/* ERKENNTNISSE */
.tm-check-lp-insights {
  padding: 92px 0 !important;
  background: #f4f6fa !important;
}

.tm-check-lp-insight-grid article {
  background: rgba(255, 255, 255, 0.82) !important;
  border: 1px solid rgba(15, 23, 42, 0.05) !important;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.04) !important;
}

/* DUNKLE WARTUNGSSECTION */
.tm-check-lp-dark {
  padding: 104px 0 !important;
  background:
    radial-gradient(circle at 68% 35%, rgba(37, 99, 235, 0.30), transparent 34%),
    linear-gradient(135deg, #050816 0%, #08142d 52%, #050816 100%) !important;
}

.tm-check-lp-dark-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 380px !important;
  gap: 72px !important;
  align-items: center !important;
}

.tm-check-lp-dark-right {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  border-radius: 28px !important;
  box-shadow: none !important;
}

/* TRUST */
.tm-check-lp-trust {
  padding: 86px 0 !important;
  background: #f4f6fa !important;
}

.tm-check-lp-trust-grid article {
  background: rgba(255, 255, 255, 0.82) !important;
  border: 1px solid rgba(15, 23, 42, 0.05) !important;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.04) !important;
}

/* FINAL CTA ALS BREITER ABSCHLUSS, ABER KEIN SEITEN-CONTAINER */
.tm-check-lp-final {
  padding: 98px 0 !important;
  background:
    radial-gradient(circle at 35% 0%, rgba(37, 99, 235, 0.14), transparent 32%),
    linear-gradient(180deg, #f4f6fa 0%, #eaf2ff 100%) !important;
}

.tm-check-lp-final-grid {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

/* Footer sauber anschließen */
.site-footer {
  margin-top: 0 !important;
}

/* Mobile */
@media (max-width: 900px) {
  .tm-check-lp-inner {
    width: min(100% - 32px, 1120px) !important;
  }

  .tm-check-lp-hero,
  .tm-check-lp-personal,
  .tm-check-lp-report,
  .tm-check-lp-insights,
  .tm-check-lp-dark,
  .tm-check-lp-trust,
  .tm-check-lp-final {
    padding: 72px 0 !important;
  }

  .tm-check-lp-hero-grid,
  .tm-check-lp-dark-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .tm-check-lp-hero h1 {
    font-size: clamp(38px, 12vw, 54px) !important;
  }
}


/* =========================
   WEBSITE CHECK UI POLISH
   Icons, Buttons, Cards, Details
========================= */

/* Buttons allgemein */
.tm-check-lp-ampel a,
.tm-check-lp-dark-right a,
.tm-check-lp-final a,
.tm-check-lp-report button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  min-height: 48px !important;
  padding: 0 22px !important;
  border-radius: 999px !important;
  background: #2563eb !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 0.92rem !important;
  text-decoration: none !important;
  border: 0 !important;
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.28) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease !important;
}

.tm-check-lp-ampel a:hover,
.tm-check-lp-dark-right a:hover,
.tm-check-lp-final a:hover,
.tm-check-lp-report button:hover {
  transform: translateY(-2px) !important;
  background: #1d4ed8 !important;
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.34) !important;
}

/* Kicker hochwertiger */
.tm-check-lp-kicker,
.tm-check-lp-ampel-label {
  display: inline-flex !important;
  width: fit-content !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 8px 14px !important;
  border-radius: 999px !important;
  background: rgba(37, 99, 235, 0.08) !important;
  color: #2563eb !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

/* kleine Statuspunkte */
.tm-check-lp-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
}

/* Facts mit Icon-Ersatz */
.tm-check-lp-facts div {
  position: relative !important;
  padding-left: 58px !important;
}

.tm-check-lp-facts div::before {
  content: "✓";
  position: absolute;
  left: 20px;
  top: 22px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(37, 99, 235, 0.10);
  color: #2563eb;
  font-weight: 800;
  font-size: 0.85rem;
}

.tm-check-lp-facts div:nth-child(2)::before {
  content: "⏱";
}

.tm-check-lp-facts div:nth-child(3)::before {
  content: "◎";
}

/* Ampel Card stärker */
.tm-check-lp-ampel {
  padding: 34px !important;
}

.tm-check-lp-ring {
  box-shadow:
    inset 0 0 0 10px rgba(255, 255, 255, 0.9),
    0 20px 46px rgba(37, 99, 235, 0.18) !important;
}

/* Report Formular Eingaben */
.tm-check-lp-report input {
  background: #ffffff !important;
  border: 1px solid rgba(15, 23, 42, 0.10) !important;
  box-shadow: inset 0 1px 0 rgba(15, 23, 42, 0.03) !important;
}

.tm-check-lp-report input:focus {
  outline: none !important;
  border-color: rgba(37, 99, 235, 0.45) !important;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10) !important;
}

/* Report Liste mit Häkchen */
.tm-check-lp-report-right li {
  position: relative !important;
  padding-left: 28px !important;
}

.tm-check-lp-report-right li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 14px;
  color: #22c55e;
  font-weight: 900;
}

/* Erkenntnis-Cards mit Icon */
.tm-check-lp-insight-grid article {
  position: relative !important;
  padding-top: 72px !important;
}

.tm-check-lp-insight-grid article::before {
  content: "✓";
  position: absolute;
  top: 30px;
  left: 32px;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
  font-weight: 900;
}

.tm-check-lp-insight-grid article:nth-child(2)::before {
  content: "!";
  background: rgba(245, 158, 11, 0.14);
  color: #d97706;
}

.tm-check-lp-insight-grid article:nth-child(3)::before {
  content: "↗";
  background: rgba(37, 99, 235, 0.10);
  color: #2563eb;
}

/* Dark Section Details */
.tm-check-lp-dark-right li {
  list-style: none !important;
  position: relative !important;
  padding-left: 26px !important;
}

.tm-check-lp-dark-right li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #60a5fa;
  font-weight: 900;
}

/* Trust Cards stärker */
.tm-check-lp-trust-grid article {
  min-height: 150px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

/* Final CTA Button rechts besser */
.tm-check-lp-final-grid {
  align-items: center !important;
}

.tm-check-lp-final a {
  width: fit-content !important;
  white-space: nowrap !important;
}

/* Mobile Feinschliff */
@media (max-width: 900px) {
  .tm-check-lp-final a {
    width: 100% !important;
  }

  .tm-check-lp-facts div {
    padding-left: 56px !important;
  }
}

/* =========================
   HERO FACTS ICONS
========================= */

.tm-check-lp-facts div{
  position:relative;
  padding-left:58px !important;
}

.tm-check-lp-facts div::before{
  position:absolute;
  left:20px;
  top:20px;
  width:28px;
  height:28px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:0.82rem;
  font-weight:800;
  background:rgba(37,99,235,0.08);
  color:#2563eb;
}

.tm-check-lp-facts div:nth-child(1)::before{
  content:"W";
}

.tm-check-lp-facts div:nth-child(2)::before{
  content:"◷";
}

.tm-check-lp-facts div:nth-child(3)::before{
  content:"◎";
}

/* =========================
   INSIGHT CARD ICONS
========================= */

.tm-check-lp-insight-grid article{
  position:relative;
  padding-top:84px !important;
}

.tm-check-lp-insight-grid article::before{
  position:absolute;
  top:28px;
  left:28px;
  width:42px;
  height:42px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1rem;
  font-weight:800;
}

/* Sicherheit */
.tm-check-lp-insight-grid article:nth-child(1)::before{
  content:"✓";
  background:rgba(34,197,94,0.12);
  color:#16a34a;
}

/* Updates */
.tm-check-lp-insight-grid article:nth-child(2)::before{
  content:"↻";
  background:rgba(245,158,11,0.14);
  color:#d97706;
}

/* Performance */
.tm-check-lp-insight-grid article:nth-child(3)::before{
  content:"↗";
  background:rgba(37,99,235,0.10);
  color:#2563eb;
}

.tm-check-lp-report-box {
  position: relative;
  overflow: visible;
}

.tm-check-lp-report-visual {
  position: absolute;

  left: -90px;
  top: 50%;

  transform: translateY(-50%) rotate(-8deg);

  pointer-events: none;
}

.tm-report-paper {
  width: 170px;

  padding: 22px 18px;

  border-radius: 28px;

  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);

  box-shadow:
    0 30px 70px rgba(15, 23, 42, 0.16),
    0 10px 24px rgba(15, 23, 42, 0.08);

  border: 1px solid rgba(255,255,255,0.8);

  backdrop-filter: blur(10px);
}

.tm-report-paper-top {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 24px;
}

.tm-report-dot {
  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: #2563eb;
}

.tm-report-line {
  flex: 1;
  height: 8px;

  border-radius: 999px;

  background: #e7eefc;
}

.tm-report-circle {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 92px;
  height: 92px;

  margin: 0 auto 22px;

  border-radius: 50%;

  background:
    radial-gradient(circle at center, #ffffff 58%, transparent 59%),
    conic-gradient(
      #2563eb 0deg,
      #2563eb 316deg,
      #dbeafe 316deg
    );

  box-shadow:
    inset 0 0 0 10px #ffffff;
}

.tm-report-circle span {
  font-size: 1.4rem;
  font-weight: 800;

  color: #0f172a;
}

.tm-report-url {
  margin-bottom: 22px;

  text-align: center;

  font-size: 0.88rem;
  font-weight: 700;

  color: #334155;
}

.tm-report-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tm-report-bars i {
  display: block;

  height: 10px;

  border-radius: 999px;

  background: #edf3ff;
}

.tm-report-bars i:nth-child(1) {
  width: 100%;
}

.tm-report-bars i:nth-child(2) {
  width: 76%;
}

.tm-report-bars i:nth-child(3) {
  width: 58%;
}

/* =========================
   REPORT SECTION
========================= */

.tm-check-lp-report-box {
  position: relative;

  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 72px;

  padding: 72px 72px 72px 120px;

  border-radius: 36px;

  background: rgba(255,255,255,0.78);

  backdrop-filter: blur(14px);

  box-shadow:
    0 30px 80px rgba(15,23,42,0.06),
    inset 0 1px 0 rgba(255,255,255,0.65);

  overflow: visible;
}

/* =========================
   REPORT VISUAL
========================= */

.tm-check-lp-report-visual {
  position: absolute;

  left: -42px;
  top: 50%;

  transform: translateY(-50%) rotate(-7deg);

  z-index: 5;

  pointer-events: none;
}

.tm-report-paper {
  width: 150px;

  padding: 18px 16px;

  border-radius: 28px;

  background:
    linear-gradient(180deg,
      rgba(255,255,255,0.98) 0%,
      rgba(247,250,255,0.94) 100%);

  border: 1px solid rgba(255,255,255,0.92);

  box-shadow:
    0 32px 70px rgba(15,23,42,0.16),
    0 8px 24px rgba(15,23,42,0.08);

  backdrop-filter: blur(12px);
}

.tm-report-paper-top {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 20px;
}

.tm-report-dot {
  width: 9px;
  height: 9px;

  border-radius: 50%;

  background: #2563eb;
}

.tm-report-line {
  flex: 1;
  height: 8px;

  border-radius: 999px;

  background: #e5edff;
}

.tm-report-circle {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 86px;
  height: 86px;

  margin: 0 auto 18px;

  border-radius: 50%;

  background:
    radial-gradient(circle at center,
      #ffffff 58%,
      transparent 59%),
    conic-gradient(
      #2563eb 0deg,
      #2563eb 316deg,
      #dbeafe 316deg
    );

  box-shadow:
    inset 0 0 0 8px #ffffff;
}

.tm-report-circle span {
  font-size: 1.3rem;
  font-weight: 800;

  color: #0f172a;
}

.tm-report-url {
  margin-bottom: 18px;

  text-align: center;

  font-size: 0.85rem;
  font-weight: 700;

  color: #334155;
}

.tm-report-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tm-report-bars i {
  display: block;

  height: 8px;

  border-radius: 999px;

  background: #edf3ff;
}

.tm-report-bars i:nth-child(1) {
  width: 100%;
}

.tm-report-bars i:nth-child(2) {
  width: 74%;
}

.tm-report-bars i:nth-child(3) {
  width: 58%;
}

/* =========================
   LEFT SIDE
========================= */

.tm-check-lp-report-left {
  position: relative;
  z-index: 2;
}

.tm-check-lp-report-left h2 {
  margin-bottom: 18px;
}

.tm-check-lp-report-left p {
  max-width: 560px;

  margin-bottom: 30px;

  color: #64748b;

  line-height: 1.8;
}

/* =========================
   FORM
========================= */

.tm-check-lp-report-left .tm-check-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tm-check-lp-report-left input[type="text"],
.tm-check-lp-report-left input[type="email"] {
  width: 100%;

  height: 58px;

  padding: 0 20px;

  border: 1px solid #e2e8f0;
  border-radius: 18px;

  background: rgba(255,255,255,0.92);

  font-size: 1rem;
  color: #0f172a;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.tm-check-lp-report-left input:focus {
  outline: none;

  border-color: #2563eb;

  box-shadow:
    0 0 0 4px rgba(37,99,235,0.10);
}

.tm-check-lp-report-left button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 58px;

  padding: 0 28px;

  border: none;
  border-radius: 999px;

  background:
    linear-gradient(135deg,
      #2563eb 0%,
      #1d4ed8 100%);

  color: #ffffff;

  font-size: 0.96rem;
  font-weight: 700;

  cursor: pointer;

  box-shadow:
    0 16px 40px rgba(37,99,235,0.28);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.tm-check-lp-report-left button:hover {
  transform: translateY(-2px);

  box-shadow:
    0 22px 50px rgba(37,99,235,0.34);
}

/* =========================
   RIGHT SIDE
========================= */

.tm-check-lp-report-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tm-check-lp-report-right strong {
  margin-bottom: 24px;

  font-size: 1.1rem;

  color: #0f172a;
}

.tm-check-lp-report-right ul {
  margin: 0;
  padding: 0;

  list-style: none;
}

.tm-check-lp-report-right li {
  position: relative;

  padding: 16px 0 16px 28px;

  border-bottom: 1px solid rgba(226,232,240,0.8);

  color: #334155;
}

.tm-check-lp-report-right li::before {
  content: "✓";

  position: absolute;

  left: 0;
  top: 16px;

  color: #22c55e;

  font-weight: 700;
}

/**** MOBILE **** 16-05-26 */

/* =========================
   WEBSITE CHECK MOBILE FIX
========================= */

@media (max-width: 760px) {

  .tm-check-lp-inner {
    width: min(100% - 32px, 1120px) !important;
  }

  .tm-check-lp-hero {
    padding: 48px 0 64px !important;
  }

  .tm-check-lp-hero-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .tm-check-lp-hero-content h1 {
    font-size: clamp(2.35rem, 12vw, 3.4rem) !important;
    line-height: 0.95 !important;
    letter-spacing: -0.07em !important;
  }

  .tm-check-lp-hero-content p {
    font-size: 1rem !important;
    line-height: 1.65 !important;
  }

  .tm-check-lp-facts {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .tm-check-lp-facts div {
    min-height: auto !important;
    padding: 18px 18px 18px 56px !important;
  }

  .tm-check-lp-facts div::before {
    left: 18px !important;
    top: 18px !important;
  }

  .tm-check-lp-ampel {
    width: 100% !important;
    max-width: none !important;
    padding: 28px !important;
  }

  .tm-check-lp-personal {
    padding: 54px 0 !important;
  }

  .tm-check-lp-personal-card {
    display: grid !important;
    grid-template-columns: 64px 1fr !important;
    gap: 18px !important;
    align-items: start !important;
  }

  .tm-check-lp-personal-card img {
    width: 64px !important;
    height: 64px !important;
  }

  .tm-check-lp-personal-card h2 {
    font-size: 1.65rem !important;
    line-height: 1.05 !important;
  }

  .tm-check-lp-report {
    padding: 70px 0 !important;
  }

  .tm-check-lp-report-box {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 34px !important;
    padding: 34px 24px !important;
    border-radius: 28px !important;
    overflow: hidden !important;
  }

  .tm-check-lp-report-visual {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    margin: 0 auto 8px !important;
    z-index: 1 !important;
  }

  .tm-report-paper {
    width: 132px !important;
    transform: rotate(-5deg) !important;
  }

  .tm-check-lp-report-left h2 {
    font-size: clamp(2rem, 10vw, 2.8rem) !important;
    line-height: 0.98 !important;
  }

  .tm-check-lp-report-left p {
    font-size: 0.98rem !important;
    line-height: 1.65 !important;
  }

  .tm-check-lp-report-left .tm-check-form {
    gap: 12px !important;
  }

  .tm-check-lp-report-left input[type="text"],
  .tm-check-lp-report-left input[type="email"],
  .tm-check-lp-report-left button {
    height: 54px !important;
    border-radius: 16px !important;
  }

  .tm-check-lp-report-right {
    padding-top: 10px !important;
  }

  .tm-check-lp-insights {
    padding: 70px 0 !important;
  }

  .tm-check-lp-insight-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .tm-check-lp-insight-grid article {
    padding: 72px 24px 28px !important;
  }

  .tm-check-lp-dark {
    padding: 70px 0 !important;
  }

  .tm-check-lp-dark-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .tm-check-lp-dark-left h2 {
    font-size: clamp(2.25rem, 11vw, 3.2rem) !important;
    line-height: 0.95 !important;
  }

  .tm-check-lp-dark-right {
    padding: 28px !important;
    border-radius: 26px !important;
  }

  .tm-check-lp-trust {
    padding: 70px 0 !important;
  }

  .tm-check-lp-trust-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .tm-check-lp-trust-grid article {
    min-height: auto !important;
    padding: 28px !important;
  }

  .tm-check-lp-final {
    padding: 78px 0 86px !important;
  }

  .tm-check-lp-final-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    text-align: left !important;
  }

  .tm-check-lp-final h2 {
    font-size: clamp(2.15rem, 11vw, 3.1rem) !important;
    line-height: 0.95 !important;
  }

  .tm-check-lp-final a {
    width: 100% !important;
    justify-content: center !important;
    min-height: 52px !important;
  }

  .tm-footer-grid,
  .tm-container.tm-footer-inner,
  .tm-footer-inner {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .site-footer,
  .tm-site-footer {
    padding: 54px 0 34px !important;
  }
}

/* =========================
   WEBSITE CHECK TOP GAP + MOBILE HERO ORDER
========================= */

/* Abstand direkt unter dem Header entfernen */
.website-check-page-single,
.tm-wc-redesign,
.tm-wc-open-page,
.tm-wc-open-inner,
.tm-action-report {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.tm-check-lp-hero {
  margin-top: 0 !important;
}

/* Falls der Header einen Abstand durch nachfolgende Elemente erzeugt */
.site-header + main,
.tm-site-header + main,
header + main {
  margin-top: 0 !important;
}

/* Mobile: Wartungsampel weiter nach oben */
@media (max-width: 760px) {

  .tm-check-lp-hero-grid {
    display: flex !important;
    flex-direction: column !important;
  }

  .tm-check-lp-hero-content {
    display: contents !important;
  }

  .tm-check-lp-kicker {
    order: 1 !important;
  }

  .tm-check-lp-hero-content h1 {
    order: 2 !important;
  }

  .tm-check-lp-hero-content > p {
    order: 3 !important;
  }

  .tm-check-lp-url {
    order: 4 !important;
  }

  .tm-check-lp-ampel {
    order: 5 !important;
    margin-top: 8px !important;
  }

  .tm-check-lp-facts {
    order: 6 !important;
    margin-top: 8px !important;
  }

  .tm-check-lp-hero {
    padding-top: 28px !important;
  }
}

/* Mobile: Hero-Facts unter der Wartungsampel ausblenden */
@media (max-width: 760px) {
  .tm-check-lp-facts {
    display: none !important;
  }
}

/* =========================
   MOBILE CLEAN RESET
   Website-Check Ergebnis
========================= */

@media (max-width: 760px) {

  /* Grundbreite */
  .tm-check-lp-inner {
    width: calc(100% - 32px) !important;
    max-width: none !important;
    margin-inline: auto !important;
  }

  /* Hero kompakter */
  .tm-check-lp-hero {
    padding: 34px 0 46px !important;
  }

  .tm-check-lp-hero-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 26px !important;
  }

  .tm-check-lp-hero-content {
    display: block !important;
  }

  .tm-check-lp-kicker {
    margin-bottom: 18px !important;
    padding: 7px 12px !important;
    font-size: 0.68rem !important;
    letter-spacing: 0.08em !important;
    white-space: normal !important;
  }

  .tm-check-lp-hero-content h1 {
    margin: 0 0 20px !important;
    font-size: clamp(2.45rem, 12vw, 3.6rem) !important;
    line-height: 0.94 !important;
    letter-spacing: -0.075em !important;
  }

  .tm-check-lp-hero-content > p {
    margin: 0 0 24px !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
  }

  .tm-check-lp-url {
    margin: 0 0 18px !important;
    text-align: left !important;
  }

  .tm-check-lp-url span {
    font-size: 0.72rem !important;
  }

  .tm-check-lp-url strong {
    font-size: 1.08rem !important;
  }

  /* Hero-Facts mobil ausblenden */
  .tm-check-lp-facts {
    display: none !important;
  }

  /* Ampel mobil kompakt und sauber */
  .tm-check-lp-ampel {
    width: 100% !important;
    max-width: none !important;
    padding: 26px 22px !important;
    border-radius: 26px !important;
    text-align: center !important;
  }

  .tm-check-lp-ampel h2 {
    font-size: 1.65rem !important;
    line-height: 1.08 !important;
    margin: 18px 0 12px !important;
  }

  .tm-check-lp-ampel p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
  }

  .tm-check-lp-ampel a {
    width: 100% !important;
    min-height: 48px !important;
    border-radius: 999px !important;
  }

  /* Safari-stabiler Ring, bewusst schlicht */
  .tm-check-lp-ring {
    position: relative !important;
    width: 116px !important;
    height: 116px !important;
    margin: 18px auto 12px !important;
    border-radius: 50% !important;
    background: #eff6ff !important;
    border: 10px solid #2563eb !important;
    box-shadow: 0 18px 38px rgba(37,99,235,0.16) !important;
  }

  .tm-check-lp-ring::before,
  .tm-check-lp-ring::after {
    display: none !important;
    content: none !important;
  }

  .tm-check-lp-ring span {
    position: absolute !important;
    inset: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.55rem !important;
    font-weight: 800 !important;
    color: #0f172a !important;
  }

  /* Persönliche Einschätzung */
  .tm-check-lp-personal {
    padding: 48px 0 !important;
  }

  .tm-check-lp-personal-card {
    display: grid !important;
    grid-template-columns: 56px 1fr !important;
    gap: 16px !important;
    align-items: start !important;
  }

  .tm-check-lp-personal-card img {
    width: 56px !important;
    height: 56px !important;
  }

  .tm-check-lp-personal-card h2 {
    font-size: 1.45rem !important;
    line-height: 1.08 !important;
    margin-bottom: 8px !important;
  }

  .tm-check-lp-personal-card p {
    font-size: 0.9rem !important;
    line-height: 1.55 !important;
  }

  /* Report-Bereich mobil sauber, Grafik weg */
  .tm-check-lp-report {
    padding: 58px 0 !important;
  }

  .tm-check-lp-report-box {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    padding: 28px 22px !important;
    border-radius: 26px !important;
    overflow: hidden !important;
  }

  .tm-check-lp-report-visual {
    display: none !important;
  }

  .tm-check-lp-report-left h2 {
    font-size: clamp(2rem, 10vw, 2.7rem) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.055em !important;
    margin-bottom: 14px !important;
  }

  .tm-check-lp-report-left p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin-bottom: 22px !important;
  }

  .tm-check-lp-report-left .tm-check-form {
    gap: 12px !important;
  }

  .tm-check-lp-report-left input[type="text"],
  .tm-check-lp-report-left input[type="email"],
  .tm-check-lp-report-left button {
    width: 100% !important;
    height: 52px !important;
    border-radius: 15px !important;
  }

  .tm-check-lp-report-right {
    padding-top: 8px !important;
  }

  .tm-check-lp-report-right strong {
    font-size: 1rem !important;
    margin-bottom: 12px !important;
  }

  .tm-check-lp-report-right li {
    padding: 12px 0 12px 24px !important;
    font-size: 0.9rem !important;
  }

  .tm-check-lp-report-right li::before {
    top: 12px !important;
  }

  /* Erkenntnisse */
  .tm-check-lp-insights {
    padding: 56px 0 !important;
  }

  .tm-check-lp-insight-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .tm-check-lp-insight-grid article {
    padding: 24px !important;
    border-radius: 22px !important;
  }

  .tm-check-lp-insight-grid article::before {
    position: static !important;
    margin-bottom: 16px !important;
  }

  /* Dark Section */
  .tm-check-lp-dark {
    padding: 56px 0 !important;
  }

  .tm-check-lp-dark-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .tm-check-lp-dark-left h2 {
    font-size: clamp(2.2rem, 11vw, 3rem) !important;
    line-height: 0.96 !important;
  }

  .tm-check-lp-dark-left p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
  }

  .tm-check-lp-dark-right {
    padding: 24px !important;
    border-radius: 24px !important;
  }

  /* Trust */
  .tm-check-lp-trust {
    padding: 56px 0 !important;
  }

  .tm-check-lp-trust-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .tm-check-lp-trust-grid article {
    min-height: auto !important;
    padding: 24px !important;
    border-radius: 22px !important;
  }

  /* Final CTA */
  .tm-check-lp-final {
    padding: 62px 0 70px !important;
  }

  .tm-check-lp-final-grid {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .tm-check-lp-final h2 {
    font-size: clamp(2rem, 10vw, 2.8rem) !important;
    line-height: 0.98 !important;
  }

  .tm-check-lp-final a {
    width: 100% !important;
    min-height: 50px !important;
    justify-content: center !important;
  }
}


/* =========================
   FINAL AMPEL RING FIX
   dynamisch + Safari stabil
========================= */

.tm-check-lp-ring {
  position: relative !important;
  width: 170px !important;
  height: 170px !important;
  margin: 0 auto !important;

  border-radius: 50% !important;

  background:
    conic-gradient(
      #2563eb 0 var(--tm-ring-percent, 88%),
      #dbeafe var(--tm-ring-percent, 88%) 100%
    ) !important;

  border: 0 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  box-shadow:
    0 20px 46px rgba(37, 99, 235, 0.18) !important;

  overflow: hidden !important;
}

.tm-check-lp-ring::before {
  content: "" !important;
  position: absolute !important;
  inset: 16px !important;

  width: auto !important;
  height: auto !important;

  border-radius: 50% !important;
  background: #ffffff !important;

  display: block !important;
  z-index: 1 !important;
}

.tm-check-lp-ring::after {
  content: none !important;
  display: none !important;
}

.tm-check-lp-ring span {
  position: relative !important;
  z-index: 2 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  font-size: 2rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
}

@media (max-width: 760px) {
  .tm-check-lp-ring {
    width: 116px !important;
    height: 116px !important;
    margin: 18px auto 12px !important;
  }

  .tm-check-lp-ring::before {
    inset: 11px !important;
  }

  .tm-check-lp-ring span {
    font-size: 1.55rem !important;
  }
}

/* =========================
   MOBILE HORIZONTAL OVERFLOW FIX
========================= */

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.website-check-page,
.website-check-page-single,
.tm-wc-redesign,
.tm-wc-open-page,
.tm-wc-open-inner,
.tm-action-report,
.tm-check-lp-hero,
.tm-check-lp-personal,
.tm-check-lp-report,
.tm-check-lp-insights,
.tm-check-lp-dark,
.tm-check-lp-trust,
.tm-check-lp-final {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 760px) {

  .tm-check-lp-inner {
    width: calc(100% - 32px) !important;
    max-width: 100% !important;
  }

  .tm-check-lp-hero-grid,
  .tm-check-lp-report-box,
  .tm-check-lp-insight-grid,
  .tm-check-lp-dark-grid,
  .tm-check-lp-trust-grid,
  .tm-check-lp-final-grid {
    width: 100% !important;
    max-width: 100% !important;
  }

  .tm-check-lp-hero-content,
  .tm-check-lp-ampel,
  .tm-check-lp-report-box,
  .tm-check-lp-dark-right,
  .tm-check-lp-trust-grid article,
  .tm-check-lp-insight-grid article {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .tm-check-lp-kicker,
  .tm-check-lp-ampel-label {
    max-width: 100% !important;
    white-space: normal !important;
  }

  .tm-check-lp-hero h1,
  .tm-check-lp-final h2,
  .tm-check-lp-dark-left h2,
  .tm-check-lp-report-left h2 {
    overflow-wrap: anywhere !important;
  }

  .tm-check-lp-report-visual {
    display: none !important;
  }

  .tm-check-lp-ampel a,
  .tm-check-lp-final a,
  .tm-check-lp-report button {
    max-width: 100% !important;
    white-space: normal !important;
  }
}

/* =========================
   MOBILE INNER SPACING RESTORE
========================= */

@media (max-width: 760px) {

  .tm-check-lp-inner {
    width: auto !important;
    max-width: none !important;
    margin-left: 20px !important;
    margin-right: 20px !important;
  }

  .tm-check-lp-hero-content,
  .tm-check-lp-personal-card,
  .tm-check-lp-report-box,
  .tm-check-lp-insight-grid,
  .tm-check-lp-dark-grid,
  .tm-check-lp-trust-grid,
  .tm-check-lp-final-grid {
    width: 100% !important;
    max-width: 100% !important;
  }

  .tm-check-lp-hero h1 {
    font-size: clamp(2.15rem, 10.8vw, 3.15rem) !important;
  }
}

/* =========================================================
   WARTUNGSAMPEL STATUS SYSTEM
========================================================= */

.tm-check-lp-ring {
  position: relative !important;

  width: 170px;
  height: 170px;

  margin-inline: auto;

  border-radius: 50%;

  background: #ffffff;

  border: 14px solid #2563eb;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    0 20px 46px rgba(37,99,235,0.14);

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.tm-check-lp-ring span {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
}

/* Grün */
.tm-status-good .tm-check-lp-ring {
  border-color: #22c55e;

  box-shadow:
    0 20px 46px rgba(34,197,94,0.18);
}

/* Gelb */
.tm-status-medium .tm-check-lp-ring {
  border-color: #f59e0b;

  box-shadow:
    0 20px 46px rgba(245,158,11,0.18);
}

/* Rot */
.tm-status-high .tm-check-lp-ring {
  border-color: #ef4444;

  box-shadow:
    0 20px 46px rgba(239,68,68,0.18);
}

/* Mobile */
@media (max-width: 760px) {

  .tm-check-lp-ring {
    width: 116px !important;
    height: 116px !important;

    border-width: 10px !important;
  }

  .tm-check-lp-ring span {
    font-size: 1.55rem !important;
  }

}



/* ========================================
   FINAL OVERRIDE: WARTUNGSAMPEL FARBEN
======================================== */

.tm-check-lp-ampel.tm-status-good {
  --tm-ring-color: #22c55e;
  --tm-ring-bg: #dcfce7;
}

.tm-check-lp-ampel.tm-status-medium {
  --tm-ring-color: #f59e0b;
  --tm-ring-bg: #fef3c7;
}

.tm-check-lp-ampel.tm-status-high {
  --tm-ring-color: #ef4444;
  --tm-ring-bg: #fee2e2;
}

.tm-check-lp-ampel .tm-check-lp-ring {
  background:
    conic-gradient(
      var(--tm-ring-color, #2563eb) 0 var(--tm-ring-percent, 88%),
      var(--tm-ring-bg, #dbeafe) var(--tm-ring-percent, 88%) 100%
    ) !important;

  border: 0 !important;
  box-shadow:
    0 18px 38px rgba(15, 23, 42, 0.10) !important;
}

.tm-check-lp-ampel .tm-check-lp-ring::before {
  content: "" !important;
  position: absolute !important;
  inset: 12px !important;
  width: auto !important;
  height: auto !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  display: block !important;
  z-index: 1 !important;
}

.tm-check-lp-ampel .tm-check-lp-ring span {
  position: relative !important;
  z-index: 2 !important;
}

.tm-check-lp-ampel.tm-status-good .tm-check-lp-ampel-label {
  background: rgba(34, 197, 94, 0.10) !important;
  color: #16a34a !important;
}

.tm-check-lp-ampel.tm-status-medium .tm-check-lp-ampel-label {
  background: rgba(245, 158, 11, 0.12) !important;
  color: #d97706 !important;
}

.tm-check-lp-ampel.tm-status-high .tm-check-lp-ampel-label {
  background: rgba(239, 68, 68, 0.10) !important;
  color: #dc2626 !important;
}

/* ========================================
   STARTSEITE MOBILE OPTIMIERUNG
   Stand: 16.05.2026
======================================== */

@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  .toabai-home-v2 .tm-container,
  .tm-container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .toabai-home-v2 section {
    padding: 64px 0 !important;
  }

  /* HERO */

  .tm-start-hero {
    padding: 48px 0 56px !important;
    background:
      linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.98)),
      url("/wp-content/uploads/hero-image.png") center top / cover no-repeat !important;
  }

  .tm-start-hero-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .tm-start-hero h1 {
    max-width: 100% !important;
    font-size: clamp(2.35rem, 12vw, 3.25rem) !important;
    line-height: .96 !important;
    letter-spacing: -0.07em !important;
  }

  .tm-start-hero-text {
    max-width: 100% !important;
    margin-top: 18px !important;
    font-size: .98rem !important;
    line-height: 1.6 !important;
  }

  .tm-start-trust-list {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-top: 22px !important;
  }

  .tm-start-trust-list li {
    width: 100% !important;
    padding: 11px 14px 11px 38px !important;
    font-size: .86rem !important;
    background: rgba(255,255,255,.86) !important;
  }

  /* CHECK-FORMULAR */

  .tm-start-form-card {
    padding: 24px !important;
    border-radius: 26px !important;
    box-shadow: 0 22px 60px rgba(15,23,42,.14) !important;
  }

  .tm-start-form-card h2 {
    font-size: 1.65rem !important;
    line-height: 1.08 !important;
  }

  .tm-start-form-card p {
    font-size: .92rem !important;
    line-height: 1.55 !important;
  }

  .tm-check-list {
    margin: 20px 0 !important;
  }

  .tm-check-list li {
    font-size: .9rem !important;
    margin-bottom: 10px !important;
  }

  .tm-website-check-field input {
    min-height: 56px !important;
    font-size: 16px !important;
    border-radius: 18px !important;
  }

  .tm-website-check-field button,
  .tm-start-form-card .tm-btn {
    min-height: 56px !important;
    border-radius: 999px !important;
    font-size: .96rem !important;
  }

  .tm-start-form-card small {
    font-size: .78rem !important;
    line-height: 1.45 !important;
  }

  /* DUNKLE PROBLEM-SECTION */

  .tm-start-danger-check {
    padding: 68px 0 !important;
  }

  .tm-danger-simple {
    text-align: left !important;
  }

  .tm-danger-simple h2 {
    font-size: clamp(2rem, 10vw, 2.85rem) !important;
    line-height: 1 !important;
    text-align: left !important;
  }

  .tm-start-danger-check .tm-section-text {
    text-align: left !important;
    font-size: .96rem !important;
    line-height: 1.6 !important;
  }

  .tm-danger-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    margin: 34px 0 28px !important;
  }

  .tm-danger-grid > div {
    min-height: auto !important;
    padding: 22px !important;
    border-radius: 22px !important;
  }

  .tm-icon-danger {
    width: 44px !important;
    height: 44px !important;
    margin-bottom: 16px !important;
  }

  /* LÖSUNG */

  .tm-start-maintenance {
    padding: 72px 0 !important;
  }

  .tm-start-maintenance-grid {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  .tm-start-maintenance h2 {
    font-size: clamp(2.15rem, 10vw, 3rem) !important;
    line-height: .98 !important;
  }

  .tm-start-maintenance-grid > div:first-child p {
    max-width: 100% !important;
    font-size: .96rem !important;
    line-height: 1.6 !important;
  }

  .tm-cta-block {
    width: 100% !important;
    margin-top: 22px !important;
  }

  .tm-cta-block .tm-btn {
    width: 100% !important;
  }

  .tm-start-maintenance-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    padding: 14px !important;
    border-radius: 26px !important;
  }

  .tm-start-maintenance-panel > div {
    min-height: auto !important;
    padding: 16px !important;
    border-radius: 18px !important;
  }

  .tm-start-maintenance-panel .tm-icon {
    width: 38px !important;
    height: 38px !important;
    margin-bottom: 14px !important;
    border-radius: 13px !important;
  }

  .tm-start-maintenance-panel .tm-icon svg {
    width: 20px !important;
    height: 20px !important;
  }

  .tm-start-maintenance-panel strong {
    font-size: .95rem !important;
  }

  .tm-start-maintenance-panel span {
    font-size: .8rem !important;
    line-height: 1.45 !important;
  }

  /* PERSON / WARUM */

  .tm-start-why {
    padding: 64px 0 !important;
  }

  .tm-start-image-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .tm-start-image-wrap img {
    max-height: 430px !important;
    border-radius: 24px !important;
    object-fit: cover !important;
  }

  .tm-start-image-badge {
    left: 14px !important;
    right: 14px !important;
    bottom: 14px !important;
    max-width: none !important;
  }

  .tm-start-text-block h2 {
    font-size: clamp(2rem, 9vw, 2.75rem) !important;
    line-height: 1 !important;
  }

  .tm-start-text-block p {
    font-size: .96rem !important;
    line-height: 1.65 !important;
  }

  .tm-start-mini-list {
    gap: 12px !important;
    margin-top: 22px !important;
  }

  .tm-start-mini-list > div {
    padding: 16px !important;
    border-radius: 18px !important;
  }

  /* FINAL CTA */

  .tm-start-final {
    padding: 70px 0 !important;
  }

  .tm-start-final-box h2 {
    font-size: clamp(2rem, 10vw, 2.9rem) !important;
    line-height: 1 !important;
  }

  .tm-start-final-box p {
    font-size: .96rem !important;
    line-height: 1.6 !important;
  }

  .tm-start-final-box .tm-btn {
    width: 100% !important;
    margin-top: 20px !important;
  }
}


/* ========================================
   MOBILE MENU REPAIR
======================================== */

@media (max-width: 900px) {

  .main-navigation,
  .tm-header-cta {
    display: none !important;
  }

  .tm-menu-toggle {
    display: inline-flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 6px !important;
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    cursor: pointer !important;
  }

  .tm-menu-toggle span {
    display: block !important;
    width: 28px !important;
    height: 3px !important;
    border-radius: 999px !important;
    background: #0f172a !important;
  }

  .tm-mobile-menu {
    position: fixed !important;
    inset: 0 !important;
    z-index: 9999 !important;

    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;

    padding: 24px !important;

    background:
      radial-gradient(circle at 50% 0%, rgba(37,99,235,0.10), transparent 36%),
      #f8fafc !important;

    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;

    transform: translateY(-8px) !important;
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease !important;

    overflow-y: auto !important;
  }

  .tm-mobile-menu[aria-hidden="false"],
  .tm-mobile-menu.is-open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  .tm-mobile-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 18px !important;

    padding: 16px 18px !important;
    border-radius: 24px !important;

    background: rgba(255,255,255,0.9) !important;
    border: 1px solid rgba(15,23,42,0.06) !important;
    box-shadow: 0 18px 50px rgba(15,23,42,0.08) !important;
  }

  .tm-mobile-brand {
    text-decoration: none !important;
    font-size: 1.35rem !important;
  }

  .tm-menu-close {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    position: relative !important;

    width: 42px !important;
    height: 42px !important;

    border: 0 !important;
    border-radius: 999px !important;
    background: #eef4ff !important;
    cursor: pointer !important;
  }

  .tm-menu-close span {
    position: absolute !important;
    width: 22px !important;
    height: 3px !important;
    border-radius: 999px !important;
    background: #0f172a !important;
  }

  .tm-menu-close span:first-child {
    transform: rotate(45deg) !important;
  }

  .tm-menu-close span:last-child {
    transform: rotate(-45deg) !important;
  }

  .tm-mobile-nav {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;

    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  .tm-mobile-nav li {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .tm-mobile-nav a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    min-height: 56px !important;
    padding: 0 18px !important;

    border-radius: 18px !important;

    background: rgba(255,255,255,0.86) !important;
    border: 1px solid rgba(15,23,42,0.06) !important;
    box-shadow: 0 12px 28px rgba(15,23,42,0.05) !important;

    color: #0f172a !important;
    text-decoration: none !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
  }

  .tm-mobile-nav a::after {
    content: "→" !important;
    color: #2563eb !important;
    font-weight: 800 !important;
  }

  .tm-mobile-cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    min-height: 58px !important;
    padding: 0 22px !important;

    border-radius: 999px !important;

    background: #2563eb !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 800 !important;

    box-shadow: 0 18px 42px rgba(37,99,235,0.28) !important;
  }
}

/* ========================================
   MOBILE MENU LOGO POSITION FIX
======================================== */

@media (max-width: 900px) {

  .tm-mobile-header {
    position: relative !important;
    margin-bottom: 18px !important;
  }

  .tm-mobile-brand {
    position: static !important;
    transform: none !important;

    display: inline-flex !important;
    align-items: center !important;

    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .tm-mobile-menu {
    padding-top: 22px !important;
  }

  .tm-mobile-nav {
    margin-top: 0 !important;
  }

  .tm-mobile-nav a {
    position: relative !important;
    z-index: 1 !important;
  }

  .tm-menu-close {
    position: relative !important;
    z-index: 2 !important;
    flex-shrink: 0 !important;
  }
}

/* ========================================
   MOBILE MENU NO SCROLL
======================================== */

@media (max-width: 900px) {

  .tm-mobile-menu {
    height: 100vh !important;
    overflow: hidden !important;
  }

  body.tm-menu-open {
    overflow: hidden !important;
    height: 100vh !important;
  }
}

/* ========================================
   MOBILE HEADER POLISH
======================================== */

@media (max-width: 900px) {

  .site-header {
    padding: 0 !important;
  }

  .tm-header-inner {
    min-height: 78px !important;

    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .tm-logo {
    font-size: 1.7rem !important;
    line-height: 1 !important;
  }

  .tm-menu-toggle {
    width: 42px !important;
    height: 42px !important;

    margin-right: -4px !important;
  }

  .tm-menu-toggle span {
    width: 30px !important;
    height: 3px !important;
  }
}


@media (max-width: 900px) {

  .tm-header-inner {
    padding-left: 20px !important;
    padding-right: 14px !important;
  }

  .tm-menu-toggle {
    margin-right: 0 !important;
  }
}

/* ========================================
   MOBILE HEADER BURGER POSITION FIX
======================================== */

@media (max-width: 1080px) {

  .site-header .tm-header-inner {
    position: relative !important;
  }

  .site-header .tm-menu-toggle {
    right: 18px !important;
  }
}



/* ========================================
   MOBILE MENU AS PANEL UNDER HEADER
======================================== */

@media (max-width: 1080px) {

  .tm-mobile-menu {
    top: 74px !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    inset: 74px 0 0 0 !important;

    padding: 24px 22px 34px !important;
    background:
      radial-gradient(circle at 50% 0%, rgba(37,99,235,.12), transparent 34%),
      #f8fafc !important;
  }

  .tm-mobile-header {
    display: none !important;
  }

  .tm-mobile-nav {
    margin-top: 0 !important;
  }

  body.tm-menu-open .site-header {
    background: rgba(255,255,255,.94) !important;
    box-shadow: 0 12px 36px rgba(15,23,42,.06) !important;
  }
}

/* ========================================
   MOBILE FIXED HEADER
======================================== */

@media (max-width: 1080px) {

  .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 10000 !important;

    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;

    border-bottom: 1px solid rgba(15, 23, 42, 0.06) !important;
  }

  body {
    padding-top: 78px !important;
  }

  .tm-mobile-menu {
    position: fixed !important;
    inset: 78px 0 0 0 !important;
    height: calc(100dvh - 78px) !important;
    overflow: hidden !important;
    z-index: 9999 !important;
  }

  body.tm-menu-open {
    overflow: hidden !important;
    height: 100dvh !important;
  }
}

/* ========================================
   STARTSEITE: LÖSUNG SECTION HELL
======================================== */

.toabai-home-v2 .tm-start-maintenance {
  background:
    radial-gradient(circle at 20% 0%, rgba(37, 99, 235, 0.10), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%) !important;

  color: #0f172a !important;
}

.toabai-home-v2 .tm-start-maintenance .tm-eyebrow {
  background: rgba(37, 99, 235, 0.08) !important;
  color: #2563eb !important;
}

.toabai-home-v2 .tm-start-maintenance h2,
.toabai-home-v2 .tm-start-maintenance strong {
  color: #0f172a !important;
}

.toabai-home-v2 .tm-start-maintenance p,
.toabai-home-v2 .tm-start-maintenance span {
  color: #475569 !important;
}

.toabai-home-v2 .tm-start-maintenance-panel {
  background: rgba(255, 255, 255, 0.74) !important;
  border: 1px solid rgba(15, 23, 42, 0.06) !important;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08) !important;
}

.toabai-home-v2 .tm-start-maintenance-panel > div {
  background: #ffffff !important;
  border: 1px solid rgba(15, 23, 42, 0.06) !important;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.05) !important;
}

.toabai-home-v2 .tm-start-maintenance-panel .tm-icon {
  background: rgba(37, 99, 235, 0.10) !important;
  color: #2563eb !important;
}

.toabai-home-v2 .tm-start-maintenance .tm-cta-micro,
.toabai-home-v2 .tm-start-maintenance .tm-cta-process {
  color: #64748b !important;
}

/* Mobile Feinschliff */
@media (max-width: 768px) {

  .toabai-home-v2 .tm-start-maintenance {
    padding: 76px 0 72px !important;
  }

  .toabai-home-v2 .tm-start-maintenance-panel {
    padding: 14px !important;
    border-radius: 28px !important;
  }

  .toabai-home-v2 .tm-start-maintenance-panel > div {
    min-height: 170px !important;
    border-radius: 22px !important;
  }
}

/* ========================================
   MOBILE FOOTER PREMIUM OPTIMIZATION
======================================== */

@media (max-width: 768px) {

  footer.site-footer {
    padding: 54px 0 34px !important;

    background:
      radial-gradient(circle at top left, rgba(37,99,235,.08), transparent 30%),
      #f8fafc !important;

    border-top: 1px solid rgba(15,23,42,.06) !important;
  }

  footer.site-footer .tm-container {
    gap: 34px !important;
  }

  footer.site-footer .tm-logo {
    font-size: 1.5rem !important;
  }

  footer.site-footer p,
  footer.site-footer li,
  footer.site-footer a,
  footer.site-footer span {
    font-size: .95rem !important;
    line-height: 1.65 !important;
  }

  footer.site-footer h2,
  footer.site-footer h3,
  footer.site-footer h4,
  footer.site-footer strong {
    font-size: .92rem !important;
    letter-spacing: .04em !important;
    text-transform: uppercase !important;

    color: #0f172a !important;

    margin-bottom: 12px !important;
  }

  footer.site-footer ul {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;

    padding: 0 !important;
    margin: 0 !important;

    list-style: none !important;
  }

  footer.site-footer a {
    color: #475569 !important;
    text-decoration: none !important;

    transition: color .2s ease !important;
  }

  footer.site-footer a:hover {
    color: #2563eb !important;
  }

  footer.site-footer .tm-footer-bottom,
  footer.site-footer .site-info {
    margin-top: 28px !important;
    padding-top: 22px !important;

    border-top: 1px solid rgba(15,23,42,.08) !important;

    font-size: .84rem !important;
    color: #94a3b8 !important;
  }
}

/* ========================================
   MOBILE FOOTER FINAL POLISH
======================================== */

@media (max-width: 768px) {

  footer.site-footer {
    padding-top: 52px !important;
  }

  footer.site-footer .tm-footer-grid {
    gap: 28px !important;
  }

  footer.site-footer h3,
  footer.site-footer h4,
  footer.site-footer strong {
    margin-bottom: 10px !important;
  }

  footer.site-footer ul {
    gap: 8px !important;
  }

  footer.site-footer p {
    max-width: 320px !important;
  }

  footer.site-footer .tm-footer-bottom {
    margin-top: 22px !important;
  }
}


footer.site-footer .tm-logo {
  font-size: 1.45rem;
}

@media (max-width: 768px) {

  footer.site-footer .tm-logo {
    font-size: 1.55rem;
  }

}

/* ========================================
   WEBSITE PRÜFEN STARTSEITE MOBILE HERO FINAL
   Gilt nur für /website-pruefen/ ohne Ergebnis
======================================== */

@media (max-width: 768px) {

  body.page-template-page-website-pruefen .website-check-page-single:not(.tm-has-result) .tm-wc-open-page,
  body.page-id-5351 .website-check-page-single:not(.tm-has-result) .tm-wc-open-page,
  body.page-template-page-website-pruefen .tm-wc-open-page,
  body.page-id-5351 .tm-wc-open-page {
    padding: 34px 0 42px !important;

    background:
      radial-gradient(circle at 80% 0%, rgba(37,99,235,.10), transparent 34%),
      linear-gradient(180deg, #f7faff 0%, #eef3fb 100%) !important;
  }

  body.page-template-page-website-pruefen .tm-wc-open-inner,
  body.page-id-5351 .tm-wc-open-inner {
    width: calc(100% - 40px) !important;
    max-width: none !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  body.page-template-page-website-pruefen .tm-wc-open-inner > .tm-eyebrow,
  body.page-id-5351 .tm-wc-open-inner > .tm-eyebrow {
    margin: 0 0 14px !important;

    color: #2563eb !important;
    background: transparent !important;

    font-size: .72rem !important;
    line-height: 1.2 !important;
    letter-spacing: .14em !important;
    font-weight: 900 !important;
  }

  body.page-template-page-website-pruefen .tm-wc-open-inner > h1,
  body.page-id-5351 .tm-wc-open-inner > h1 {
    max-width: 10.6ch !important;

    margin: 0 0 18px !important;

    font-size: clamp(2.35rem, 10.6vw, 3.15rem) !important;
    line-height: .95 !important;
    letter-spacing: -.065em !important;

    color: #0f172a !important;
  }

  body.page-template-page-website-pruefen .tm-check-hero-subline,
  body.page-id-5351 .tm-check-hero-subline {
    max-width: 32ch !important;

    margin: 0 0 26px !important;

    color: #475569 !important;
    opacity: 1 !important;

    font-size: .98rem !important;
    line-height: 1.62 !important;
  }

  body.page-template-page-website-pruefen .tm-report-form-card-alone,
  body.page-id-5351 .tm-report-form-card-alone {
    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 28px 22px !important;

    border-radius: 28px !important;

    background: #ffffff !important;
    box-shadow: 0 24px 70px rgba(15,23,42,.12) !important;
  }

  body.page-template-page-website-pruefen .tm-report-form-card-alone .tm-form-label,
  body.page-id-5351 .tm-report-form-card-alone .tm-form-label {
    margin-bottom: 16px !important;

    color: #64748b !important;

    font-size: .72rem !important;
    letter-spacing: .16em !important;
    font-weight: 900 !important;
  }

  body.page-template-page-website-pruefen .tm-report-form-card-alone h2,
  body.page-id-5351 .tm-report-form-card-alone h2 {
    margin: 0 0 20px !important;

    font-size: 2.15rem !important;
    line-height: .98 !important;
    letter-spacing: -.055em !important;

    color: #0f172a !important;
  }

  body.page-template-page-website-pruefen .tm-report-form-card-alone input,
  body.page-id-5351 .tm-report-form-card-alone input {
    min-height: 58px !important;
    font-size: 16px !important;
    border-radius: 16px !important;
  }

  body.page-template-page-website-pruefen .tm-report-form-card-alone button,
  body.page-id-5351 .tm-report-form-card-alone button {
    min-height: 58px !important;
    border-radius: 999px !important;
  }
}