/*
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);
  --tm-shadow-soft: 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
========================= */

.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-shadow-soft);
}

.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-btn-danger {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(220, 38, 38, 0.30);
}

.tm-btn-danger:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #ffffff;
}

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

/* =========================
   Icons
========================= */

.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;
}

/* =========================
   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 {
  padding: 105px 0 115px;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0.98) 0%,
      rgba(255,255,255,0.92) 42%,
      rgba(255,255,255,0.55) 68%,
      rgba(255,255,255,0.25) 100%
    ),
    url("/wp-content/uploads/hero-image.png") right center / cover no-repeat;
}

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

.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);
}

.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 {
  max-width: none;
  margin-bottom: 10px;
  font-size: 1.75rem;
}

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

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

.tm-start-form input {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  border: 1px solid #dbe3ef;
  border-radius: 13px;
  background: #f8fafc;
  color: var(--tm-text);
  font-size: 0.95rem;
}

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

.tm-start-form button {
  width: 100%;
  height: 54px;
  margin-top: 6px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 850;
  box-shadow: 0 18px 42px rgba(37,99,235,0.3);
  cursor: pointer;
}

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

/* Problem */

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

.tm-start-section-head {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.tm-start-section-head h2 {
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.3rem, 4vw, 3.7rem);
}

.tm-start-card-grid {
  display: grid;
  gap: 22px;
}

.tm-start-card-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tm-start-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid rgba(226,232,240,0.95);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(15,23,42,0.06);
  transition: transform 0.2s ease;
}

.tm-start-card:hover {
  transform: translateY(-4px);
}

.tm-start-card h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
}

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

/* Risiko Startseite */

.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;
}

/* Lösung Startseite */

.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;
}

/* Warum */

.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;
}

/* Website */

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

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

/* Listen */

.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;
}

/* Testimonials */

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

.tm-start-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.tm-start-testimonial-grid blockquote {
  margin: 0;
  padding: 28px;
  border: 1px solid rgba(226,232,240,0.95);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(15,23,42,0.06);
  text-align: center;
}

.tm-start-testimonial-grid img {
  display: block;
  width: 92px;
  height: 92px;
  margin: 0 auto 22px;
  border-radius: 999px;
  object-fit: cover;
}

.tm-start-testimonial-grid p {
  color: var(--tm-text);
  font-size: 1rem;
  text-align: left;
}

.tm-start-testimonial-grid footer {
  margin-top: 18px;
  color: var(--tm-text);
  font-style: normal;
  font-weight: 750;
  text-align: left;
}

/* Final CTA Startseite */

.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-row {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

.tm-form-row:first-child {
  grid-template-columns: 1fr 1fr;
}

.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(--tm-shadow-soft);
}

/* =========================
   Über mich
========================= */

.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-visual {
  position: relative;
  max-width: 430px;
  margin-left: auto;
}

.tm-about-visual img {
  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;
}

/* =========================
   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-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,
.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:hover,
.tm-mockup-device:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 34px 80px rgba(15, 23, 42, 0.16);
}

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

/* =========================
   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;
}

/* =========================
   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;
}

/* Hero Wartung */

.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;
}

/* Head Wartungsseite */

.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);
}

/* Risiko Wartungsseite */

.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;
}

/* Lösung Wartungsseite */

.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;
}

/* Ablauf */

.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;
}

/* Übernahme */

.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;
}

/* Paket */

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

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

.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-package-note {
  margin-top: 18px;
  color: #64748b;
  font-size: 0.95rem;
}

.tw-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);
}

.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-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
  color: #0f172a;
}

.tw-price span {
  color: #64748b;
  font-size: 1rem;
  font-weight: 750;
}

.tw-price strong {
  font-size: clamp(3rem, 6vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.08em;
}

.tw-price em {
  color: #64748b;
  font-size: 0.95rem;
  font-style: normal;
}

.tw-price-card ul {
  display: grid;
  gap: 11px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.tw-price-card li {
  position: relative;
  padding-left: 25px;
  color: #0f172a;
  font-size: 0.95rem;
  font-weight: 650;
}

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

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

/* Vertrauen */

.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;
}

/* FAQ */

.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;
}

/* Final Wartung */

.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);
}

/* =========================
   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;
}

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

@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-nav {
    display: grid;
    gap: 18px;
    margin-top: 24px;
  }

  .tm-mobile-nav a {
    display: block;
    padding: 14px 16px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    color: #0f172a;
    font-size: 1.05rem;
    font-weight: 700;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  }

  .tm-mobile-nav a:hover {
    background: #f8fafc;
  }

  .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: 900px) {
  .tm-start-hero-grid,
  .tw-hero-grid,
  .tm-start-maintenance-grid,
  .tw-solution-grid,
  .tw-package-grid,
  .tw-trust-grid,
  .tm-start-image-grid,
  .tm-start-image-grid-reverse,
  .tm-footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .tm-start-card-grid-3 {
    grid-template-columns: 1fr;
  }

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

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

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

  h2 {
    font-size: 2rem;
  }

  .tm-container {
    width: calc(100% - 28px);
  }

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

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

  .tw-status-card,
  .tw-price-card {
    padding: 22px;
  }
}