/* ============================================================
   Touch Clean — Native WordPress Theme Styles
   ============================================================ */

:root {
    --brand:        #2563EB;
    --brand-hover:  #1D4ED8;
    --brand-light:  #DBEAFE;
    --ink:          #0F172A;
    --muted:        #475569;
    --border:       #E2E8F0;
    --surface:      #F8FAFC;
    --bg:           #FFFFFF;
    --emerald:      #10B981;
    --amber:        #F59E0B;
    --radius:       1rem;
    --radius-lg:    1.5rem;
    --radius-xl:    2rem;
    --shadow-sm:    0 1px 2px rgba(15,23,42,.06), 0 4px 12px rgba(15,23,42,.05);
    --shadow-md:    0 8px 24px rgba(37,99,235,.12);
    --shadow-lg:    0 20px 60px -10px rgba(37,99,235,.30);
    --grad:         linear-gradient(135deg,#1D4ED8 0%,#2563EB 50%,#3B82F6 100%);
    --grad-soft:    linear-gradient(180deg,#F8FAFC 0%,#EEF2F7 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; margin: 0; }
p { margin: 0; }
ul { padding: 0; list-style: none; margin: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* Container & sections */
.tc-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.tc-section { padding: 4.5rem 0; }
@media (min-width: 768px) { .tc-section { padding: 6rem 0; } }
.tc-section--soft { background: var(--grad-soft); }
.tc-section__head { max-width: 760px; margin: 0 auto 3.5rem; text-align: center; }
.tc-section__head--light * { color: #fff; }
.tc-section__head .tc-lead { margin-top: 1.25rem; color: var(--muted); font-size: 1.0625rem; }
.tc-section__head .tc-eyebrow { margin-bottom: 1.25rem; }
.tc-section__head .tc-h2 { margin-top: 0.5rem; }

.tc-h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
.tc-h2 { font-size: clamp(1.875rem, 4vw, 3rem); }
.tc-h2--light { color: #fff; }
.tc-lead { color: var(--muted); font-size: 1.0625rem; line-height: 1.65; }
.tc-lead--light { color: rgba(255,255,255,.75); }
.tc-muted { color: var(--muted); font-size: 0.875rem; display: inline-flex; align-items: center; gap: 0.375rem; }
.tc-grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.tc-grad-light { background: linear-gradient(135deg,#3B82F6,#93C5FD); -webkit-background-clip: text; background-clip: text; color: transparent; }
.tc-icon { display: inline-block; flex-shrink: 0; vertical-align: middle; }

/* Eyebrows & pills */
.tc-eyebrow {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--brand-light); color: var(--brand);
    padding: 0.375rem 1rem; border-radius: 999px;
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em;
}
.tc-eyebrow--blue { background: transparent; color: var(--brand); padding: 0; }
.tc-eyebrow-center { text-align: center; color: var(--muted); font-size: 0.8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 2.5rem; }
.tc-pill {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.4rem 1rem; border-radius: 999px;
    font-size: 0.75rem; font-weight: 600;
    border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.12); color: #fff;
    -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
}
.tc-pill--emerald { background: #ECFDF5; color: #047857; border-color: #A7F3D0; }
.tc-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--emerald); }
.tc-pulse { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); }
.tc-pulse::before { content:''; position:absolute; inset:-4px; border-radius:50%; background: var(--emerald); opacity:.4; animation: tc-ping 2s ease-out infinite; }
@keyframes tc-ping { 0%{transform:scale(.5);opacity:.5} 100%{transform:scale(1.6);opacity:0} }

/* Buttons */
.tc-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.875rem 1.5rem; border-radius: 999px;
    font-weight: 600; font-size: 0.9375rem;
    transition: all .25s ease; border: 1px solid transparent;
    cursor: pointer;
}
.tc-btn--primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-md); }
.tc-btn--primary:hover { background: var(--brand-hover); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.tc-btn--white { background: #fff; color: var(--ink); box-shadow: var(--shadow-md); }
.tc-btn--white:hover { transform: translateY(-2px); }
.tc-btn--ghost-light { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.3); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
.tc-btn--ghost-light:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }
.tc-btn--outline { background: #fff; color: var(--ink); border-color: var(--border); }
.tc-btn--outline:hover { border-color: var(--brand); color: var(--brand); }
.tc-btn--block { width: 100%; }
.tc-btn--lg { padding: 1rem 1.75rem; font-size: 1rem; }

/* Header */
.tc-header {
    position: fixed; inset: 0 0 auto 0; z-index: 9999;
    background: rgba(255,255,255,.85); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(15,23,42,.08);
    transition: background .3s, box-shadow .3s;
}
.tc-header.is-scrolled { box-shadow: 0 10px 30px -12px rgba(15,23,42,.15); }
.tc-header__inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
@media (min-width: 992px) { .tc-header__inner { height: 96px; } }
.tc-logo img { height: 52px; width: auto; object-fit: contain; }
@media (min-width: 992px) { .tc-logo img { height: 72px; } }
.tc-nav { display: none; }
@media (min-width: 992px) { .tc-nav { display: block; } }
.tc-nav-list { display: flex; gap: 0.5rem; }
.tc-nav-list a, .tc-nav-link {
    display: inline-block; padding: 0.625rem 1.25rem;
    border-radius: 999px; font-weight: 500; color: var(--muted);
    transition: all .2s;
}
.tc-nav-list a:hover, .tc-nav-link:hover,
.tc-nav-list .current-menu-item > a,
.tc-nav-link.is-active { background: var(--surface); color: var(--ink); font-weight: 600; }
.tc-header__actions { display: flex; align-items: center; gap: 0.5rem; }
.tc-icon-btn { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; transition: transform .2s; }
.tc-icon-btn:hover { transform: translateY(-2px); }
.tc-icon-btn--whatsapp { background: #25D366; color: #fff; box-shadow: 0 6px 16px -6px rgba(37,211,102,.6); }
.tc-icon-btn--phone { background: var(--brand); color: #fff; box-shadow: 0 6px 16px -6px rgba(37,99,235,.6); }
.tc-cta-desktop { display: none; }
@media (min-width: 992px) { .tc-cta-desktop { display: inline-flex; } .tc-icon-btn--phone { display: none; } }
.tc-burger { display: inline-flex; width: 42px; height: 42px; border-radius: 50%; background: #fff; border: 1px solid var(--border); align-items: center; justify-content: center; color: var(--ink); }
@media (min-width: 992px) { .tc-burger { display: none; } }
.tc-mobile-menu { background: #fff; border-top: 1px solid var(--border); padding: 1rem 0 1.25rem; }
.tc-mobile-list { display: flex; flex-direction: column; gap: 0.25rem; margin-bottom: 1rem; }
.tc-mobile-list a { display: block; padding: 0.875rem 1rem; border-radius: 0.75rem; font-weight: 500; color: var(--ink); }
.tc-mobile-list a:hover { background: var(--surface); }

.tc-main { padding-top: 80px; }
@media (min-width: 992px) { .tc-main { padding-top: 0; } }

/* HERO */
.tc-hero { position: relative; min-height: 100vh; overflow: hidden; background: var(--ink); color: #fff; padding: 0; }
@media (min-width: 992px) { .tc-hero { padding-top: 96px; min-height: calc(100vh + 0px); margin-top: -96px; } }
.tc-hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .85; }
.tc-hero__overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(70% 50% at 15% 30%, rgba(37,99,235,.35), transparent 60%),
        linear-gradient(135deg, rgba(15,23,42,.78) 0%, rgba(15,23,42,.45) 50%, rgba(15,23,42,.82) 100%);
}
.tc-hero__inner { position: relative; padding: 6rem 1.5rem 4rem; }
@media (min-width: 992px) { .tc-hero__inner { padding: 8rem 1.5rem 5rem; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; } }
.tc-hero__grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 992px) { .tc-hero__grid { grid-template-columns: 1.2fr .8fr; gap: 3rem; } }
.tc-hero__title { font-size: clamp(1.875rem, 4.5vw, 3.25rem); font-weight: 800; margin-top: 1.5rem; line-height: 1.1; }
.tc-hero__lead { margin-top: 1.25rem; color: rgba(255,255,255,.85); font-size: 1.0625rem; max-width: 36rem; }
.tc-hero__ctas { margin-top: 2rem; display: flex; gap: 0.75rem; flex-wrap: wrap; }
.tc-hero__ctas .tc-btn { height: 56px; padding: 0 1.75rem; }
.tc-hero__trust { display: flex; flex-wrap: wrap; gap: 0.625rem; justify-content: center; margin-top: 3rem; }
.tc-trust-chip {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.625rem 1rem; border-radius: 999px;
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
    color: #fff; font-weight: 600; font-size: 0.8125rem;
    -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
}
.tc-trust-chip .tc-icon { color: #6EE7B7; }
.tc-hero__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem 0; margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,.15); }
@media (min-width: 640px) { .tc-hero__stats { grid-template-columns: repeat(4, 1fr); } }
.tc-hero__stat { text-align: center; padding: 0 1rem; }
.tc-hero__stat + .tc-hero__stat { border-left: 1px solid rgba(255,255,255,.15); }
.tc-hero__stat-num { font-size: 2.25rem; font-weight: 800; line-height: 1; }
@media (min-width: 768px) { .tc-hero__stat-num { font-size: 2.75rem; } }
.tc-hero__stat-label { margin-top: 0.5rem; font-size: 0.8125rem; color: rgba(255,255,255,.75); }

/* Quick form */
.tc-quick-form { background: #fff; color: var(--ink); border-radius: var(--radius-xl); padding: 1.75rem; box-shadow: var(--shadow-lg); }
.tc-quick-form__head { display: flex; align-items: center; justify-content: space-between; }
.tc-quick-form h3 { font-size: 1.5rem; margin-top: 1rem; }
.tc-quick-form .tc-muted { margin-top: 0.25rem; }
.tc-form { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.tc-field {
    display: flex; align-items: center; gap: 0.75rem;
    border: 1px solid var(--border); border-radius: 1rem;
    padding: 0.875rem 1rem; background: var(--surface);
    transition: border-color .2s;
}
.tc-field:focus-within { border-color: var(--brand); background: #fff; }
.tc-field input { flex: 1; border: none; outline: none; background: transparent; font-size: 0.9375rem; color: var(--ink); font-family: inherit; }
.tc-field .tc-icon { color: var(--muted); }
.tc-success {
    margin-top: 1.5rem; padding: 1.25rem; border-radius: 1rem;
    background: #ECFDF5; border: 1px solid #A7F3D0; color: #065F46;
}
.tc-success .tc-icon { color: var(--emerald); }
.tc-success p { margin-top: 0.5rem; font-size: 0.9375rem; }

/* TrustBar */
.tc-trustbar__grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .tc-trustbar__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 992px) { .tc-trustbar__grid { grid-template-columns: repeat(6, 1fr); } }
.tc-trust-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem 1rem; text-align: center; transition: all .3s; }
.tc-trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(37,99,235,.4); }
.tc-trust-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 1rem; background: linear-gradient(135deg,#DBEAFE,#F0F9FF); color: var(--brand); margin-bottom: 0.875rem; }
.tc-trust-card__title { font-weight: 700; font-size: 1rem; color: var(--ink); }
.tc-trust-card__desc { font-size: 0.8125rem; color: var(--muted); margin-top: 0.25rem; }

/* About */
.tc-about__grid { display: grid; gap: 3rem; align-items: center; margin-bottom: 3rem; }
@media (min-width: 992px) { .tc-about__grid { grid-template-columns: 1fr .9fr; } }
.tc-about .tc-h2 { margin-top: 1.25rem; }
.tc-about .tc-lead { margin-top: 1.25rem; }
.tc-benefits { margin-top: 2.25rem; display: flex; flex-direction: column; gap: 1.5rem; }
.tc-benefits li { display: flex; gap: 1rem; align-items: flex-start; }
.tc-benefits__icon { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 1rem; background: var(--brand-light); color: var(--brand); flex-shrink: 0; }
.tc-benefits__title { font-weight: 700; color: var(--ink); }
.tc-benefits__desc { font-size: 0.9rem; color: var(--muted); margin-top: 0.25rem; }
.tc-cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.tc-about__visual { position: relative; }
.tc-about__visual img { border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.tc-about__badge {
    position: absolute; right: 1rem; bottom: -1.5rem;
    display: flex; align-items: center; gap: 0.75rem;
    background: #fff; border: 1px solid var(--border); border-radius: 1rem;
    padding: 0.875rem 1.25rem; box-shadow: var(--shadow-md);
}
.tc-about__badge > span { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 0.75rem; background: var(--brand-light); color: var(--brand); }
.tc-about__badge-title { font-weight: 700; }
.tc-about__badge-sub { font-size: 0.75rem; color: var(--muted); }
.tc-about__stats { margin-top: 2rem; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-sm); display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .tc-about__stats { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 992px) { .tc-about__stats { grid-template-columns: repeat(4,1fr); } }
.tc-about__stat { display: flex; align-items: center; gap: 0.875rem; }
.tc-about__stat > span { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 0.875rem; background: var(--brand-light); color: var(--brand); flex-shrink: 0; }
.tc-about__stat-num { font-size: 1.5rem; font-weight: 800; color: var(--ink); line-height: 1; }
.tc-about__stat-label { font-size: 0.875rem; color: var(--muted); margin-top: 0.25rem; }

/* CTA Banner */
.tc-cta-banner { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.tc-cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(70% 50% at 50% 50%, rgba(37,99,235,.25), transparent 70%); }
.tc-cta-banner__inner { position: relative; max-width: 56rem; margin: 0 auto; text-align: center; }
.tc-cta-banner__title { margin-top: 1.75rem; color: #fff; font-size: clamp(2rem, 4.5vw, 3.75rem); line-height: 1.1; letter-spacing: -0.02em; }
.tc-locs__pill.tc-locs__pill--dark { background: rgba(255,255,255,.06); color: rgba(255,255,255,.85); border: 1px solid rgba(255,255,255,.12); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); padding: 0.65rem 1.4rem; font-size: 0.75rem; }
.tc-locs__pill .tc-locs__pill-dot--emerald { background: #10b981; box-shadow: 0 0 0 3px rgba(16,185,129,.18); }
.tc-cta-banner__lead { margin: 1.5rem auto 0; max-width: 36rem; color: rgba(255,255,255,.75); font-size: 1.0625rem; }
.tc-cta-banner__row { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-top: 2.5rem; }

/* Services */
/* Services bento */
.tc-services__head { max-width: 880px; margin-bottom: 3rem; }
.tc-services__title { font-size: clamp(2rem, 4.5vw, 3.5rem); line-height: 1.05; letter-spacing: -0.02em; }
.tc-services__lead { margin-top: 1.25rem; max-width: 640px; }

.tc-bento { display: grid; gap: 1.25rem; grid-template-columns: 1fr; grid-auto-rows: minmax(220px, auto); }
@media (min-width: 768px) and (max-width: 1023px) {
    .tc-bento { grid-template-columns: 1fr 1fr; grid-template-areas: "a a" "b c" "d d" "e e"; }
    .tc-bento__card--a { grid-area: a; min-height: 320px; }
    .tc-bento__card--b { grid-area: b; }
    .tc-bento__card--c { grid-area: c; }
    .tc-bento__card--d { grid-area: d; min-height: 280px; }
    .tc-bento__card--e { grid-area: e; min-height: 280px; }
}
@media (min-width: 1024px) {
    .tc-bento { grid-template-columns: 2fr 1fr 1fr; grid-template-areas: "a b c" "a d e"; }
    .tc-bento__card--a { grid-area: a; min-height: 520px; }
    .tc-bento__card--b { grid-area: b; }
    .tc-bento__card--c { grid-area: c; }
    .tc-bento__card--d { grid-area: d; }
    .tc-bento__card--e { grid-area: e; }
}
.tc-bento__card { position: relative; display: flex; flex-direction: column; justify-content: space-between; padding: 1.5rem; min-height: 280px; border-radius: 1.5rem; overflow: hidden; color: #fff; text-decoration: none; isolation: isolate; box-shadow: 0 18px 40px -22px rgba(15,23,42,.4); transition: transform .4s ease, box-shadow .4s ease; }
.tc-bento__card:hover { transform: translateY(-4px); box-shadow: 0 28px 60px -24px rgba(15,23,42,.5); }
.tc-bento__media { position: absolute; inset: 0; background-image: var(--bg); background-size: cover; background-position: center; transform: scale(1.04); transition: transform 1.2s ease; z-index: -2; }
.tc-bento__card:hover .tc-bento__media { transform: scale(1.1); }
.tc-bento__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,23,42,.25) 0%, rgba(15,23,42,.55) 55%, rgba(15,23,42,.85) 100%); z-index: -1; }
.tc-bento__top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.tc-bento__tag { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.4rem 0.85rem; border-radius: 999px; background: rgba(15,23,42,.55); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); color: #fff; font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; border: 1px solid rgba(255,255,255,.12); }
.tc-bento__tag-dot { width: 6px; height: 6px; border-radius: 50%; background: #10b981; box-shadow: 0 0 0 3px rgba(16,185,129,.2); }
.tc-bento__icon { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(15,23,42,.45); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); color: #fff; border: 1px solid rgba(255,255,255,.12); }
.tc-bento__body { display: flex; flex-direction: column; gap: 0.5rem; }
.tc-bento__title { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.01em; line-height: 1.15; color: #fff; margin: 0; overflow-wrap: break-word; word-break: break-word; hyphens: auto; }
.tc-bento__desc { font-size: 0.9375rem; line-height: 1.5; color: rgba(255,255,255,.82); margin: 0; max-width: 42ch; overflow-wrap: break-word; }
.tc-bento__more { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 0.75rem; padding: 0.55rem 1rem; background: rgba(15,23,42,.55); border: 1px solid rgba(255,255,255,.12); border-radius: 999px; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); color: #fff; font-size: 0.875rem; font-weight: 600; width: fit-content; transition: background .25s; }
.tc-bento__card:hover .tc-bento__more { background: rgba(15,23,42,.8); }
.tc-bento__arrow { display: inline-flex; transition: transform .3s ease; }
.tc-bento__card:hover .tc-bento__arrow { transform: translateX(4px); }


/* Why us / dark */
.tc-whyus { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.tc-whyus::before { content:''; position:absolute; inset:0; background: radial-gradient(60% 40% at 80% 20%, rgba(37,99,235,.2), transparent 70%); }
.tc-whyus > * { position: relative; }
.tc-timeline { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem 1rem; margin-bottom: 3rem; position: relative; }
@media (min-width: 768px) { .tc-timeline { grid-template-columns: repeat(4,1fr); } }
@media (min-width: 768px) {
    .tc-timeline::before { content:''; position:absolute; left: 12.5%; right: 12.5%; top: 32px; height: 2px; background: linear-gradient(90deg, rgba(147,197,253,0) 0%, rgba(147,197,253,.5) 12%, rgba(147,197,253,.5) 88%, rgba(147,197,253,0) 100%); z-index: 0; }
}
.tc-timeline__item { text-align: center; position: relative; z-index: 1; }
.tc-timeline__year { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 1.25rem; background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 60%, #93C5FD 100%); color: #fff; font-weight: 800; font-size: 0.9375rem; box-shadow: 0 12px 28px -8px rgba(59,130,246,.55), inset 0 1px 0 rgba(255,255,255,.4); margin-bottom: 1rem; }
.tc-timeline__item h3 { font-size: 1.0625rem; color: #fff; }
.tc-timeline__item p { margin-top: 0.5rem; font-size: 0.875rem; color: rgba(255,255,255,.65); padding-inline: 0.5rem; }
.tc-reasons { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .tc-reasons { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 992px) { .tc-reasons { grid-template-columns: repeat(3,1fr); } }
.tc-reason { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem 1.25rem; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 1rem; transition: all .25s; }
.tc-reason:hover { background: rgba(255,255,255,.08); transform: translateY(-2px); border-color: rgba(147,197,253,.3); }
.tc-reason__icon { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: rgba(59,130,246,.15); color: #60A5FA; flex-shrink: 0; border: 1px solid rgba(96,165,250,.25); }
.tc-reason h3 { font-size: 1rem; color: #fff; }
.tc-reason p { font-size: 0.875rem; color: rgba(255,255,255,.65); margin-top: 0.25rem; }

/* Process */
.tc-process__grid { display: grid; gap: 3rem; grid-template-columns: 1fr; position: relative; }
@media (min-width: 768px) {
    .tc-process__grid { grid-template-columns: repeat(3,1fr); }
    .tc-process__grid::before { content: ""; position: absolute; left: 16.66%; right: 16.66%; top: 55px; height: 2px; background: linear-gradient(90deg, rgba(59,130,246,0) 0%, rgba(59,130,246,.35) 15%, rgba(59,130,246,.35) 85%, rgba(59,130,246,0) 100%); z-index: 0; }
}
.tc-process__step { text-align: center; position: relative; z-index: 1; }
.tc-process__icon { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 110px; height: 110px; border-radius: 1.5rem; background: var(--brand-light); color: var(--brand); box-shadow: var(--shadow-md); }
.tc-process__num { position: absolute; top: -10px; right: -10px; width: 38px; height: 38px; border-radius: 50%; background: var(--grad); color: #fff; font-weight: 800; font-size: 0.8125rem; display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); }
.tc-process__step h3 { margin-top: 1.5rem; font-size: 1.25rem; }
.tc-process__step p { margin-top: 0.5rem; font-size: 0.9rem; color: var(--muted); max-width: 22rem; margin-inline: auto; }

/* Reviews */
.tc-google-badge { display: inline-flex; align-items: center; gap: 0.75rem; margin-top: 1.75rem; padding: 0.625rem 1.25rem; background: #fff; border: 1px solid var(--border); border-radius: 999px; box-shadow: var(--shadow-sm); font-size: 0.875rem; }
.tc-google-g { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: conic-gradient(from 180deg, #4285F4, #34A853, #FBBC04, #EA4335, #4285F4); color: #fff; font-weight: 800; }
.tc-stars { display: inline-flex; gap: 1px; color: var(--amber); }
.tc-metrics { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 1rem; overflow: hidden; margin-bottom: 2.5rem; }
@media (min-width: 640px) { .tc-metrics { grid-template-columns: repeat(4,1fr); } }
.tc-metrics > div { background: #fff; text-align: center; padding: 1.25rem; }
.tc-metrics__num { font-size: 1.75rem; font-weight: 800; color: var(--ink); }
.tc-metrics__label { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted); margin-top: 0.25rem; }
.tc-reviews__grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .tc-reviews__grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .tc-reviews__grid { grid-template-columns: repeat(4,1fr); } }
.tc-review { background: #fff; border: 1px solid var(--border); border-radius: 1rem; padding: 1.5rem; transition: all .25s; display: flex; flex-direction: column; }
.tc-review:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(37,99,235,.3); }
.tc-review p { margin-top: 1rem; font-size: 0.9375rem; flex: 1; color: var(--ink); }
.tc-review__author { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.tc-avatar { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--brand-light); color: var(--brand); font-weight: 700; font-size: 0.875rem; }
.tc-review__name { font-weight: 700; font-size: 0.875rem; }
.tc-review__role { font-size: 0.75rem; color: var(--muted); }

/* Quality */
/* Quality */
.tc-quality__head { max-width: 820px; margin: 0 auto 3.5rem; text-align: center; }
.tc-quality__pill { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--brand-light); color: var(--brand); padding: 0.5rem 1.1rem; border-radius: 999px; font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.75rem; }
.tc-quality__pill-dot { width: 6px; height: 6px; border-radius: 999px; background: var(--brand); }
.tc-quality__title { font-size: clamp(2.25rem, 5.5vw, 4rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.05; color: var(--ink); }
.tc-quality__sub { margin-top: 1.25rem; color: var(--muted); font-size: 1.0625rem; max-width: 680px; margin-left: auto; margin-right: auto; }

.tc-quality__grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .tc-quality__grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 992px) { .tc-quality__grid { grid-template-columns: repeat(4,1fr); } }
.tc-quality__card { background: #fff; border: 1px solid var(--border); border-radius: 1.5rem; padding: 2rem 1.75rem; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.tc-quality__card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px -15px rgba(37,99,235,.25); border-color: rgba(37,99,235,.25); }
.tc-quality__card:hover .tc-quality__icon { transform: translateY(-4px) scale(1.05); box-shadow: 0 18px 35px -8px rgba(37,99,235,.55); }
.tc-quality__icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 64px; height: 64px; border-radius: 1.25rem;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 60%, #93C5FD 100%);
    color: #fff;
    box-shadow: 0 12px 28px -8px rgba(37,99,235,.45);
    margin-bottom: 1.5rem;
    transition: transform .3s ease, box-shadow .3s ease;
    animation: tcQFloat 5s ease-in-out infinite;
    animation-delay: calc(var(--tc-i, 0) * 0.4s);
}
@keyframes tcQFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.tc-quality__name { font-size: 1.125rem; font-weight: 800; color: var(--ink); letter-spacing: -0.015em; }
.tc-quality__desc { margin-top: 0.6rem; font-size: 0.9375rem; line-height: 1.6; color: var(--muted); }

/* Locations */
/* Locations — interactive map cards */
.tc-locs__head { max-width: 760px; margin: 0 auto 3.5rem; text-align: center; }
.tc-locs__pill { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--brand-light); color: var(--brand); padding: 0.5rem 1.1rem; border-radius: 999px; font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.75rem; }
.tc-locs__pill-dot { width: 6px; height: 6px; border-radius: 999px; background: var(--brand); }
.tc-locs__title { font-size: clamp(2.25rem, 5.5vw, 4.25rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.05; }
.tc-locs__sub { margin-top: 1.25rem; color: var(--muted); font-size: 1.0625rem; }

.tc-locs__grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 992px) { .tc-locs__grid { grid-template-columns: repeat(2,1fr); } }

.tc-loc-card { background: #fff; border: 1px solid var(--border); border-radius: 1.5rem; padding: 1.75rem; box-shadow: 0 10px 40px -20px rgba(15,23,42,.15); display: flex; flex-direction: column; gap: 1.5rem; }
.tc-loc-card__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.tc-loc-card__pill { display: inline-flex; align-items: center; gap: 0.45rem; background: var(--brand-light); color: var(--brand); padding: 0.4rem 0.9rem; border-radius: 999px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.875rem; }
.tc-loc-card__pill-dot { width: 5px; height: 5px; border-radius: 999px; background: var(--brand); }
.tc-loc-card__name { font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 800; letter-spacing: -0.025em; color: var(--ink); margin: 0 0 0.5rem; }
.tc-loc-card__addr { display: flex; align-items: center; gap: 0.45rem; color: var(--muted); font-size: 0.95rem; }
.tc-loc-card__pin { color: var(--brand); display: inline-flex; }
.tc-loc-card__badge { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 1rem; background: linear-gradient(135deg, #3B82F6, #2563EB); color: #fff; box-shadow: 0 10px 25px -5px rgba(37,99,235,.5); flex-shrink: 0; animation: tcFloat 4s ease-in-out infinite; }
@keyframes tcFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

.tc-loc-card__map { border-radius: 1rem; overflow: hidden; border: 1px solid var(--border); aspect-ratio: 16/10; background: var(--surface); }
.tc-loc-card__map-frame { width: 100%; height: 100%; border: 0; display: block; }

.tc-loc-card__panel { background: linear-gradient(180deg, #F8FAFC 0%, #EEF2F7 100%); border: 1px solid var(--border); border-radius: 1rem; padding: 1.25rem 1.4rem; }
.tc-loc-card__panel-head { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: 1rem; flex-wrap: wrap; }
.tc-loc-card__panel-eyebrow { font-size: 0.7rem; font-weight: 700; color: var(--brand); letter-spacing: 0.18em; text-transform: uppercase; }
.tc-loc-card__panel-city { font-size: 1.5rem; font-weight: 800; color: var(--ink); margin: 0.25rem 0 0; letter-spacing: -0.02em; }
.tc-loc-card__route { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--brand); color: #fff; padding: 0.65rem 1.1rem; border-radius: 999px; font-size: 0.875rem; font-weight: 600; box-shadow: var(--shadow-md); transition: transform .2s, background .2s; }
.tc-loc-card__route:hover { background: var(--brand-hover); transform: translateY(-1px); }
.tc-loc-card__route svg { transform: rotate(-45deg); transition: transform .2s; }
.tc-loc-card__route:hover svg { transform: rotate(-45deg) translateX(2px); }
.tc-loc-card__services { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr; gap: 0.6rem; }
@media (min-width: 480px) { .tc-loc-card__services { grid-template-columns: 1fr 1fr; } }
.tc-loc-card__services li { display: flex; align-items: center; gap: 0.6rem; background: #fff; border: 1px solid var(--border); border-radius: 0.75rem; padding: 0.55rem 0.85rem; font-size: 0.875rem; color: var(--ink); font-weight: 500; }
.tc-loc-card__check { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 999px; background: var(--brand-light); color: var(--brand); flex-shrink: 0; }

.tc-loc-card__cities { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.tc-loc-card__city { display: inline-flex; align-items: center; gap: 0.45rem; background: #fff; border: 1px solid var(--border); color: var(--ink); padding: 0.55rem 1.1rem; border-radius: 999px; font-size: 0.875rem; font-weight: 600; cursor: pointer; transition: all .2s; }
.tc-loc-card__city:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-1px); }
.tc-loc-card__city-dot { width: 5px; height: 5px; border-radius: 999px; background: var(--brand); }
.tc-loc-card__city.is-active { background: var(--brand); color: #fff; border-color: var(--brand); box-shadow: var(--shadow-md); }
.tc-loc-card__city.is-active .tc-loc-card__city-dot { background: #fff; }

.tc-location { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2rem; box-shadow: var(--shadow-sm); }
.tc-location__head h3 { margin-top: 0.875rem; font-size: 1.75rem; }
.tc-location__head .tc-muted { margin-top: 0.5rem; }
.tc-location__cities { margin-top: 1.5rem; display: grid; grid-template-columns: repeat(2,1fr); gap: 0.5rem; }
.tc-location__cities li { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.625rem 0.875rem; background: var(--surface); border-radius: 0.625rem; font-size: 0.875rem; font-weight: 500; color: var(--ink); }
.tc-location__cities li .tc-icon { color: var(--brand); }

/* FAQ */
.tc-faq__head { max-width: 760px; margin: 0 auto 3rem; text-align: center; }
.tc-faq__pill { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--brand-light); color: var(--brand); padding: 0.5rem 1.1rem; border-radius: 999px; font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.75rem; }
.tc-faq__pill-dot { width: 6px; height: 6px; border-radius: 999px; background: var(--brand); display: inline-block; }
.tc-faq__title { font-size: clamp(2.25rem, 5.5vw, 4.25rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.05; }
.tc-faq__sub { margin-top: 1.25rem; color: var(--muted); font-size: 1.0625rem; }
.tc-faq__list { max-width: 56rem; margin: 0 auto; display: flex; flex-direction: column; gap: 0.875rem; }
.tc-faq__item { background: #fff; border: 1px solid var(--border); border-radius: 1.25rem; overflow: hidden; transition: all .25s; }
.tc-faq__item.is-open { box-shadow: var(--shadow-md); border-color: rgba(37,99,235,.3); }
.tc-faq__q { display: flex; align-items: center; gap: 1rem; width: 100%; padding: 1.35rem 1.75rem; text-align: left; font-weight: 700; color: var(--ink); font-size: 1.0625rem; }
.tc-faq__qtext { flex: 1; }
.tc-faq__icon { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 999px; background: var(--brand-light); color: var(--brand); flex-shrink: 0; }
.tc-faq__chev { display: inline-flex; align-items: center; justify-content: center; color: var(--muted); transition: transform .25s; }
.tc-faq__item.is-open .tc-faq__chev { transform: rotate(180deg); color: var(--brand); }
.tc-faq__a { padding: 0 1.75rem 1.5rem; }
.tc-faq__a p { color: var(--muted); font-size: 0.9375rem; line-height: 1.7; padding-left: 58px; }
.tc-faq__cta { max-width: 56rem; margin: 1.75rem auto 0; background: #fff; border: 1px solid var(--border); border-radius: 1.25rem; padding: 1.25rem 1.75rem; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 1rem; }
.tc-faq__cta-icon { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 999px; background: var(--brand-light); color: var(--brand); }
.tc-faq__cta-text { font-weight: 700; color: var(--ink); }
.tc-faq__cta-btn { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--brand); color: #fff; padding: 0.75rem 1.4rem; border-radius: 999px; font-weight: 600; box-shadow: var(--shadow-md); transition: transform .2s, background .2s; }
.tc-faq__cta-btn:hover { background: var(--brand-hover); transform: translateY(-1px); }

/* Contact */
.tc-contact__head { text-align: center; max-width: 820px; margin: 0 auto 3rem; }
.tc-contact__head .tc-pill { margin: 0 auto; }
.tc-contact__head .tc-h2 { margin-top: 1.25rem; }
.tc-contact__head .tc-lead { margin: 1rem auto 0; }

.tc-contact__top { display: grid; gap: 1rem; grid-template-columns: 1fr; margin-bottom: 1rem; }
@media (min-width: 768px) { .tc-contact__top { grid-template-columns: repeat(3, 1fr); } }
.tc-contact__top--two { margin-bottom: 1rem; }
@media (min-width: 768px) { .tc-contact__top--two { grid-template-columns: repeat(2, 1fr); } }
.tc-contact__card--full { display: flex; margin-bottom: 1.5rem; }
.tc-contact__mail { white-space: normal !important; overflow: visible !important; word-break: break-all; }

.tc-contact__card { position: relative; display: flex; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem; background: #fff; border: 1px solid var(--border); border-radius: 1rem; color: var(--ink); transition: border-color .2s, transform .2s, box-shadow .2s; }
.tc-contact__card:hover { border-color: var(--brand); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.tc-contact__ic { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 0.875rem; background: var(--brand-light); color: var(--brand); flex-shrink: 0; }
.tc-contact__cardbody { flex: 1; min-width: 0; }
.tc-contact__cardbody .tc-muted { display: block; margin: 0; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; }
.tc-contact__cardbody strong { display: block; font-size: 0.95rem; margin-top: 0.2rem; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tc-contact__sub { margin-top: 0.15rem; font-size: 0.75rem; color: var(--brand); }
.tc-contact__arrow { color: var(--muted); flex-shrink: 0; }
.tc-contact__card:hover .tc-contact__arrow { color: var(--brand); }

.tc-contact__grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 992px) { .tc-contact__grid { grid-template-columns: 1.4fr 1fr; } }

.tc-contact__form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2rem; box-shadow: var(--shadow-md); display: flex; flex-direction: column; gap: 1rem; }
.tc-contact__formhead { display: flex; align-items: center; gap: 0.875rem; margin-bottom: 0.5rem; }
.tc-contact__formic { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 0.75rem; background: var(--brand-light); color: var(--brand); }
.tc-contact__formhead h3 { font-size: 1.25rem; margin: 0; }
.tc-contact__formhead .tc-muted { margin: 0.15rem 0 0; font-size: 0.85rem; }
.tc-contact__row { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .tc-contact__row { grid-template-columns: 1fr 1fr; } }
.tc-contact__form input, .tc-contact__form textarea {
    display: block; width: 100%;
    padding: 0.875rem 1rem; border: 1px solid var(--border); border-radius: 0.75rem;
    font: inherit; color: var(--ink); background: #fff;
    transition: border-color .2s, box-shadow .2s;
}
.tc-contact__form textarea { resize: vertical; min-height: 130px; }
.tc-contact__form input:focus, .tc-contact__form textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(37,99,235,.1); }

.tc-contact__side { display: flex; flex-direction: column; gap: 1.5rem; }
.tc-contact__panel { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 1.5rem; box-shadow: var(--shadow-md); }
.tc-contact__panelhead { display: flex; align-items: center; gap: 0.625rem; color: var(--brand); margin-bottom: 1rem; }
.tc-contact__panelhead h4 { margin: 0; font-size: 1.05rem; color: var(--ink); font-weight: 700; }

.tc-hours { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.tc-hours li { display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-size: 0.9rem; }
.tc-hours li span { color: var(--muted); }
.tc-hours li strong { color: var(--ink); font-weight: 600; }

.tc-locs { display: flex; flex-direction: column; gap: 0.875rem; }
.tc-loc { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; padding: 1rem; border: 1px solid var(--border); border-radius: 0.875rem; background: var(--surface); }
.tc-loc strong { display: block; color: var(--ink); margin-bottom: 0.25rem; }
.tc-loc div > div { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }
.tc-loc__tag { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; color: var(--brand); background: var(--brand-light); padding: 0.25rem 0.5rem; border-radius: 0.375rem; flex-shrink: 0; }

/* Footer */
.tc-footer { background: #fff; border-top: 1px solid var(--border); margin-top: 4rem; }
.tc-footer__main { display: grid; gap: 2.5rem; grid-template-columns: 1fr; padding: 4rem 0 3rem; }
@media (min-width: 600px) { .tc-footer__main { grid-template-columns: 1fr 1fr; gap: 2.5rem 3rem; } }
@media (min-width: 1024px) { .tc-footer__main { grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr; gap: 3rem; } }
.tc-footer__brand { display: flex; align-items: center; gap: 0.75rem; }
.tc-footer__brand img { width: 48px; height: 48px; object-fit: contain; }
.tc-footer__brand-name { font-weight: 800; color: var(--ink); }
.tc-footer__brand-tag { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted); }
.tc-footer__lead { margin-top: 1rem; font-size: 0.9rem; color: var(--muted); max-width: 22rem; }
.tc-footer__social { display: flex; flex-direction: row !important; gap: 0.5rem; margin-top: 1.25rem; padding: 0; list-style: none; }
.tc-footer__social li { margin: 0; }
.tc-footer__social a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border); color: var(--muted); transition: all .2s; }
.tc-footer__social a:hover { color: var(--brand); border-color: var(--brand); }
.tc-footer__heading { font-size: 0.95rem; font-weight: 700; color: var(--ink); margin-top: 2rem; margin-bottom: 1rem; }
.tc-footer__col > .tc-footer__heading:first-child { margin-top: 0; }
.tc-footer ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 0.625rem; font-size: 0.9rem; color: var(--muted); }
.tc-footer__nav a, .tc-footer__legal a, .tc-footer__addr a { color: var(--muted); transition: color .2s; }
.tc-footer__nav a:hover, .tc-footer__legal a:hover, .tc-footer__addr a:hover { color: var(--brand); }
.tc-footer__addr li { display: flex; gap: 0.5rem; align-items: flex-start; }
.tc-footer__addr .tc-icon { color: var(--brand); margin-top: 3px; flex-shrink: 0; }
.tc-footer__legal li { font-size: 0.875rem; }
.tc-footer__bottom { border-top: 1px solid var(--border); padding: 1.25rem 0; }
.tc-footer__bottom-inner { display: flex; flex-direction: column; gap: 0.75rem; align-items: center; text-align: center; font-size: 0.8125rem; color: var(--muted); }
@media (min-width: 600px) { .tc-footer__bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; } }
.tc-footer__bottom-inner ul { display: flex; flex-direction: row; flex-wrap: wrap; gap: 1.25rem; margin: 0; }
.tc-footer__bottom-inner ul li { display: inline-flex; align-items: center; gap: 0.375rem; }
.tc-footer__bottom-inner .tc-icon { color: var(--brand); }

/* Page generic */
.tc-page { padding-top: 3rem; }
.tc-prose { max-width: 48rem; margin-top: 1.5rem; color: var(--muted); }
.tc-prose p { margin: 1rem 0; }

/* Reveal animation */
.tc-reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s, transform .7s; }
.tc-reveal.is-visible { opacity: 1; transform: none; }

/* Results / Before-After */
.tc-results { background: #fff; }
.tc-results__grid { display: grid; gap: 3rem; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 992px) { .tc-results__grid { grid-template-columns: 1fr 1.15fr; gap: 4rem; } }
.tc-results__pill { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--brand-light); color: var(--brand); padding: 0.5rem 1.1rem; border-radius: 999px; font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.5rem; }
.tc-results__pill-dot { width: 6px; height: 6px; border-radius: 999px; background: var(--brand); }
.tc-results__title { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.05; color: var(--ink); }
.tc-results__sub { margin-top: 1.5rem; color: var(--muted); font-size: 1.0625rem; line-height: 1.65; max-width: 520px; }
.tc-results__list { list-style: none; padding: 0; margin: 2rem 0 0; display: flex; flex-direction: column; gap: 0.85rem; }
.tc-results__list li { display: flex; align-items: center; gap: 0.75rem; font-weight: 600; color: var(--ink); font-size: 0.9375rem; }
.tc-results__check { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 999px; background: var(--brand); color: #fff; flex-shrink: 0; box-shadow: 0 6px 14px -4px rgba(37,99,235,.55); }
.tc-results__ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2.25rem; }
.tc-btn { display: inline-flex; align-items: center; gap: 0.55rem; padding: 0.9rem 1.5rem; border-radius: 999px; font-weight: 700; font-size: 0.9375rem; transition: transform .2s, background .2s, box-shadow .2s, color .2s, border-color .2s; cursor: pointer; }
.tc-btn--primary { background: var(--brand); color: #fff; box-shadow: 0 12px 28px -10px rgba(37,99,235,.55); }
.tc-btn--primary:hover { background: var(--brand-hover); transform: translateY(-2px); box-shadow: 0 16px 34px -10px rgba(37,99,235,.7); }
.tc-btn--ghost { background: #fff; color: var(--ink); border: 1px solid var(--border); }
.tc-btn--ghost:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }

.tc-ba { position: relative; aspect-ratio: 16/10; width: 100%; border-radius: 1.5rem; overflow: hidden; border: 1px solid var(--border); background: var(--ink); box-shadow: 0 30px 60px -20px rgba(15,23,42,.35); user-select: none; -webkit-user-select: none; touch-action: none; }
.tc-ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.tc-ba__clip { position: absolute; inset: 0; width: 50%; overflow: hidden; will-change: width; }
.tc-ba__clip .tc-ba__img { width: 100vw; max-width: none; }
@supports (width: 100cqw) { .tc-ba__clip .tc-ba__img { width: 100cqw; } }
.tc-ba { container-type: inline-size; }
.tc-ba__clip .tc-ba__img { width: 100cqw; }
.tc-ba__label { position: absolute; top: 1rem; padding: 0.4rem 0.9rem; border-radius: 999px; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); pointer-events: none; }
.tc-ba__label--before { left: 1rem; background: rgba(15,23,42,.78); }
.tc-ba__label--after  { right: 1rem; background: rgba(37,99,235,.92); }
.tc-ba__divider { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; transform: translateX(-50%); background: #fff; box-shadow: 0 0 24px rgba(0,0,0,.35); pointer-events: none; will-change: left; }
.tc-ba__handle { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 48px; height: 48px; border-radius: 999px; background: #fff; color: var(--ink); display: grid; place-items: center; box-shadow: 0 10px 30px rgba(0,0,0,.3); border: 0; pointer-events: auto; cursor: ew-resize; }
.tc-ba__range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; }

/* ===== Quality / WA / About refinements ===== */

/* WhatsApp pill button (hero) */
.tc-wa-btn { display: inline-flex; align-items: center; gap: 0.625rem; padding: 0.875rem 1.5rem; background: #fff; color: #0f172a; border-radius: 999px; text-decoration: none; font-weight: 600; box-shadow: 0 12px 30px -12px rgba(15,23,42,.35); transition: transform .25s, box-shadow .25s; }
.tc-wa-btn:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -14px rgba(15,23,42,.45); }
.tc-wa-btn__ic { display: inline-flex; align-items: center; justify-content: center; color: #25D366; }
.tc-wa-btn__txt { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.9375rem; }

/* Contact WhatsApp card */
.tc-contact__ic--wa { background: #25D366 !important; color: #fff !important; box-shadow: 0 8px 20px -8px rgba(37,211,102,.55); }
.tc-contact__card--wa { border-color: rgba(37,211,102,.25); }
.tc-contact__card--wa:hover { border-color: rgba(37,211,102,.55); box-shadow: 0 18px 36px -18px rgba(37,211,102,.4); }

/* Trust cards — bigger, animated, no subtext */
.tc-trustbar__grid { gap: 1.25rem; }
.tc-trust-card { padding: 2rem 1rem 1.75rem; border-radius: 1.25rem; box-shadow: 0 6px 18px -12px rgba(15,23,42,.15); }
.tc-trust-card__icon { width: 64px; height: 64px; border-radius: 1.25rem; margin-bottom: 1.1rem; animation: tcTrustFloat 4s ease-in-out infinite; animation-delay: calc(var(--tc-i, 0) * 0.35s); }
.tc-trust-card__title { font-size: 1rem; font-weight: 700; }
.tc-trust-card:hover { transform: translateY(-6px); border-color: rgba(37,99,235,.4); }
.tc-trust-card:hover .tc-trust-card__icon { transform: scale(1.05) rotate(-3deg); transition: transform .35s ease; }
@keyframes tcTrustFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-5px); }
}

/* About — benefits/stats icons circular soft blue */
.tc-benefits__icon { border-radius: 50%; background: rgba(59,130,246,.12); border: 1px solid rgba(59,130,246,.18); }
.tc-about__stat > span { border-radius: 50%; background: rgba(59,130,246,.1); border: 1px solid rgba(59,130,246,.16); }

/* Header WhatsApp visibility on all sizes */
.tc-header__actions .tc-icon-btn--whatsapp { display: inline-flex !important; }

/* Mobile/Tablet: only WhatsApp + Phone + Burger visible; hide "Angebot anfordern" CTA */
@media (max-width: 991px) {
    .tc-header__actions .tc-cta-desktop { display: none !important; }
    .tc-header__actions .tc-icon-btn--phone { display: inline-flex !important; }
}

/* Footer: ensure proper side padding on mobile/tablet so content doesn't stick to the edge */
.tc-footer .tc-container { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
@media (max-width: 600px) {
    .tc-footer .tc-container { padding-left: 1.25rem !important; padding-right: 1.25rem !important; }
    .tc-footer__main { padding: 3rem 0 2rem; }
}

/* Hero stats: remove vertical divider line on mobile/tablet (showed as extra line on left of 100%) */
@media (max-width: 991px) {
    .tc-hero__stat + .tc-hero__stat { border-left: 0 !important; }
}

/* Results CTAs: equal-size buttons on mobile/tablet */
@media (max-width: 991px) {
    .tc-results__ctas { flex-wrap: nowrap !important; gap: 0.75rem !important; }
    .tc-results__ctas .tc-btn {
        flex: 1 1 0 !important;
        min-width: 0 !important;
        justify-content: center !important;
        padding: 0.95rem 1rem !important;
        font-size: 0.95rem !important;
        white-space: nowrap;
    }
}

/* Hero CTAs: equal-size WhatsApp + Anrufen buttons on mobile/tablet */
@media (max-width: 991px) {
    .tc-hero__inner { padding-left: 1.25rem !important; padding-right: 1.25rem !important; }
    .tc-hero__ctas {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0.625rem !important;
        align-items: stretch !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .tc-hero__ctas .tc-wa-btn,
    .tc-hero__ctas .tc-btn--ghost-light {
        flex: 1 1 calc(50% - 0.3125rem) !important;
        min-width: 0 !important;
        height: 52px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        padding: 0 0.75rem !important;
        font-size: 0.9rem !important;
        border-radius: 999px !important;
        white-space: nowrap;
        box-sizing: border-box !important;
    }
    .tc-hero__ctas .tc-wa-btn__ic {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 22px;
        height: 22px;
        flex-shrink: 0;
        color: #25D366 !important;
    }
    .tc-hero__ctas .tc-wa-btn__ic svg { width: 20px; height: 20px; }
    .tc-hero__ctas .tc-wa-btn__txt {
        display: inline-flex;
        align-items: center;
        gap: 0.375rem;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .tc-hero__ctas .tc-wa-btn__txt svg { flex-shrink: 0; }
}

/* Current Referenz parity overrides */
.tc-header { background: rgba(255,255,255,.4); border-bottom-color: transparent; }
.tc-header.is-scrolled { background: rgba(255,255,255,.85); border-bottom-color: rgba(226,232,240,.6); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); }
.tc-header__inner { height: 80px; }
@media (min-width: 992px) { .tc-header__inner { height: 96px; } }
.tc-logo { display: inline-flex; align-items: center; gap: 0.75rem; }
.tc-logo img { height: 64px; width: auto; object-fit: contain; }
@media (min-width: 992px) { .tc-logo img { height: 84px; } }
.tc-logo__brand { display: flex; flex-direction: column; line-height: 1.05; }
.tc-logo__name { color: var(--brand); font-weight: 800; font-size: 1.125rem; }
.tc-logo__sub { color: var(--muted); font-size: 0.5625rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-top: .2rem; }
@media (min-width: 992px) { .tc-logo__name { font-size: 1.25rem; } .tc-logo__sub { font-size: .625rem; } }
.tc-main { padding-top: 80px; }
@media (min-width: 992px) { .tc-main { padding-top: 96px; } }
.tc-hero { min-height: 100vh; min-height: 100svh; margin-top: 0 !important; padding-top: 0 !important; }
@media (min-width: 992px) { .tc-hero { min-height: 100vh; min-height: 100svh; margin-top: 0 !important; padding-top: 0 !important; } }
.tc-hero__video { opacity: .9; }
.tc-hero__overlay { background: radial-gradient(80% 60% at 15% 30%, rgba(37,99,235,.35), transparent 60%), linear-gradient(135deg, rgba(15,23,42,.75), rgba(15,23,42,.35), rgba(15,23,42,.8)); }
.tc-hero__inner { min-height: 100vh; min-height: 100svh; padding-top: 7rem; padding-bottom: 5rem; display: flex; flex-direction: column; justify-content: center; }
.tc-hero__title { font-size: clamp(2rem, 4.5vw, 3.5rem); }
.tc-hero__stat-num { font-size: clamp(3rem, 4vw, 3.25rem); }
.tc-icon-btn--whatsapp { width: 48px; height: 48px; background: #25D366; color: #fff; box-shadow: 0 8px 20px -6px rgba(37,211,102,.6); }
.tc-cta-desktop { padding-left: 1.625rem; padding-right: 1.625rem; height: 52px; }
.tc-trustbar { background: var(--bg); border-bottom: 1px solid var(--border); }
.tc-trustbar__head { max-width: 48rem; margin: 0 auto; text-align: center; }
.tc-trustbar__head .tc-eyebrow-center { margin-bottom: 1.25rem; color: var(--brand); }
.tc-trustbar__head h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--ink); }
.tc-trustbar__head p { margin: 1.25rem auto 0; max-width: 42rem; color: var(--muted); font-size: 1.0625rem; }
.tc-partner-panel { margin-top: 2.5rem; border: 1px solid var(--border); border-radius: 1.5rem; background: #fff; padding: 2rem 1rem; box-shadow: var(--shadow-sm); }
.tc-partner-grid { display: grid; grid-template-columns: repeat(2,1fr); align-items: center; gap: 2rem 1rem; }
@media (min-width: 640px) { .tc-partner-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 992px) { .tc-partner-grid { grid-template-columns: repeat(6,1fr); } .tc-partner-logo + .tc-partner-logo { border-left: 1px solid var(--border); } }
.tc-partner-logo { min-height: 4rem; display: flex; align-items: center; justify-content: center; flex-direction: column; padding: 0 1rem; text-align: center; }
.tc-partner-logo--kaercher span { color:#000; font-size:1.625rem; font-weight:900; letter-spacing:-.04em; line-height:1; }
.tc-partner-logo--kaercher i { width: 6.5rem; max-width: 100%; height: .375rem; background:#FFD500; margin-top:.25rem; }
.tc-partner-logo--nilfisk { flex-direction: row; gap:.5rem; color:#1B2D6B; font-size:1.625rem; font-weight:900; }
.tc-partner-mark { width:1.75rem; height:1.75rem; border-radius:50%; background: conic-gradient(from 0deg,#1B2D6B,#C8102E,#1B2D6B); position:relative; }
.tc-partner-mark::after { content:""; position:absolute; inset:.5rem; border-radius:50%; background:#fff; }
.tc-partner-logo--hako span { color:#E94E1B; font-size:1.75rem; font-weight:900; font-style:italic; line-height:1; }
.tc-partner-logo small { font-size:.625rem; font-weight:700; line-height:1.2; }
.tc-partner-logo--unger span { background:#1E8A3C; color:#fff; border-radius:.375rem; padding:.375rem .75rem; font-size:1.625rem; font-weight:900; font-style:italic; }
.tc-partner-logo--schnell span { color:#1B2D6B; font-size:1.35rem; font-weight:900; }
.tc-partner-logo--schnell small { color:#1B2D6B; letter-spacing:.04em; }
.tc-partner-logo--kiehl span { color:#00A7E1; font-size:1.75rem; font-weight:900; }
.tc-partner-logo--kiehl small { color:#00A7E1; font-style:italic; font-weight:400; }
.tc-about { background: linear-gradient(180deg,#fff 0%, #DBEAFE4D 100%); }
.tc-about__visual img { min-height: 560px; aspect-ratio: auto; }
@media (min-width: 992px) { .tc-about__visual img { min-height: 680px; } }
.tc-cta-banner { background-size: cover; background-position: center; background-color: var(--ink); }
.tc-cta-banner::before { background: linear-gradient(180deg, rgba(15,23,42,.85), rgba(15,23,42,.75), rgba(15,23,42,.9)); }
.tc-cta-banner::after { content:""; position:absolute; inset:0; background: radial-gradient(70% 50% at 50% 50%, rgba(37,99,235,.35), transparent 70%); }
.tc-cta-banner__inner { z-index: 1; }
.tc-whyus .tc-section__head { max-width: 48rem; }
.tc-timeline { margin-top: 4rem; margin-bottom: 4rem; }
.tc-reason__icon { border-radius: .75rem; background: linear-gradient(135deg,#2563EB,#3B82F6); color:#fff; }
.tc-process__grid::before { top: 60px; height: 4px; border-radius: 999px; background: linear-gradient(90deg, rgba(37,99,235,.2), rgba(37,99,235,.6), rgba(59,130,246,.4)); }
.tc-process__icon { width: 120px; height: 120px; border-radius: 1.5rem; background:#fff; box-shadow: var(--shadow-lg); border: 1px solid rgba(37,99,235,.15); }
.tc-process__icon::before { content:""; position:absolute; inset:0; border-radius:inherit; background: linear-gradient(135deg, rgba(37,99,235,.1), rgba(59,130,246,.15)); }
.tc-process__icon lord-icon { position: relative; z-index:1; }
.tc-process__num { width:40px; height:40px; top:-12px; right:-12px; background: linear-gradient(135deg,#2563EB,#3B82F6); }
.tc-process__step h3 { margin-top: 1.75rem; font-size: clamp(1.25rem,2vw,1.5rem); }
.tc-results { background: var(--grad-soft); }
.tc-results__head { max-width: 48rem; margin: 0 auto; text-align: center; }
.tc-results__title { font-size: clamp(2rem, 5vw, 3.75rem); }
.tc-results__sub { margin-left: auto; margin-right: auto; max-width: 42rem; }
.tc-results__pairs { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 3.5rem; }
@media (min-width: 768px) { .tc-results__pairs { grid-template-columns: repeat(2,1fr); gap:2rem; } }
.tc-results__list { margin: 3rem auto 0; max-width: 48rem; flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 1.5rem 2rem; }
.tc-results__check { width: 24px; height: 24px; }
.tc-google-g { width: 32px; height: 32px; border-radius: 0; background: transparent; color: inherit; }
.tc-reviews { background:#fff; }
.tc-metrics { margin-top: 3rem; }
.tc-footer { margin-top: 0; background: var(--grad-soft); }
.tc-footer__social { margin-top: 1.5rem !important; gap: .75rem !important; }
.tc-footer__social a { background: #fff; }

/* Small/medium phones: stack buttons full-width, equal size */
@media (max-width: 480px) {
    .tc-hero__ctas .tc-wa-btn,
    .tc-hero__ctas .tc-btn--ghost-light {
        flex: 1 1 100% !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* ============ Hero Quick Form — Referenz refresh ============ */
.tc-quick-form { border-radius: 2rem; padding: 1.5rem; position: relative; overflow: hidden; }
.tc-quick-form::before, .tc-quick-form::after { content:""; position:absolute; width:200px; height:200px; border-radius:9999px; filter: blur(60px); pointer-events:none; }
.tc-quick-form::before { right:-60px; top:-60px; background: rgba(37,99,235,.12); }
.tc-quick-form::after  { left:-60px; bottom:-60px; background: rgba(56,189,248,.18); }
.tc-quick-form > * { position: relative; z-index: 1; }
.tc-quick-form .tc-eyebrow--blue { font-size: 10px; letter-spacing: .25em; text-transform: uppercase; font-weight: 700; color: var(--brand); }
.tc-quick-form .tc-pill--emerald { font-size: 10px; padding: .25rem .625rem; font-weight: 700; }
.tc-quick-form h3 { font-size: 1.5rem; font-weight: 800; line-height: 1.2; color: var(--ink); margin-top: 1rem; }
.tc-quick-form .tc-muted { color: var(--muted); font-size: .875rem; margin-top: .5rem; }
.tc-form { margin-top: 1.5rem; gap: .75rem; }
.tc-field { padding: .875rem 1rem; border-radius: 1rem; }
.tc-form .tc-btn--primary { height: 3.5rem; border-radius: 1rem; display:flex; align-items:center; justify-content: space-between; padding: 0 1.25rem; font-weight: 600; }
.tc-form .tc-btn--primary .tc-icon { transition: transform .3s; }
.tc-form .tc-btn--primary:hover { transform: translateY(-2px); }
.tc-form .tc-btn--primary:hover .tc-icon { transform: translateX(4px); }

/* ============ Header dropdown ============ */
.tc-nav-has-sub { position: relative; }
.tc-nav-has-sub > .tc-nav-link .tc-nav-chev { font-size: .75rem; margin-left: .25rem; opacity: .7; }
.tc-nav-sub { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px); min-width: 260px; background:#fff; border:1px solid var(--border); border-radius: 1rem; box-shadow: var(--shadow-lg); padding: .5rem; opacity:0; visibility:hidden; transition: all .25s ease; z-index: 60; }
.tc-nav-has-sub:hover .tc-nav-sub, .tc-nav-has-sub:focus-within .tc-nav-sub { opacity:1; visibility: visible; transform: translateX(-50%) translateY(4px); }
.tc-nav-sub ul { list-style: none; margin: 0; padding: 0; }
.tc-nav-sub li a { display: block; padding: .625rem .875rem; border-radius: .625rem; color: var(--ink); font-weight: 500; font-size: .9375rem; text-decoration: none; }
.tc-nav-sub li a:hover { background: var(--brand-light); color: var(--brand); }

/* ============ Subpages: Hero ============ */
.tcs-hero { position: relative; overflow: hidden; background: #060b1a; padding: 5rem 1.5rem 3.5rem; color: #fff; text-align: center; }
@media (min-width: 768px) { .tcs-hero { padding: 6.5rem 1.5rem 4.5rem; } }
.tcs-hero__waves { position: absolute; inset: 0; background:
    radial-gradient(ellipse at 15% 30%, rgba(37,99,235,.35), transparent 55%),
    radial-gradient(ellipse at 90% 60%, rgba(56,189,248,.25), transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(29,78,216,.3), transparent 60%);
    pointer-events:none; }
.tcs-hero__svg { position: absolute; top: 0; height: 100%; pointer-events: none; }
.tcs-hero__svg--right { right: 0; width: 75%; opacity: .7; }
.tcs-hero__svg--left { left: 0; width: 66%; opacity: .5; }
.tcs-hero__inner { position: relative; max-width: 64rem; margin: 0 auto; }
.tcs-hero__pill { display:inline-flex; align-items:center; gap:.5rem; background: rgba(30,58,138,.55); padding: .375rem 1rem; border-radius: 9999px; font-size: .8125rem; font-weight: 600; letter-spacing: .02em; color: #bfdbfe; box-shadow: 0 0 24px rgba(59,130,246,.25); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border:1px solid rgba(96,165,250,.35); text-transform: none; }
.tcs-hero__dot { width:.5rem; height:.5rem; border-radius:9999px; background:#60a5fa; box-shadow: 0 0 10px rgba(96,165,250,.9); }
.tcs-hero__title { margin: 1.5rem 0 0; font-size: clamp(1.875rem, 4vw, 3rem); font-weight: 800; line-height: 1.08; letter-spacing: -.02em; }
.tcs-hero__grad { background: linear-gradient(90deg, #3b82f6, #60a5fa, #3b82f6); -webkit-background-clip: text; background-clip: text; color: transparent; }
.tcs-hero__divider { display:block; width: 4rem; height: 3px; margin: 1.5rem auto 0; border-radius: 9999px; background: linear-gradient(90deg, #3b82f6, #60a5fa); box-shadow: 0 0 20px rgba(96,165,250,.6); }
.tcs-hero__lead { margin: 1.5rem auto 0; max-width: 36rem; font-size: 1rem; color: rgba(255,255,255,.75); line-height: 1.6; }
@media (min-width: 768px) { .tcs-hero__lead { font-size: 1.125rem; } }

/* ============ Subpages: Cards ============ */
.tcs-cards { padding: 0 0 0; margin-top: -8rem; position: relative; z-index: 5; }
.tcs-sub {
    padding: 6rem 0 0;
    margin-top: -8rem;
    position: relative;
    z-index: 5;
    background-color: #f1f5fb;
    background-image: url('../images/subpage-features-bg.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}
@media (min-width: 768px) { .tcs-cards, .tcs-sub { margin-top: -10rem; } }
.tcs-cards__inner { max-width: 80rem; margin: 0 auto; padding: 0 1rem; display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 640px) { .tcs-cards__inner { padding: 0 1.5rem; } }

.tcs-feat { display: grid; gap: 1.5rem; padding: 1.25rem; border-radius: 2rem; background:#fff; border:1px solid rgba(226,232,240,.8); box-shadow: 0 10px 40px -20px rgba(15,23,42,.18); text-decoration:none; color: var(--ink); position: relative; overflow:hidden; transition: all .5s ease; }
.tcs-feat:hover { transform: translateY(-4px); box-shadow: 0 40px 100px -30px rgba(37,99,235,.4); border-color: transparent; }
@media (min-width: 768px) { .tcs-feat { grid-template-columns: 1.05fr 1fr; gap: 2.5rem; padding: 1.5rem; } }
.tcs-feat__img { position: relative; border-radius: 1rem; overflow: hidden; }
.tcs-feat__img img { width: 100%; max-height: 360px; object-fit: cover; display:block; transition: transform .7s; }
.tcs-feat:hover .tcs-feat__img img { transform: scale(1.05); }
.tcs-feat__badge { position: absolute; left: -.75rem; bottom: 1.5rem; width: 4.5rem; height: 4.5rem; display:grid; place-items:center; background: #EBF2FF; border-radius: 1rem; color: var(--brand); box-shadow: 0 10px 30px -8px rgba(37,99,235,.35); border:1px solid rgba(37,99,235,.1); transition: all .5s; }
.tcs-feat:hover .tcs-feat__badge { transform: scale(1.1) rotate(-6deg); }
.tcs-feat__body { padding: .5rem 0; display:flex; flex-direction:column; }

.tcs-card { position: relative; overflow: hidden; display:flex; flex-direction:column; min-height: 260px; padding: 1.5rem; border-radius: 1.75rem; background:#fff; border:1px solid rgba(226,232,240,.8); box-shadow: 0 10px 40px -20px rgba(15,23,42,.18); text-decoration:none; color: var(--ink); transition: all .5s ease; }
.tcs-card:hover { transform: translateY(-6px); box-shadow: 0 30px 70px -20px rgba(37,99,235,.35); border-color: transparent; }
.tcs-card--sub { min-height: 240px; padding: 1.75rem; }
.tcs-grid { display: grid; gap: 1rem; }
@media (min-width: 768px) { .tcs-grid { grid-template-columns: repeat(2, 1fr); } }
.tcs-sub__grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .tcs-sub__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tcs-sub__grid { grid-template-columns: repeat(3, 1fr); } }

.tcs-card__accent { pointer-events:none; position:absolute; left:1.5rem; right:1.5rem; top:.5rem; height:3px; border-radius: 9999px; background: linear-gradient(90deg, #1d4ed8, #3b82f6, #22d3ee); }
.tcs-feat .tcs-card__accent { left:0; right:0; top:0; height:3px; border-radius:0; }
.tcs-card__blob { pointer-events:none; position:absolute; bottom:-6rem; left:-4rem; width:14rem; height:14rem; border-radius: 9999px; background: radial-gradient(circle, rgba(165,180,252,.22), transparent 70%); filter: blur(40px); }
.tcs-card__ghost { pointer-events:none; position:absolute; right:-.75rem; bottom:-.75rem; opacity:.28; color: var(--brand); transition: transform .7s ease; }
.tcs-card__ghost svg, .tcs-card__ghost img { width: 112px; height: 112px; }
.tcs-card:hover .tcs-card__ghost { transform: scale(1.05); }
.tcs-card__meta { display:flex; align-items:center; gap:.75rem; }
.tcs-card__num { font-size:.875rem; font-weight: 800; letter-spacing: .15em; color: var(--brand); }
.tcs-card__num--corner { position:absolute; right: 1.25rem; top: 1.25rem; }
.tcs-card__pill { display:inline-flex; align-items:center; gap:.375rem; padding: .25rem .75rem; border-radius:9999px; background:#EFF6FF; color: var(--brand); font-size: 11px; font-weight: 700; letter-spacing: .12em; border:1px solid #BFDBFE; text-transform: uppercase; }
.tcs-card__pill-dot { width:6px; height:6px; border-radius:9999px; background: var(--brand); }
.tcs-card__title { margin-top:.75rem; font-size: 1.75rem; font-weight: 800; letter-spacing: -.01em; line-height: 1.15; color: var(--ink); }
.tcs-card__title--sm { font-size: 1.125rem; margin-top: 0; }
.tcs-card--sub .tcs-card__title--sm { margin-top: 1.5rem; font-size: 1.25rem; letter-spacing: -.025em; color: #0a1330; }
.tcs-card__desc { margin-top: .75rem; font-size:.875rem; color: var(--muted); line-height: 1.5; max-width: 36rem; }
.tcs-card__desc--clamp { max-width: 62%; display:-webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow:hidden; color: rgba(30,42,82,.8); }
.tcs-card__chips { display:flex; flex-direction: column; gap: .5rem; margin-top: 1.25rem; list-style:none; padding:0; }
@media (min-width: 768px) { .tcs-card__chips { flex-direction: row; flex-wrap: wrap; } }
.tcs-card__chips li { display:inline-flex; align-items:center; gap:.375rem; padding: .375rem .75rem; border-radius:9999px; background:#fff; border:1px solid #e2e8f0; font-size: 12px; font-weight: 500; color: var(--ink); box-shadow: 0 1px 2px rgba(0,0,0,.04); white-space: nowrap; }
.tcs-card__chips li .tc-icon { color: var(--brand); width: 14px; height: 14px; }
.tcs-card__cta { margin-top: 1.5rem; align-self: flex-start; display:inline-flex; align-items:center; gap:.5rem; padding: .625rem 1.25rem; border-radius: 9999px; background: linear-gradient(90deg, #0f1e44, #1d4ed8); color: #fff; font-size:.875rem; font-weight: 600; box-shadow: 0 10px 25px -10px rgba(37,99,235,.6); transition: all .5s; }
.tcs-card:hover .tcs-card__cta, .tcs-feat:hover .tcs-card__cta { gap: .75rem; box-shadow: 0 15px 35px -10px rgba(37,99,235,.8); }
.tcs-card__head { display:flex; align-items: flex-start; gap: 1rem; padding-right: 2.5rem; }
.tcs-card__icon { display:inline-grid; place-items:center; width: 3.5rem; height: 3.5rem; flex-shrink:0; border-radius: 1rem; background: #EBF2FF; color: var(--brand); box-shadow: 0 10px 30px -8px rgba(37,99,235,.35); border:1px solid rgba(37,99,235,.1); transition: all .5s; }
.tcs-card:hover .tcs-card__icon { transform: scale(1.1) rotate(-6deg); }
.tcs-card__icon::before, .tcs-feat__badge::before { content:""; position:absolute; inset:0; border-radius:inherit; background: linear-gradient(135deg, rgba(255,255,255,.6), transparent); pointer-events:none; }
.tcs-card__icon, .tcs-feat__badge { position: relative; }
.tcs-card__icon > .tc-icon, .tcs-card__icon > .tcs-svg-icon, .tcs-feat__badge .tc-icon { position: relative; z-index: 1; }
.tcs-svg-icon { display:block; object-fit: contain; }
.tcs-ghost-blue { filter: none !important; color: #2563EB !important; }
@keyframes icon-pinch {
    0%, 100% { transform: scale(1) rotate(0deg); }
    20% { transform: scale(1.12) rotate(-4deg); }
    40% { transform: scale(.94) rotate(3deg); }
    60% { transform: scale(1.08) rotate(-2deg); }
    80% { transform: scale(.98) rotate(1deg); }
}
.icon-pinch { animation: icon-pinch 2.6s ease-in-out infinite; transform-origin:center; will-change: transform; }
.tcs-card:hover .icon-pinch, .tcs-feat:hover .icon-pinch { animation-duration: 1.2s; }
.tcs-feat__badge-stack { position: relative; display:grid; place-items:center; color: var(--brand); }
.tcs-feat__spark { position:absolute; right:-.375rem; top:-.375rem; width:.875rem; height:.875rem; color: var(--brand); }

/* ============ Subpages: Bullets & big CTA ============ */
.tcs-bullets { display: grid; gap: 1rem; margin-top: 2.5rem; }
@media (min-width: 640px) { .tcs-bullets { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tcs-bullets { grid-template-columns: repeat(3, 1fr); } }
.tcs-bullet { display:flex; align-items:center; gap:.75rem; padding: 1rem 1.25rem; background:#fff; border:1px solid #e2e8f0; border-radius: 1rem; box-shadow: 0 10px 30px -15px rgba(15,23,42,.08); transition: all .3s; }
.tcs-bullet:hover { border-color: #93c5fd; transform: translateY(-2px); }
.tcs-bullet__icon { display:inline-grid; place-items:center; width: 2.5rem; height: 2.5rem; flex-shrink: 0; border-radius: 9999px; background: linear-gradient(135deg, #3b82f6, #1d4ed8); color:#fff; box-shadow: 0 0 18px rgba(59,130,246,.6); }
.tcs-bullet span:last-child { font-size:.875rem; font-weight: 700; color: var(--ink); }
.tcs-bullet__copy { display:flex; flex-direction:column; min-width:0; }
.tcs-bullet__copy strong { font-size:.875rem; font-weight:700; color: var(--ink); line-height:1.3; }
.tcs-bullet__copy small { margin-top:.125rem; font-size:.75rem; color: rgba(30,42,82,.7); line-height:1.35; }

.tcs-sub__rule { display:block; width:2.5rem; height:3px; border-radius:9999px; background: linear-gradient(90deg, #3b82f6, #60a5fa); margin: .75rem 0; }
.tcs-sub__cta { display:flex; flex-wrap:wrap; justify-content:center; gap: 1rem; margin: 3rem 0 1rem; }

/* Buttons */
.tcs-btn { display:inline-flex; align-items:center; gap:.5rem; padding: .875rem 1.75rem; border-radius: 9999px; font-size:.9375rem; font-weight: 600; text-decoration: none; transition: transform .25s ease, background .25s ease, box-shadow .25s ease; cursor: pointer; }
.tcs-btn--primary { background: linear-gradient(90deg, #2563eb, #3b82f6); color:#fff; box-shadow: 0 15px 40px -10px rgba(37,99,235,.7); border:0; }
.tcs-btn--primary:hover { transform: translateY(-2px) scale(1.02); }
.tcs-btn--ghost { color:#fff; border:1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.06); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.tcs-btn--ghost:hover { background: rgba(255,255,255,.12); }
.tcs-btn--outline { color: var(--ink); border:1px solid #cbd5e1; background:#fff; }
.tcs-btn--outline:hover { background: #f8fafc; transform: translateY(-2px); }

/* ============ Big CTA on overview — Dark navy, matches Referenz ============ */
.tcs-bigcta { position: relative; overflow:hidden; margin-top: 3rem; margin-bottom: 0; padding: 2rem; border-radius: 2rem 2rem 0 0; background: linear-gradient(135deg, #050a18 0%, #0a1530 50%, #070d20 100%); display:flex; flex-direction:column; gap: 2rem; box-shadow: 0 40px 100px -30px rgba(15,23,42,.5); }
@media (min-width: 768px) { .tcs-bigcta { flex-direction: row; align-items:center; justify-content: space-between; padding: 3.5rem; } }
.tcs-bigcta::before { content:""; position:absolute; inset:0; z-index:0; pointer-events:none; opacity:.9;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(37,99,235,.55), transparent 55%),
        radial-gradient(circle at 85% 30%, rgba(56,189,248,.3), transparent 50%),
        radial-gradient(circle at 50% 120%, rgba(29,78,216,.4), transparent 60%);
}
.tcs-bigcta__dots { position:absolute; right:1.5rem; top:50%; transform:translateY(-50%); z-index:0; display:grid; grid-template-columns: repeat(14, 4px); gap:6px; opacity:.4; pointer-events:none; }
.tcs-bigcta__dots span { width:4px; height:4px; border-radius:9999px; background:rgba(255,255,255,.5); display:block; }
.tcs-bigcta > * { position: relative; z-index: 1; }
.tcs-bigcta__left { display:flex; flex-direction: column; align-items:center; gap: 1.5rem; text-align: center; }
@media (min-width: 768px) { .tcs-bigcta__left { flex-direction: row; text-align:left; gap: 2rem; } }
.tcs-bigcta__circle { position:relative; display:grid; place-items:center; width: 7rem; height: 7rem; flex-shrink:0; border-radius: 9999px; background: linear-gradient(135deg, #1d4ed8, #3b82f6); color:#fff; box-shadow: 0 0 60px rgba(59,130,246,.7); border:1px solid rgba(255,255,255,.2); }
.tcs-bigcta__circle::after { content:""; position:absolute; inset:-10px; border-radius:9999px; border:1px dashed rgba(255,255,255,.3); -webkit-animation: tcs-spin 22s linear infinite; animation: tcs-spin 22s linear infinite; }
@-webkit-keyframes tcs-spin { to { -webkit-transform: rotate(360deg); transform: rotate(360deg); } }
@keyframes tcs-spin { to { transform: rotate(360deg); } }
.tcs-bigcta h3 { font-size: 1.875rem; font-weight: 800; color:#fff; letter-spacing: -.01em; }
@media (min-width: 768px) { .tcs-bigcta h3 { font-size: 2.25rem; } }
.tcs-bigcta p { margin-top: .75rem; max-width: 28rem; color: rgba(255,255,255,.7); font-size: 1rem; }
.tcs-bigcta__right { display:flex; flex-wrap:wrap; gap: .75rem; justify-content:center; }

/* ============ Clients marquee ============ */
.tc-clients { padding: 4rem 0; border-top:1px solid var(--border); border-bottom:1px solid var(--border); background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%); }
.tc-clients__head { text-align:center; margin-bottom: 2.5rem; }
.tc-clients__eyebrow { font-size:.75rem; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color: var(--brand); margin:0; }
.tc-clients__title { margin-top:.75rem; font-size: clamp(1.5rem, 2.5vw, 1.875rem); font-weight: 800; color: var(--ink); letter-spacing:-.01em; }
.tc-clients__marquee { position:relative; overflow:hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
            mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.tc-clients__track { display:flex; width:max-content; gap: 4rem; -webkit-animation: tc-marquee 35s linear infinite; animation: tc-marquee 35s linear infinite; }
.tc-clients__marquee:hover .tc-clients__track { -webkit-animation-play-state: paused; animation-play-state: paused; }
.tc-clients__item { flex-shrink:0; width:11rem; height:5rem; display:flex; align-items:center; justify-content:center; }
.tc-clients__item img { max-height:4rem; max-width:100%; -o-object-fit:contain; object-fit:contain; transition: transform .25s ease; }
.tc-clients__item img:hover { transform: scale(1.05); }
@-webkit-keyframes tc-marquee { from { -webkit-transform: translateX(0); transform: translateX(0); } to { -webkit-transform: translateX(-50%); transform: translateX(-50%); } }
@keyframes tc-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ Mobile fixes v5.4.2 ============ */
@media (max-width: 600px) {
    /* Header: smaller logo + icon buttons */
    .tc-logo img { height: 44px; }
    .tc-logo__name { font-size: .95rem; }
    .tc-logo__sub { font-size: .5rem; letter-spacing:.06em; }
    .tc-logo { gap: .5rem; }
    .tc-header__actions { gap: .375rem; }
    .tc-header__actions .tc-icon-btn,
    .tc-header__actions .tc-icon-btn--whatsapp,
    .tc-header__actions .tc-icon-btn--phone,
    .tc-burger { width: 36px !important; height: 36px !important; }
    .tc-header__actions .tc-icon-btn svg,
    .tc-burger svg { width: 16px; height: 16px; }

    /* Partner panel: shrink so logos don't touch edges */
    .tc-partner-panel { padding: 1.25rem .75rem; border-radius: 1.25rem; margin-left: .25rem; margin-right: .25rem; }
    .tc-partner-grid { gap: 1.5rem .5rem; }
    .tc-partner-logo { padding: 0 .25rem; min-height: 3rem; }
    .tc-partner-logo--kaercher span { font-size: 1.1rem; }
    .tc-partner-logo--kaercher i { width: 4.5rem; height: .25rem; }
    .tc-partner-logo--nilfisk { font-size: 1.05rem; gap:.35rem; }
    .tc-partner-mark { width: 1.15rem; height: 1.15rem; }
    .tc-partner-mark::after { inset: .3rem; }
    .tc-partner-logo--hako span { font-size: 1.2rem; }
    .tc-partner-logo--unger span { font-size: 1.05rem; padding: .25rem .55rem; }
    .tc-partner-logo--schnell span { font-size: .95rem; }
    .tc-partner-logo--schnell small,
    .tc-partner-logo small { font-size: .5rem; }
    .tc-partner-logo--kiehl span { font-size: 1.2rem; }
}

/* CTA block on subpages: stacked vertical layout on tablet and below */
@media (max-width: 900px) {
    .tcs-bigcta { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 2.25rem 1.5rem; gap: 1.5rem; border-radius: 1.5rem 1.5rem 0 0; margin-left: .5rem; margin-right: .5rem; }
    .tcs-bigcta__dots { display: none; }
    .tcs-bigcta__left { flex-direction: column; align-items: center; text-align: center; gap: 1rem; }
    .tcs-bigcta__circle { width: 5rem; height: 5rem; }
    .tcs-bigcta__circle svg { width: 28px; height: 28px; }
    .tcs-bigcta h3 { font-size: 1.5rem; }
    .tcs-bigcta p { font-size: .95rem; margin-top:.5rem; max-width: 100%; }
    .tcs-bigcta__right { width: 100%; flex-direction: column; align-items: center; gap: .625rem; }
    .tcs-bigcta__right .tc-btn { width: 100%; max-width: 320px; justify-content: center; padding: .75rem 1rem; font-size: .9rem; }
}
@media (max-width: 480px) {
    .tcs-bigcta { margin-left: 0; margin-right: 0; border-radius: 1.25rem 1.25rem 0 0; padding: 1.5rem 1rem; }
    .tcs-bigcta h3 { font-size: 1.35rem; }
}


/* ====== Header nav layout fix (v5.4.6) ====== */
.tc-header__inner { gap: 1rem; flex-wrap: nowrap; }
.tc-logo { flex: 0 0 auto; }
.tc-nav { flex: 1 1 auto; min-width: 0; display: none; }
.tc-header__actions { flex: 0 0 auto; white-space: nowrap; }
.tc-nav-list { display: flex; flex-wrap: nowrap; justify-content: center; align-items: center; gap: .25rem; margin: 0; padding: 0; list-style: none; }
.tc-nav-list > li { flex: 0 0 auto; }
.tc-nav-list a, .tc-nav-link { white-space: nowrap; padding: .5rem .75rem; font-size: .95rem; display: inline-flex; align-items: center; }
@media (min-width: 1100px) {
    .tc-nav { display: block; }
    .tc-burger { display: none; }
    .tc-cta-desktop { display: inline-flex; }
    .tc-icon-btn--phone { display: none; }
}
@media (min-width: 1280px) {
    .tc-nav-list { gap: .375rem; }
    .tc-nav-list a, .tc-nav-link { padding: .5rem .9rem; font-size: 1rem; }
}
@media (max-width: 1099.98px) {
    .tc-nav { display: none !important; }
    .tc-burger { display: inline-flex !important; }
    .tc-cta-desktop { display: none !important; }
}

/* ===== v5.7.0 — Subpage parity additions ===== */

/* Hero background image */
.tcs-hero--bg { padding-bottom: 3.5rem; }
@media (min-width: 768px) { .tcs-hero--bg { padding-bottom: 4.5rem; } }
.tcs-hero__photo { position: absolute; inset: 0; background-image: var(--tcs-hero-bg); background-size: cover; background-position: center; opacity: .4; z-index: 0; pointer-events: none; }
.tcs-hero__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,11,26,.85) 0%, rgba(6,11,26,.75) 50%, rgba(6,11,26,.95) 100%); z-index: 0; pointer-events: none; }
.tcs-hero__inner { position: relative; z-index: 2; padding: 0 1.5rem; }

/* Trust row (hero) */
.tcs-trust { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.5rem 1rem; max-width: 64rem; margin: 2.5rem auto 0; }
@media (min-width: 768px) { .tcs-trust { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1.5rem; } }
.tcs-trust__item { display: flex; flex-direction: column; align-items: center; text-align: center; }
.tcs-trust__icon { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); color: #fff; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.tcs-trust__icon svg { width: 18px; height: 18px; }
.tcs-trust__text { margin-top: .625rem; max-width: 160px; font-size: .8125rem; line-height: 1.3; color: rgba(255,255,255,.82); }

/* Hero CTAs */
.tcs-hero__cta { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; justify-content: center; align-items: center; }
@media (min-width: 640px) { .tcs-hero__cta { flex-direction: row; } }
.tcs-btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: 1rem 2rem; border-radius: 9999px; font-size: .875rem; font-weight: 700; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; line-height: 1; }
.tcs-btn--primary { background: linear-gradient(90deg,#2563eb,#3b82f6); color: #fff; box-shadow: 0 10px 40px -10px rgba(59,130,246,.8); border: 1px solid rgba(96,165,250,.4); }
.tcs-btn--primary:hover { transform: scale(1.02); }
.tcs-btn--ghost { background: #fff; color: #0a1330; border: 1px solid rgba(226,232,240,.8); box-shadow: 0 4px 20px -4px rgba(15,23,42,.15); }
.tcs-btn--ghost:hover { transform: scale(1.02); background: #f8fafc; }
.tcs-btn--ghost .tc-icon { color: #0a1330; }

/* Sub-page features heading */
.tcs-sub { background-color: #fff; background-image: url('../images/subpage-features-bg.png'); background-repeat: repeat; background-size: 1400px auto; padding: 3.5rem 0 1rem; position: relative; }
@media (min-width: 768px) { .tcs-sub { padding: 5rem 0 2rem; } }
.tcs-sub__head { text-align: center; max-width: 50rem; margin: 0 auto 3rem; padding: 0 1rem; }
.tcs-sub__title { font-size: clamp(1.875rem, 4vw, 3rem); font-weight: 800; color: #0a1330; letter-spacing: -.02em; line-height: 1.1; margin: 0; }
.tcs-sub__title .tc-grad { background: linear-gradient(90deg,#1D4ED8,#2563EB); -webkit-background-clip: text; background-clip: text; color: transparent; }
.tcs-sub__divider { display: block; width: 64px; height: 3px; margin: 1rem auto 0; border-radius: 999px; background: linear-gradient(90deg,#3b82f6,#60a5fa); }
.tcs-sub__lead { margin: 1.25rem auto 0; max-width: 42rem; font-size: 1.0625rem; line-height: 1.6; color: rgba(30,42,82,.8); }

/* CTA row beneath bullets */
.tcs-cta-row { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; justify-content: center; align-items: center; }
@media (min-width: 640px) { .tcs-cta-row { flex-direction: row; } }

/* Before/After section header on subpages */
.tc-ba-section { padding: 3.5rem 0; }
@media (min-width: 768px) { .tc-ba-section { padding: 5rem 0; } }
.tc-ba__head { text-align: center; max-width: 50rem; margin: 0 auto 3rem; padding: 0 1rem; }
.tcs-eyebrow { display: inline-flex; align-items: center; gap: .5rem; padding: .375rem 1rem; border-radius: 999px; border: 1px solid rgba(37,99,235,.2); background: #EFF6FF; color: #1D4ED8; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .2em; margin-bottom: 1.5rem; }
.tcs-eyebrow__dot { width: 6px; height: 6px; border-radius: 999px; background: #2563EB; }
.tc-ba__title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; color: #0a1330; letter-spacing: -.02em; line-height: 1.05; margin: 0; }
.tc-ba__title .tc-grad { background: linear-gradient(90deg,#1D4ED8,#2563EB); -webkit-background-clip: text; background-clip: text; color: transparent; }
.tc-ba__sub { margin: 1.25rem auto 0; max-width: 42rem; font-size: 1.0625rem; color: rgba(30,42,82,.7); }
.tc-results__pairs--duo { display: grid; gap: 1.5rem; grid-template-columns: 1fr; max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 768px) { .tc-results__pairs--duo { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.tc-results__pairs--single { max-width: 48rem; margin: 0 auto; padding: 0 1.5rem; }
.tc-ba__checks { list-style: none; padding: 0; margin: 3rem auto 0; max-width: 48rem; display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem 2rem; font-size: .875rem; color: #0a1330; }
.tc-ba__checks li { display: inline-flex; align-items: center; gap: .75rem; }
.tc-ba__checks .tc-results__check { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 999px; background: #2563EB; color: #fff; }

/* BigCTA wrapper section (own padding) */
.tcs-bigcta-section { padding: 3.5rem 0 4.5rem; }
@media (min-width: 768px) { .tcs-bigcta-section { padding: 5rem 0 6rem; } }

/* 5-card bento (homepage) — matches Referenz layout: big Gebäudereinigung 2x2 left, two right stacked, bottom row Möbel + Wohnung */
@media (min-width: 1024px) {
    .tc-bento.tc-bento--5 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-auto-rows: 280px;
        grid-template-areas:
            "a a b"
            "a a c"
            "d e e";
    }
    .tc-bento--5 .tc-bento__card--a { grid-area: a; min-height: 0; }
    .tc-bento--5 .tc-bento__card--b { grid-area: b; }
    .tc-bento--5 .tc-bento__card--c { grid-area: c; }
    .tc-bento--5 .tc-bento__card--d { grid-area: d; }
    .tc-bento--5 .tc-bento__card--e { grid-area: e; }
    .tc-bento--5 .tc-bento__card--a .tc-bento__title { font-size: clamp(2rem, 2.6vw, 2.5rem); }
    .tc-bento--5 .tc-bento__card--e .tc-bento__title { font-size: 1.75rem; }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .tc-bento.tc-bento--5 { grid-template-columns: 1fr 1fr; grid-template-areas: "a a" "b c" "d d" "e e"; }
    .tc-bento--5 .tc-bento__card--a { grid-column: 1 / -1; min-height: 360px; }
    .tc-bento--5 .tc-bento__card--d,
    .tc-bento--5 .tc-bento__card--e { grid-column: 1 / -1; }
    .tc-bento--5 .tc-bento__card--a .tc-bento__title { font-size: 2.25rem; }
}

/* Sub features bullets row spacing */
.tcs-bullets { margin-top: 2.5rem; display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .tcs-bullets { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .tcs-bullets { grid-template-columns: repeat(3, minmax(0,1fr)); } }

/* FAQ — initial-open state for SSR-rendered subpage FAQs */
.tc-faq__item.is-open .tc-faq__a { display: block; }
.tc-faq__item .tc-faq__a[hidden] { display: none; }

/* ===== v5.7.1 — Browser compatibility & icon color normalization ===== */
/* Prevent UA link color (purple/blue) leaking into inline SVG icons across Firefox/Safari */
/* Only inherit color — never force fill, so Lucide stroke icons (fill="none") stay outlined */
a svg, button svg, .tc-icon, .tcs-icon svg, .tc-bento svg, .tcs-trust svg, .tc-ba__checks svg { color: inherit; }
svg.tc-icon[fill="none"], a svg[fill="none"], button svg[fill="none"] { fill: none !important; }
a:visited, a:visited svg { color: inherit; }
a:visited { color: inherit; }
/* Normalize SVG defaults — some browsers default to black fill */
svg:not([fill]) { fill: none; }
svg [stroke="currentColor"] { stroke: currentColor; }
/* Force-color icon wrappers commonly used in the theme */
.tcs-trust__icon, .tc-bento__icon, .tc-ba__checks .tc-results__check { color: #fff; }
.tc-icon--blue, .tcs-feature__icon { color: #2563EB; }
/* Box-sizing reset (older browsers / WP admin overrides) */
.touch-clean-root, .touch-clean-root *, .touch-clean-root *::before, .touch-clean-root *::after { box-sizing: border-box; }
/* backdrop-filter fallback for Firefox */
@supports not (backdrop-filter: blur(8px)) {
  .tcs-pill, .tcs-eyebrow, [class*="backdrop"] { background-color: rgba(255,255,255,0.9); }
}

/* ===== v5.7.5 — final Referenz parity fixes ===== */
/* Homepage hero typography: match the smaller Referenz headline scale. */
.tc-hero__title {
    font-size: clamp(1.75rem, 3.6vw, 3rem) !important;
    line-height: 1.1 !important;
    max-width: 46rem;
}
@media (max-width: 767px) {
    .tc-hero__title { font-size: clamp(1.65rem, 8vw, 2.25rem) !important; }
}

/* Subpage hero: compact layout with visible trust row + both buttons, no overlap from following section. */
.tcs-hero,
.tcs-hero--bg {
    min-height: auto !important;
    padding: 2.5rem 1.5rem 3.75rem !important;
    z-index: 2;
}
@media (min-width: 768px) {
    .tcs-hero,
    .tcs-hero--bg { padding: 2.75rem 1.5rem 4rem !important; }
}
.tcs-hero__inner {
    max-width: 64rem !important;
    padding: 0 !important;
}
.tcs-hero__pill {
    padding: .42rem 1rem !important;
    font-size: .75rem !important;
    font-weight: 700 !important;
    letter-spacing: .02em !important;
}
.tcs-hero__title {
    margin-top: 1.35rem !important;
    font-size: clamp(2rem, 4.5vw, 3.25rem) !important;
    line-height: 1.04 !important;
    text-wrap: balance;
    overflow-wrap: anywhere;
}
.tcs-hero__divider { margin-top: 1.35rem !important; }
.tcs-hero__lead {
    margin-top: 1.35rem !important;
    max-width: 38rem !important;
    font-size: clamp(.95rem, 1.6vw, 1.125rem) !important;
    line-height: 1.55 !important;
}
.tcs-trust {
    margin-top: 2.25rem !important;
    gap: 1.25rem 1rem !important;
}
.tcs-trust__icon {
    width: 42px !important;
    height: 42px !important;
    background: rgba(255,255,255,.12) !important;
    border-color: rgba(255,255,255,.28) !important;
}
.tcs-trust__text {
    margin-top: .65rem !important;
    font-size: .8125rem !important;
    font-weight: 700 !important;
    line-height: 1.22 !important;
    color: rgba(255,255,255,.88) !important;
}
.tcs-hero__cta {
    display: flex !important;
    margin-top: 1.6rem !important;
    gap: .85rem !important;
    position: relative;
    z-index: 4;
}
.tcs-hero__cta .tcs-btn {
    min-width: 132px;
    height: 44px;
    padding: 0 1.5rem !important;
    font-size: .8125rem !important;
}

/* The feature section must start after the hero, not cover the trust row/buttons. */
.tcs-sub {
    margin-top: 0 !important;
    padding-top: 4.5rem !important;
    z-index: 1 !important;
}
@media (min-width: 768px) {
    .tcs-sub { padding-top: 5rem !important; }
}

/* Subpage feature cards: prevent squeezed/cut text while preserving the Referenz icon watermark layout. */
.tcs-card { isolation: isolate; }
.tcs-card__accent,
.tcs-card__icon,
.tcs-card__title,
.tcs-sub__rule,
.tcs-card__desc {
    position: relative;
    z-index: 2;
}
.tcs-card__ghost { z-index: 1; opacity: .22 !important; }
.tcs-card--sub {
    min-height: 0 !important;
    padding: 1.75rem !important;
    display: flex !important;
    flex-direction: column !important;
}
/* Match Referenz spacing: icon at top, title close beneath, then short divider, then description */
.tcs-card--sub .tcs-card__icon { margin-top: .25rem; }
.tcs-card--sub .tcs-card__title--sm { margin-top: 1.25rem !important; font-size: 1.25rem !important; line-height: 1.2 !important; }
.tcs-card--sub .tcs-sub__rule { margin: .625rem 0 !important; }
.tcs-card--sub .tcs-card__desc { margin-top: .5rem !important; }
.tcs-card__desc--clamp {
    max-width: 72% !important;
    display: block !important;
    overflow: visible !important;
    -webkit-line-clamp: unset !important;
    overflow-wrap: anywhere;
    hyphens: auto;
}
@media (max-width: 639px) {
    .tcs-card__desc--clamp { max-width: 100% !important; }
    .tcs-card__ghost { opacity: .12 !important; }
    .tcs-hero__cta .tcs-btn { width: min(100%, 280px); }
}

/* Homepage service cards: match Referenz bento proportions and stop long German labels overflowing. */
.tc-services__title { font-size: clamp(1.875rem, 4vw, 3rem) !important; }
.tc-bento__card { border-radius: 1.5rem !important; }
.tc-bento__title {
    overflow-wrap: anywhere !important;
    word-break: normal !important;
    hyphens: auto !important;
}
@media (min-width: 1024px) {
    .tc-bento--5 .tc-bento__card--b .tc-bento__title,
    .tc-bento--5 .tc-bento__card--c .tc-bento__title,
    .tc-bento--5 .tc-bento__card--d .tc-bento__title { font-size: 1.35rem !important; }
    .tc-bento--5 .tc-bento__card--e .tc-bento__title { font-size: 1.55rem !important; }
}

/* ===== v5.7.6 — Header/logo sizing, hero buttons, BigCTA contrast, contact icon fix ===== */

/* Compact header to match Referenz */
.tc-logo img { height: 40px !important; }
@media (min-width: 992px) { .tc-logo img { height: 44px !important; } }
.tc-logo__name { font-size: .95rem !important; letter-spacing: -.01em; }
.tc-logo__sub { font-size: .5rem !important; letter-spacing: .08em; }
@media (min-width: 992px) {
  .tc-logo__name { font-size: 1.0625rem !important; }
  .tc-logo__sub  { font-size: .5625rem !important; }
}
.tc-nav-list a, .tc-nav-link { padding: .5rem 1rem !important; font-size: .9375rem !important; font-weight: 500 !important; }
.tc-header__inner { height: 72px !important; }
@media (min-width: 992px) { .tc-header__inner { height: 80px !important; } }
.tc-cta-desktop { padding-left: 1.25rem !important; padding-right: 1.25rem !important; height: 44px !important; font-size: .9375rem !important; }
.tc-icon-btn { width: 38px !important; height: 38px !important; }

/* Hero buttons (homepage): match subpage style — blue gradient "Anfrage senden" + white "Jetzt anrufen" with outline phone icon */
.tc-hero__ctas .tc-btn--anfrage {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: 1rem 1.75rem; border-radius: 9999px;
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  color: #fff !important; font-weight: 700; font-size: .9375rem;
  box-shadow: 0 10px 40px -10px rgba(59,130,246,.8);
  border: 1px solid rgba(96,165,250,.4);
  transition: transform .2s;
}
.tc-hero__ctas .tc-btn--anfrage:hover { transform: scale(1.02); }
.tc-hero__ctas .tc-btn--whatsapp-hero {
  background: #25D366 !important;
  color: #062e1b !important;
  border-color: rgba(255,255,255,.22) !important;
  box-shadow: 0 14px 36px -12px rgba(37,211,102,.8) !important;
}
.tc-hero__ctas .tc-btn--whatsapp-hero svg {
  color: currentColor !important;
  fill: currentColor !important;
  stroke: none !important;
}
.tc-hero__ctas .tc-btn--anrufen {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: 1rem 1.75rem; border-radius: 9999px;
  background: #fff; color: #0a1330 !important; font-weight: 700; font-size: .9375rem;
  box-shadow: 0 4px 20px -4px rgba(15,23,42,.15);
  border: 1px solid rgba(226,232,240,.8);
  transition: transform .2s;
}
.tc-hero__ctas .tc-btn--anrufen:hover { transform: scale(1.02); background: #f8fafc; }
.tc-hero__ctas .tc-btn--anrufen svg { color: #0a1330; fill: none !important; }
.tc-hero__ctas .tc-btn--anfrage svg { color: #fff; }
.tc-icon-btn--whatsapp svg {
  fill: currentColor !important;
  stroke: none !important;
}

/* BigCTA on subpages — force white text on the primary button */
.tcs-bigcta__right .tcs-btn--primary,
.tcs-bigcta__right .tcs-btn--primary * { color: #fff !important; }
.tcs-bigcta__right .tcs-btn--primary svg { color: #fff !important; fill: none !important; }
.tcs-bigcta__right .tcs-btn--ghost { color: #0a1330 !important; }
.tcs-bigcta__right .tcs-btn--ghost svg { color: #0a1330 !important; fill: none !important; }

/* Subpage hero ghost button — outlined phone icon */
.tcs-hero__cta .tcs-btn--ghost svg,
.tcs-btn--ghost svg { fill: none !important; }

/* Contact card email icon — keep outlined envelope (no solid square) */
.tc-contact__ic svg { fill: none !important; color: var(--brand); }
.tc-contact__ic svg.tc-icon--whatsapp,
.tc-contact__ic svg.tc-icon--whatsapp path { fill: currentColor !important; }
.tc-contact__ic--wa svg { color: #fff; }
.tc-contact__ic--wa svg.tc-icon--whatsapp,
.tc-contact__ic--wa svg.tc-icon--whatsapp path { fill: #ffffff !important; }

/* ===== v5.7.8 parity fixes ===== */

/* Hero: white "WhatsApp Anfrage →" pill with small green WhatsApp icon */
.tc-hero__ctas .tc-btn--whatsapp-pill {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .9rem 1.5rem; border-radius: 9999px;
  background: #fff; color: #0a1330 !important; font-weight: 700; font-size: .9375rem;
  box-shadow: 0 4px 20px -4px rgba(15,23,42,.15);
  border: 1px solid rgba(226,232,240,.85);
  transition: transform .2s;
}
.tc-hero__ctas .tc-btn--whatsapp-pill:hover { transform: scale(1.02); background: #f8fafc; }
.tc-hero__ctas .tc-btn--whatsapp-pill svg { fill: none !important; stroke: currentColor; color: #0a1330; }
.tc-hero__ctas .tc-btn--whatsapp-pill__ic {
  display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 9999px;
  background: #25D366; color: #fff; flex-shrink: 0;
}
.tc-hero__ctas .tc-btn--whatsapp-pill__ic svg { fill: currentColor !important; stroke: none !important; color: #fff; }

/* Subpage BigCTA — match Referenz: dots on LEFT, bigger circle with dashed ring */
.tcs-bigcta__dots { right: auto !important; left: 2rem !important; grid-template-columns: repeat(10, 4px) !important; opacity: .35 !important; }
@media (max-width: 768px) { .tcs-bigcta__dots { display: none !important; } }
.tcs-bigcta__circle { width: 8rem !important; height: 8rem !important; }
.tcs-bigcta__circle::after { inset: -14px !important; border-width: 1.5px !important; border-color: rgba(255,255,255,.35) !important; }
.tcs-bigcta__circle svg { width: 40px; height: 40px; }
.tcs-bigcta { padding: 3rem 2.5rem; }
@media (min-width: 768px) { .tcs-bigcta { padding: 3.5rem 4rem; } }

/* Subpage: white background for BA section and below (FAQ + BigCTA wrap) */
.page-template-page-leistungen-sub .tcs-white,
.page-template-page-leistungen-sub .tc-ba-section,
.page-template-page-leistungen-sub .tc-faq,
.page-template-page-leistungen-sub .tcs-bigcta-section,
.page-template-page-leistungen-sub .tc-quality,
.page-template-page-leistungen-sub .tc-reviews,
.page-template-page-leistungen-sub .tc-process {
  background: #ffffff !important;
}

/* Quality icons — larger blue gradient tile to match Referenz */
.tc-quality__icon { width: 76px !important; height: 76px !important; border-radius: 1.5rem !important; }
.tc-quality__icon svg { width: 32px !important; height: 32px !important; fill: none !important; stroke: currentColor; color: #fff; }
.tc-quality__card { padding: 2.25rem 1.75rem !important; }

/* ============================================
   v5.7.9 — Globally reduce heading sizes
   Make section titles more compact across all pages
   ============================================ */
.tc-h1 { font-size: clamp(1.75rem, 3.5vw, 2.5rem) !important; }
.tc-h2 { font-size: clamp(1.5rem, 2.8vw, 2.125rem) !important; }
.tc-quality__title,
.tc-locs__title,
.tc-faq__title,
.tc-services__title { font-size: clamp(1.5rem, 2.8vw, 2.125rem) !important; line-height: 1.15 !important; letter-spacing: -0.02em !important; }
.tc-cta-banner__title { font-size: clamp(1.625rem, 3vw, 2.375rem) !important; line-height: 1.15 !important; }
.tc-hero__title { font-size: clamp(1.5rem, 3vw, 2.25rem) !important; line-height: 1.15 !important; }
.tcs-hero__title { font-size: clamp(1.5rem, 2.8vw, 2.125rem) !important; line-height: 1.15 !important; }
.tc-loc-card__name { font-size: clamp(1.125rem, 1.6vw, 1.375rem) !important; }
.tc-loc-card__panel-city { font-size: 1.125rem !important; }
.tc-bento__title { font-size: 1.125rem !important; }

/* Body text — single column, no justify, normal flow */
.tc-lead, .tc-hero__lead, .tc-quality__sub, .tc-locs__sub, .tc-faq__sub,
.tcs-hero__lead, .tc-section__head .tc-lead, .tc-about__text p,
.tc-bento__desc, .tc-cta-banner__lead {
  text-align: left !important;
  column-count: 1 !important;
  columns: auto !important;
  hyphens: none !important;
}
.tc-section__head, .tc-hero__head { text-align: left; }
.tc-section__head.tc-section__head--center,
.tc-section__head[style*="text-align: center"] { text-align: center; }

/* ============================================
   v5.8.0 — BigCTA Referenz parity + Header WhatsApp icon
   ============================================ */

/* BigCTA: fully rounded corners (not just top), row layout, side-by-side buttons */
.tcs-bigcta {
  border-radius: 2rem !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1.5rem !important;
}
.tcs-bigcta__left { flex-direction: row !important; text-align: left !important; align-items: center !important; gap: 1.5rem !important; }
.tcs-bigcta__right { flex-wrap: nowrap !important; flex-direction: row !important; gap: .75rem !important; }
.tcs-bigcta__right .tcs-btn { white-space: nowrap; width: auto !important; max-width: none !important; }
.tcs-bigcta h3 { white-space: nowrap; font-size: clamp(1.25rem, 2vw, 1.75rem) !important; }
.tcs-bigcta p { font-size: .9375rem !important; line-height: 1.5 !important; max-width: 22rem !important; margin-top: .35rem !important; }
.tcs-bigcta__circle { width: 5.5rem !important; height: 5.5rem !important; }
.tcs-bigcta__circle svg { width: 28px !important; height: 28px !important; }
.tcs-bigcta__circle::after { inset: -8px !important; }
.tcs-bigcta__dots { left: auto !important; right: 1.5rem !important; grid-template-columns: repeat(8, 3px) !important; gap: 4px !important; }

@media (max-width: 900px) {
  .tcs-bigcta { flex-direction: column !important; border-radius: 1.5rem !important; padding: 2rem 1.5rem !important; }
  .tcs-bigcta__left { flex-direction: column !important; text-align: center !important; }
  .tcs-bigcta h3 { white-space: normal; }
  .tcs-bigcta__right { flex-wrap: wrap !important; justify-content: center !important; }
  .tcs-bigcta__dots { display: none !important; }
}

/* Header WhatsApp icon button — green circle with white WhatsApp glyph */
.tc-icon-btn--whatsapp { background: #25D366 !important; color: #fff !important; }
.tc-icon-btn--whatsapp svg { fill: #ffffff !important; stroke: none !important; color: #fff !important; }
.tc-icon-btn--whatsapp svg path { fill: #ffffff !important; }

/* ---- v5.8.1: centered services head + cross-browser icon hardening ---- */
.tc-services__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 880px;
}
.tc-services__head--center .tc-services__title {
  text-align: center;
  white-space: normal;
  max-width: 100%;
}
.tc-services__head--center .tc-services__lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 640px;
  text-align: center;
}
.tc-services__head--center .tc-locs__pill {
  margin-left: auto;
  margin-right: auto;
}

/* Browser compatibility: enforce SVG fill/stroke consistency across Chrome, Firefox, Safari */
.tc-icon,
.tcs-svg-icon,
a svg,
button svg,
.tc-bento svg,
.tcs-trust svg,
.tc-quality__icon svg,
.tcs-feat__badge svg {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  shape-rendering: geometricPrecision;
}
/* Stroke-based Lucide icons: never accidentally fill */
svg.tc-icon[fill="none"] *,
svg.tc-icon[fill="none"] path,
svg.tc-icon[fill="none"] circle,
svg.tc-icon[fill="none"] rect,
svg.tc-icon[fill="none"] polyline,
svg.tc-icon[fill="none"] polygon,
svg.tc-icon[fill="none"] line {
  fill: none !important;
  stroke: currentColor;
}
/* Filled icons (WhatsApp, star): always solid currentColor */
svg.tc-icon--whatsapp,
svg.tc-icon--whatsapp path {
  fill: currentColor !important;
  stroke: none !important;
}
/* External SVG assets via <img>: prevent Chrome color-scheme inversion */
img.tcs-svg-icon { color-scheme: light; }

/* ============================================
   v5.8.2 — Center Reviews, Quality, FAQ heads (Referenz parity)
   ============================================ */
.tc-reviews .tc-section__head,
.tc-quality .tc-quality__head,
.tc-faq .tc-faq__head {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.tc-reviews .tc-section__head .tc-locs__pill,
.tc-reviews .tc-section__head .tc-h2,
.tc-reviews .tc-section__head .tc-lead,
.tc-reviews .tc-section__head .tc-google-badge,
.tc-quality .tc-quality__head .tc-quality__pill,
.tc-quality .tc-quality__head .tc-quality__title,
.tc-quality .tc-quality__head .tc-quality__sub,
.tc-faq .tc-faq__head .tc-faq__pill,
.tc-faq .tc-faq__head .tc-faq__title,
.tc-faq .tc-faq__head .tc-faq__sub {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.tc-reviews .tc-section__head .tc-lead,
.tc-quality .tc-quality__head .tc-quality__sub,
.tc-faq .tc-faq__head .tc-faq__sub {
  max-width: 640px;
}
.tc-reviews .tc-section__head .tc-google-badge { display: inline-flex; }

/* ============================================
   v5.8.3 — Homepage section text centering
   ============================================ */
.tc-services__head,
.tc-services__head--center,
.tc-process .tc-section__head,
.tc-locations .tc-locs__head,
.tc-trustbar__head,
.tc-reviews .tc-section__head,
.tc-quality .tc-quality__head,
.tc-faq .tc-faq__head {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.tc-services__head .tc-locs__pill,
.tc-process .tc-section__head .tc-locs__pill,
.tc-locations .tc-locs__head .tc-locs__pill,
.tc-reviews .tc-section__head .tc-locs__pill,
.tc-quality .tc-quality__head .tc-quality__pill,
.tc-faq .tc-faq__head .tc-faq__pill {
  margin-left: auto !important;
  margin-right: auto !important;
}
.tc-services__title,
.tc-services__lead,
.tc-process .tc-h2,
.tc-process .tc-lead,
.tc-locations .tc-locs__title,
.tc-locations .tc-locs__sub,
.tc-trustbar__head h2,
.tc-trustbar__head p,
.tc-reviews .tc-h2,
.tc-reviews .tc-lead,
.tc-quality__title,
.tc-quality__sub,
.tc-faq__title,
.tc-faq__sub {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.tc-services__lead,
.tc-process .tc-lead,
.tc-locations .tc-locs__sub,
.tc-trustbar__head p,
.tc-reviews .tc-lead,
.tc-quality__sub,
.tc-faq__sub {
  max-width: 640px !important;
}

/* Über Touch Clean — text and benefits left aligned */
.tc-about__grid { align-items: center !important; }
.tc-about__grid > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left !important;
}
.tc-about .tc-locs__pill,
.tc-about .tc-h2,
.tc-about .tc-lead {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.tc-about .tc-lead { max-width: 620px !important; }
.tc-benefits { align-items: flex-start !important; width: 100%; max-width: 680px; }
.tc-benefits li {
  flex-direction: row !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  text-align: left !important;
  gap: 1rem !important;
}
.tc-benefits__title,
.tc-benefits__desc { text-align: left !important; }
.tc-cta-row { justify-content: flex-start !important; }
.tc-about__stats { text-align: left !important; }
.tc-about__stat {
  flex-direction: row !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  text-align: left !important;
}


/* Process cards — all three steps centered */
.tc-process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center !important;
}
.tc-process__step h3,
.tc-process__step p {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Einsatzgebiete — centered card text and controls */
.tc-loc-card { text-align: center !important; }
.tc-loc-card__top {
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}
.tc-loc-card__top > div,
.tc-loc-card__name,
.tc-loc-card__addr,
.tc-loc-card__panel,
.tc-loc-card__panel-head,
.tc-loc-card__panel-city,
.tc-loc-card__services li,
.tc-loc-card__cities {
  text-align: center !important;
}
.tc-loc-card__addr,
.tc-loc-card__panel-head,
.tc-loc-card__services li {
  justify-content: center !important;
}
/* Pin-Icon + Adresse als normalen, zentrierten Fließtext behandeln statt
   als Flex-Zeile: Bei "display:flex" bekommt der Adress-Text (sobald die
   Adresse auf 2 Zeilen umbricht) die komplette Restbreite zugewiesen —
   dadurch bleibt das Icon links kleben, während nur der Text darunter
   zentriert wirkt. Als normaler Absatztext mit dem Icon als Inline-Element
   direkt davor bricht die Adresse wie gewöhnlicher Text um, und jede Zeile
   wird ganz normal über "text-align: center" zentriert — das Icon bleibt
   dabei immer direkt vor "Herner Straße …" stehen. */
.tc-loc-card__addr {
  display: block !important;
}
.tc-loc-card__addr .tc-loc-card__pin {
  display: inline-flex !important;
  vertical-align: -3px;
  margin-right: 0.4rem;
}
.tc-loc-card__panel-head {
  flex-direction: column !important;
  align-items: center !important;
}
.tc-loc-card__route { margin-left: auto !important; margin-right: auto !important; }

/* Leistung cards: keep card content left-aligned */
.tc-bento__body {
  align-items: flex-start !important;
  text-align: left !important;
}
.tc-bento__title,
.tc-bento__desc,
.tc-bento__more {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* ============================================
   v5.9.1 — Unterseiten: Icon-Platzierung final korrigiert
   Foreground icon sits cleanly top-left in its blue tile; watermark stays
   bottom-right behind text on every service subpage and browser.
   ============================================ */
.page-template-page-leistungen-sub .tcs-card--sub,
.tcs-sub .tcs-card--sub {
  min-height: 240px !important;
  padding: 1.75rem !important;
  align-items: flex-start !important;
  text-align: left !important;
  isolation: isolate !important;
}

.page-template-page-leistungen-sub .tcs-card--sub .tcs-card__icon,
.tcs-sub .tcs-card--sub .tcs-card__icon {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  z-index: 4 !important;
  display: grid !important;
  place-items: center !important;
  width: 56px !important;
  min-width: 56px !important;
  max-width: 56px !important;
  height: 56px !important;
  min-height: 56px !important;
  max-height: 56px !important;
  margin: 0 0 0 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-radius: 1rem !important;
  background: #EBF2FF !important;
  color: #2563EB !important;
}

.page-template-page-leistungen-sub .tcs-card--sub .tcs-card__icon::before,
.tcs-sub .tcs-card--sub .tcs-card__icon::before {
  z-index: 0 !important;
}

.page-template-page-leistungen-sub .tcs-card--sub .tcs-card__icon > svg,
.page-template-page-leistungen-sub .tcs-card--sub .tcs-card__icon > img,
.page-template-page-leistungen-sub .tcs-card--sub .tcs-card__icon > .tc-icon,
.page-template-page-leistungen-sub .tcs-card--sub .tcs-card__icon > .tcs-svg-icon,
.tcs-sub .tcs-card--sub .tcs-card__icon > svg,
.tcs-sub .tcs-card--sub .tcs-card__icon > img,
.tcs-sub .tcs-card--sub .tcs-card__icon > .tc-icon,
.tcs-sub .tcs-card--sub .tcs-card__icon > .tcs-svg-icon {
  position: relative !important;
  z-index: 2 !important;
  display: block !important;
  width: 28px !important;
  min-width: 28px !important;
  max-width: 28px !important;
  height: 28px !important;
  min-height: 28px !important;
  max-height: 28px !important;
  margin: 0 !important;
  object-fit: contain !important;
  color: #2563EB !important;
  transform-origin: center center !important;
}

.page-template-page-leistungen-sub .tcs-card--sub .tcs-card__ghost,
.tcs-sub .tcs-card--sub .tcs-card__ghost {
  position: absolute !important;
  top: auto !important;
  right: -12px !important;
  bottom: -12px !important;
  left: auto !important;
  z-index: 0 !important;
  display: block !important;
  width: 112px !important;
  height: 112px !important;
  margin: 0 !important;
  opacity: .20 !important;
  color: #2563EB !important;
  transform: none !important;
}

.page-template-page-leistungen-sub .tcs-card--sub .tcs-card__ghost > svg,
.page-template-page-leistungen-sub .tcs-card--sub .tcs-card__ghost > img,
.page-template-page-leistungen-sub .tcs-card--sub .tcs-card__ghost > .tc-icon,
.page-template-page-leistungen-sub .tcs-card--sub .tcs-card__ghost > .tcs-svg-icon,
.tcs-sub .tcs-card--sub .tcs-card__ghost > svg,
.tcs-sub .tcs-card--sub .tcs-card__ghost > img,
.tcs-sub .tcs-card--sub .tcs-card__ghost > .tc-icon,
.tcs-sub .tcs-card--sub .tcs-card__ghost > .tcs-svg-icon {
  display: block !important;
  width: 112px !important;
  min-width: 112px !important;
  max-width: 112px !important;
  height: 112px !important;
  min-height: 112px !important;
  max-height: 112px !important;
  object-fit: contain !important;
  color: #2563EB !important;
}

.page-template-page-leistungen-sub .tcs-card--sub .tcs-card__accent,
.page-template-page-leistungen-sub .tcs-card--sub .tcs-card__title,
.page-template-page-leistungen-sub .tcs-card--sub .tcs-sub__rule,
.page-template-page-leistungen-sub .tcs-card--sub .tcs-card__desc,
.tcs-sub .tcs-card--sub .tcs-card__accent,
.tcs-sub .tcs-card--sub .tcs-card__title,
.tcs-sub .tcs-card--sub .tcs-sub__rule,
.tcs-sub .tcs-card--sub .tcs-card__desc {
  position: relative !important;
  z-index: 3 !important;
  text-align: left !important;
}

.page-template-page-leistungen-sub .tcs-card--sub .tcs-card__title--sm,
.tcs-sub .tcs-card--sub .tcs-card__title--sm {
  margin-top: 1.5rem !important;
}

.page-template-page-leistungen-sub .tcs-card--sub .tcs-sub__rule,
.tcs-sub .tcs-card--sub .tcs-sub__rule {
  margin: .75rem 0 !important;
}

.page-template-page-leistungen-sub .tcs-card--sub .tcs-card__desc--clamp,
.tcs-sub .tcs-card--sub .tcs-card__desc--clamp {
  max-width: 68% !important;
}

@media (max-width: 639px) {
  .page-template-page-leistungen-sub .tcs-card--sub .tcs-card__desc--clamp,
  .tcs-sub .tcs-card--sub .tcs-card__desc--clamp {
    max-width: 100% !important;
  }
  .page-template-page-leistungen-sub .tcs-card--sub .tcs-card__ghost,
  .tcs-sub .tcs-card--sub .tcs-card__ghost {
    opacity: .10 !important;
    right: -22px !important;
    bottom: -22px !important;
  }
}

/* ============================================
   v5.9.2 — Safari/browser icon normalization
   No CSS hue-rotate filters: Safari renders them purple. Icons are fixed
   to the brand blue at SVG/source level and sized identically everywhere.
   ============================================ */
.tc-header,
.tc-pill,
.tc-trust-chip,
.tc-locs__pill.tc-locs__pill--dark,
.tc-bento__tag,
.tc-bento__icon,
.tc-bento__more,
.tc-ba__label,
.tcs-hero__pill,
.tcs-btn--ghost,
.tcs-trust__icon {
  -webkit-backdrop-filter: blur(8px);
}

.tc-icon,
.tcs-svg-icon {
  color-scheme: light !important;
  forced-color-adjust: none;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.tcs-card--sub .tcs-card__icon .tcs-svg-icon,
.tcs-card--sub .tcs-card__ghost .tcs-svg-icon,
.tcs-card--sub .tcs-card__icon .tc-icon,
.tcs-card--sub .tcs-card__ghost .tc-icon {
  color: #2563EB !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  opacity: 1 !important;
}

.tcs-card--sub .tcs-card__icon .tcs-svg-icon [stroke],
.tcs-card--sub .tcs-card__ghost .tcs-svg-icon [stroke] {
  stroke: #2563EB !important;
}

.tcs-card--sub .tcs-card__icon .tcs-svg-icon [fill]:not([fill="none"]),
.tcs-card--sub .tcs-card__ghost .tcs-svg-icon [fill]:not([fill="none"]) {
  fill: #2563EB !important;
}

.tcs-card--sub .tcs-card__icon img.tcs-svg-icon,
.tcs-card--sub .tcs-card__ghost img.tcs-svg-icon {
  filter: none !important;
}

.tcs-card--sub .tcs-card__ghost {
  opacity: .18 !important;
}

/* ============================================
   v5.9.5 — Browser-stabile Buttonfarben + Hero-CTA Zentrierung
   Ursache: a:visited / Browser-default link states had higher specificity than
   the button class in Chrome/Safari, so visited CTA links could inherit dark text.
   These final-state rules intentionally live at the end of the file.
   ============================================ */
.tc-btn,
.tcs-btn,
.tc-icon-btn,
.tc-btn--whatsapp-pill,
.tc-btn--anrufen {
  -webkit-appearance: none !important;
          appearance: none !important;
  text-decoration: none !important;
  text-align: center !important;
  line-height: 1.15 !important;
}

.tc-btn--primary,
.tc-btn--primary:link,
.tc-btn--primary:visited,
.tc-btn--primary:hover,
.tc-btn--primary:active,
.tc-cta-desktop,
.tc-cta-desktop:link,
.tc-cta-desktop:visited,
.tc-cta-desktop:hover,
.tc-cta-desktop:active,
.tcs-btn--primary,
.tcs-btn--primary:link,
.tcs-btn--primary:visited,
.tcs-btn--primary:hover,
.tcs-btn--primary:active {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.tc-btn--primary *,
.tc-cta-desktop *,
.tcs-btn--primary * {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.tc-btn--primary svg,
.tc-cta-desktop svg,
.tcs-btn--primary svg {
  color: #ffffff !important;
  stroke: currentColor !important;
}

.tc-icon-btn--whatsapp,
.tc-icon-btn--whatsapp:link,
.tc-icon-btn--whatsapp:visited,
.tc-icon-btn--whatsapp:hover,
.tc-icon-btn--whatsapp:active {
  background: #25D366 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.tc-icon-btn--whatsapp svg,
.tc-icon-btn--whatsapp svg path,
.tc-btn--whatsapp-pill__ic,
.tc-btn--whatsapp-pill__ic svg,
.tc-btn--whatsapp-pill__ic svg path {
  color: #ffffff !important;
  fill: currentColor !important;
  stroke: none !important;
  -webkit-text-fill-color: #ffffff !important;
}

.tc-hero__ctas {
  justify-content: center !important;
  align-items: center !important;
}

.tc-hero__ctas .tc-btn--whatsapp-pill,
.tc-hero__ctas .tc-btn--whatsapp-pill:link,
.tc-hero__ctas .tc-btn--whatsapp-pill:visited,
.tc-hero__ctas .tc-btn--whatsapp-pill:hover,
.tc-hero__ctas .tc-btn--whatsapp-pill:active,
.tc-hero__ctas .tc-btn--anrufen,
.tc-hero__ctas .tc-btn--anrufen:link,
.tc-hero__ctas .tc-btn--anrufen:visited,
.tc-hero__ctas .tc-btn--anrufen:hover,
.tc-hero__ctas .tc-btn--anrufen:active {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  white-space: nowrap !important;
}

.tc-hero__ctas .tc-btn--whatsapp-pill,
.tc-hero__ctas .tc-btn--whatsapp-pill:link,
.tc-hero__ctas .tc-btn--whatsapp-pill:visited,
.tc-hero__ctas .tc-btn--whatsapp-pill:hover,
.tc-hero__ctas .tc-btn--whatsapp-pill:active,
.tc-hero__ctas .tc-btn--anrufen,
.tc-hero__ctas .tc-btn--anrufen:link,
.tc-hero__ctas .tc-btn--anrufen:visited,
.tc-hero__ctas .tc-btn--anrufen:hover,
.tc-hero__ctas .tc-btn--anrufen:active {
  color: #0a1330 !important;
  -webkit-text-fill-color: #0a1330 !important;
}

.tc-hero__ctas .tc-btn--whatsapp-pill > span,
.tc-hero__ctas .tc-btn--anrufen > span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

@media (max-width: 991px) {
  .tc-hero__ctas .tc-btn--whatsapp-pill,
  .tc-hero__ctas .tc-btn--anrufen {
    flex: 1 1 calc(50% - .3125rem) !important;
    min-width: 0 !important;
    height: 52px !important;
    padding: 0 .75rem !important;
  }
}

@media (max-width: 480px) {
  .tc-hero__ctas .tc-btn--whatsapp-pill,
  .tc-hero__ctas .tc-btn--anrufen {
    flex-basis: 100% !important;
    width: 100% !important;
  }
}

/* ============================================
   v5.9.6 — Unterseiten-Featurebereich exakt wie Referenz
   - Hintergrundbild darf NICHT kacheln / sich wiederholen
   - Karten bekommen den sichtbaren blauen Verlauf-Strich oben
   - gleiche Darstellung für alle Leistungs-Unterseiten, responsive stabil
   ============================================ */
.page-template-page-leistungen-sub .tcs-sub,
.tcs-sub {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
  background-color: #eef4fd !important;
  background-image: url('../images/subpage-features-bg.png') !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center top !important;
  background-attachment: scroll !important;
}

.page-template-page-leistungen-sub .tcs-sub::before,
.tcs-sub::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.18) 0%, rgba(238,244,253,.02) 42%, rgba(238,244,253,.12) 100%);
}

.page-template-page-leistungen-sub .tcs-sub__grid,
.tcs-sub .tcs-sub__grid {
  align-items: stretch !important;
}

.page-template-page-leistungen-sub .tcs-card--sub,
.tcs-sub .tcs-card--sub {
  overflow: hidden !important;
  border-radius: 1.75rem !important;
  background: #ffffff !important;
  border: 1px solid rgba(203,213,225,.72) !important;
  box-shadow: 0 10px 40px -20px rgba(15,23,42,.18) !important;
}

.page-template-page-leistungen-sub .tcs-card--sub .tcs-card__accent,
.tcs-sub .tcs-card--sub .tcs-card__accent {
  display: block !important;
  position: absolute !important;
  top: .625rem !important;
  left: 1.5rem !important;
  right: 1.5rem !important;
  width: auto !important;
  height: 3px !important;
  min-height: 3px !important;
  border-radius: 9999px !important;
  opacity: 1 !important;
  z-index: 9 !important;
  background: linear-gradient(90deg, #1d4ed8 0%, #3b82f6 54%, #22d3ee 100%) !important;
  box-shadow: none !important;
}

.page-template-page-leistungen-sub .tcs-card--sub .tcs-card__icon,
.tcs-sub .tcs-card--sub .tcs-card__icon {
  margin-top: .5rem !important;
}

@media (max-width: 1023px) {
  .page-template-page-leistungen-sub .tcs-sub,
  .tcs-sub {
    background-size: auto 100% !important;
    background-position: center top !important;
  }
}

@media (max-width: 639px) {
  .page-template-page-leistungen-sub .tcs-sub,
  .tcs-sub {
    background-size: auto 100% !important;
    padding-top: 3.5rem !important;
  }
  .page-template-page-leistungen-sub .tcs-card--sub .tcs-card__accent,
  .tcs-sub .tcs-card--sub .tcs-card__accent {
    left: 1.25rem !important;
    right: 1.25rem !important;
  }
}

/* v5.9.7 — bigger logo, left-aligned hero CTAs, slightly larger hero title */
.tc-logo img { height: 56px !important; width: auto !important; }
@media (min-width: 992px) { .tc-logo img { height: 84px !important; } }
.tc-logo__name { font-size: 1.15rem !important; }
@media (min-width: 992px) { .tc-logo__name { font-size: 1.5rem !important; } }
.tc-logo__sub { font-size: .58rem !important; }
@media (min-width: 992px) { .tc-logo__sub { font-size: .72rem !important; } }

.tc-hero__ctas {
  justify-content: flex-start !important;
  align-items: center !important;
}

.tc-hero__title {
  font-size: clamp(2rem, 5.2vw, 4rem) !important;
  line-height: 1.08 !important;
}
@media (max-width: 639px) {
  .tc-hero__title { font-size: clamp(1.85rem, 8.5vw, 2.6rem) !important; }
}

/* v5.9.8 — CTA banner: match Referenz sizing (smaller pill, tighter title/lead) */
.tc-cta-banner { padding-top: 5rem !important; padding-bottom: 5rem !important; }
.tc-cta-banner__inner { max-width: 52rem !important; }
.tc-cta-banner .tc-locs__pill.tc-locs__pill--dark {
  padding: .55rem 1.1rem !important;
  font-size: .7rem !important;
  letter-spacing: .14em !important;
  margin-bottom: 0 !important;
  border-radius: 999px !important;
}
.tc-cta-banner__title {
  font-size: clamp(2rem, 4.5vw, 3.5rem) !important;
  line-height: 1.1 !important;
  margin-top: 1.5rem !important;
  font-weight: 800 !important;
  letter-spacing: -.02em !important;
}
.tc-cta-banner__title .tc-grad-light { display: block !important; }
.tc-cta-banner__lead {
  font-size: 1rem !important;
  max-width: 38rem !important;
  margin-top: 1.25rem !important;
  line-height: 1.55 !important;
}
.tc-cta-banner__row { margin-top: 2rem !important; gap: 1rem !important; }
.tc-cta-banner__row .tc-btn--lg { height: 52px !important; padding: 0 1.5rem !important; font-size: .95rem !important; }
@media (max-width: 639px) {
  .tc-cta-banner__title { font-size: clamp(1.5rem, 6.5vw, 2rem) !important; }
  .tc-cta-banner__lead { font-size: .95rem !important; }
}

/* v5.9.9 — Why-us head: centered, uppercase pill, title on two lines */
.tc-whyus .tc-section__head {
  text-align: center !important;
  max-width: 48rem !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.tc-whyus .tc-section__head .tc-pill {
  text-transform: uppercase !important;
  letter-spacing: .14em !important;
  font-size: .7rem !important;
  padding: .55rem 1.1rem !important;
  background: rgba(255,255,255,.06) !important;
  color: rgba(255,255,255,.9) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
}
.tc-whyus .tc-h2 {
  font-size: clamp(1.85rem, 4vw, 3rem) !important;
  line-height: 1.1 !important;
  font-weight: 800 !important;
  letter-spacing: -.02em !important;
  margin-top: 1.25rem !important;
}
.tc-whyus .tc-h2 .tc-grad-light { display: block !important; }
.tc-whyus .tc-lead {
  font-size: 1rem !important;
  max-width: 36rem !important;
  margin: 1.25rem auto 0 !important;
  text-align: center !important;
  line-height: 1.55 !important;
}

/* v6.0.0 — Compact section heads (process/results/reviews/quality) + smaller quality cards */
.tc-process .tc-section__head .tc-pill,
.tc-results__pill,
.tc-reviews .tc-section__head .tc-locs__pill,
.tc-quality__pill {
  font-size: .7rem !important;
  padding: .5rem 1rem !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
}

.tc-process .tc-section__head h2,
.tc-process .tc-h2,
.tc-results__title,
.tc-reviews .tc-section__head h2,
.tc-reviews .tc-h2,
.tc-quality__title {
  font-size: clamp(1.65rem, 3.4vw, 2.5rem) !important;
  line-height: 1.15 !important;
  font-weight: 800 !important;
  letter-spacing: -.02em !important;
  margin-top: 1.1rem !important;
}

.tc-process .tc-section__head p,
.tc-process .tc-lead,
.tc-results__sub,
.tc-reviews .tc-section__head p,
.tc-reviews .tc-lead,
.tc-quality__sub {
  font-size: 1rem !important;
  max-width: 38rem !important;
  margin: 1rem auto 0 !important;
  text-align: center !important;
  line-height: 1.55 !important;
}

/* Quality cards: smaller icon tile and tighter padding */
.tc-quality__card { padding: 1.5rem 1.25rem !important; border-radius: 1.25rem !important; }
.tc-quality__icon {
  width: 52px !important; height: 52px !important;
  border-radius: 14px !important;
  display: inline-flex !important; align-items: center !important; justify-content: center !important;
  margin-bottom: 1rem !important;
}
.tc-quality__icon svg { width: 22px !important; height: 22px !important; }
.tc-quality__name { font-size: 1.0625rem !important; }
.tc-quality__desc { font-size: .9375rem !important; line-height: 1.55 !important; }

@media (max-width: 639px) {
  .tc-process .tc-section__head h2,
  .tc-results__title,
  .tc-reviews .tc-section__head h2,
  .tc-quality__title {
    font-size: clamp(1.5rem, 6.5vw, 2rem) !important;
  }
}

/* ============================================
   v6.0.2 — Fix-Final Referenz parity pass
   Header, hero, section heads, service cards, subpages and CTA wrapping
   are normalized at the end of the cascade to override older iteration rules.
   ============================================ */

/* Header: match Referenz 80px mobile / 96px desktop with large logo. */
.tc-header__inner { height: 80px !important; }
@media (min-width: 992px) { .tc-header__inner { height: 96px !important; } }
.tc-main { padding-top: 80px !important; }
@media (min-width: 992px) { .tc-main { padding-top: 96px !important; } }
.tc-logo img { height: 64px !important; width: auto !important; object-fit: contain !important; }
@media (min-width: 992px) { .tc-logo img { height: 84px !important; } }
.tc-logo__name { font-size: 1.125rem !important; line-height: 1.05 !important; }
.tc-logo__sub { font-size: .5625rem !important; line-height: 1.05 !important; }
@media (min-width: 992px) {
  .tc-logo__name { font-size: 1.25rem !important; }
  .tc-logo__sub { font-size: .625rem !important; }
}
.tc-nav-list a, .tc-nav-link { padding: .625rem 1.25rem !important; font-size: 1rem !important; font-weight: 500 !important; }
.tc-cta-desktop { height: 48px !important; padding: 0 1.5rem !important; font-size: 1rem !important; }
.tc-icon-btn--whatsapp { width: 48px !important; height: 48px !important; }

/* Homepage hero: current Referenz H1 scale and left content flow. */
.tc-hero__inner { min-height: 100vh !important; min-height: 100svh !important; padding-top: 7rem !important; padding-bottom: 5rem !important; }
.tc-hero__grid { align-items: center !important; }
.tc-hero__title {
  max-width: 46rem !important;
  font-size: clamp(1.6rem, 3.2vw, 2.8rem) !important;
  line-height: 1.1 !important;
  letter-spacing: -.02em !important;
}
.tc-hero__lead { max-width: 36rem !important; text-align: left !important; font-size: 1.0625rem !important; line-height: 1.7 !important; }
.tc-hero__ctas { justify-content: flex-start !important; align-items: center !important; gap: 1rem !important; }
.tc-hero__ctas .tc-btn--whatsapp-pill,
.tc-hero__ctas .tc-btn--anrufen { height: 56px !important; padding: 0 2rem !important; font-size: .9375rem !important; }
@media (max-width: 639px) {
  .tc-hero__title { font-size: clamp(1.6rem, 8vw, 2.2rem) !important; }
  .tc-hero__lead { font-size: 1rem !important; }
}

/* Homepage services: Referenz head is centered; card body remains left aligned. */
.tc-services__head,
.tc-services__head--center {
  max-width: 48rem !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 3.5rem !important;
  text-align: center !important;
}
.tc-services__head .tc-locs__pill,
.tc-services__head--center .tc-locs__pill { margin-left: auto !important; margin-right: auto !important; }
.tc-services__title {
  text-align: center !important;
  font-size: clamp(2rem, 4.5vw, 3.5rem) !important;
  line-height: 1.05 !important;
}
.tc-services__lead {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 640px !important;
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem) !important;
  line-height: 1.7 !important;
}
.tc-bento { gap: 1.25rem !important; }
@media (min-width: 1024px) {
  .tc-bento.tc-bento--5 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    grid-auto-rows: 280px !important;
    grid-template-areas:
      "a a b"
      "a a c"
      "d e e" !important;
  }
  .tc-bento--5 .tc-bento__card--a { grid-area: a !important; }
  .tc-bento--5 .tc-bento__card--b { grid-area: b !important; }
  .tc-bento--5 .tc-bento__card--c { grid-area: c !important; }
  .tc-bento--5 .tc-bento__card--d { grid-area: d !important; }
  .tc-bento--5 .tc-bento__card--e { grid-area: e !important; }
  .tc-bento--5 .tc-bento__card--a .tc-bento__title { font-size: clamp(2rem, 2.6vw, 2.5rem) !important; }
  .tc-bento--5 .tc-bento__card--b .tc-bento__title,
  .tc-bento--5 .tc-bento__card--c .tc-bento__title,
  .tc-bento--5 .tc-bento__card--d .tc-bento__title { font-size: 1.5rem !important; }
  .tc-bento--5 .tc-bento__card--e .tc-bento__title { font-size: 1.75rem !important; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .tc-bento.tc-bento--5 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-template-areas:
      "a a"
      "b c"
      "d d"
      "e e" !important;
  }
  .tc-bento--5 .tc-bento__card--a { grid-column: 1 / -1 !important; min-height: 360px !important; }
  .tc-bento--5 .tc-bento__card--d { grid-column: 1 / -1 !important; min-height: 280px !important; }
  .tc-bento--5 .tc-bento__card--e { grid-column: 1 / -1 !important; }
}
.tc-bento__card { min-height: 280px !important; border-radius: 1.5rem !important; }
.tc-bento__title, .tc-bento__desc, .tc-bento__more { text-align: left !important; }

/* Section heads: match Referenz spacing and title scale except About, which stays left-aligned. */
.tc-process .tc-section__head,
.tc-results__head,
.tc-reviews .tc-section__head,
.tc-quality__head,
.tc-locations .tc-locs__head,
.tc-faq__head,
.tc-contact__head,
.tc-trustbar__head {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.tc-process .tc-section__head h2,
.tc-process .tc-h2,
.tc-results__title,
.tc-reviews .tc-section__head h2,
.tc-reviews .tc-h2,
.tc-quality__title,
.tc-locs__title,
.tc-faq__title,
.tc-contact__head .tc-h2 {
  font-size: clamp(2rem, 5vw, 3.75rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -.02em !important;
  font-weight: 800 !important;
}
.tc-process .tc-section__head p,
.tc-process .tc-lead,
.tc-results__sub,
.tc-reviews .tc-section__head p,
.tc-reviews .tc-lead,
.tc-quality__sub,
.tc-locs__sub,
.tc-faq__sub,
.tc-contact__head .tc-lead,
.tc-trustbar__head p {
  text-align: center !important;
  max-width: 42rem !important;
  margin: 1.25rem auto 0 !important;
  font-size: clamp(1rem, 1.45vw, 1.125rem) !important;
  line-height: 1.65 !important;
}
.tc-process .tc-section__head .tc-locs__pill,
.tc-results__pill,
.tc-reviews .tc-section__head .tc-locs__pill,
.tc-quality__pill,
.tc-locs__pill,
.tc-faq__pill,
.tc-contact__head .tc-locs__pill {
  display: inline-flex !important;
}
.tc-about .tc-h2 { font-size: clamp(1.875rem, 4vw, 3rem) !important; line-height: 1.12 !important; }
.tc-about .tc-lead { text-align: left !important; }

/* Homepage CTA banner: exactly two title lines, centered and intentionally large. */
.tc-cta-banner { padding-top: 5rem !important; padding-bottom: 5rem !important; background-size: cover !important; background-position: center !important; }
.tc-cta-banner__inner { max-width: 64rem !important; text-align: center !important; }
.tc-cta-banner__title {
  margin-top: 2rem !important;
  font-size: clamp(2.25rem, 5.4vw, 4rem) !important;
  line-height: 1.1 !important;
  font-weight: 800 !important;
  letter-spacing: -.02em !important;
  text-align: center !important;
}
.tc-cta-banner__line { display: block !important; text-align: center !important; }
@media (min-width: 700px) { .tc-cta-banner__line { white-space: nowrap !important; } }
.tc-cta-banner__lead {
  max-width: 42rem !important;
  margin: 1.5rem auto 0 !important;
  text-align: center !important;
  font-size: clamp(1rem, 1.5vw, 1.125rem) !important;
  line-height: 1.65 !important;
}
.tc-cta-banner__row { justify-content: center !important; margin-top: 2.5rem !important; }

/* Service subpages: hero, trust row, feature cards and lower CTA match Referenz route files. */
.page-template-page-leistungen-sub .tcs-hero,
.tcs-hero.tcs-hero--bg {
  padding: 7rem 1.5rem 6rem !important;
  min-height: auto !important;
  text-align: center !important;
}
@media (min-width: 768px) {
  .page-template-page-leistungen-sub .tcs-hero,
  .tcs-hero.tcs-hero--bg { padding: 9rem 1.5rem 8rem !important; }
}
.tcs-hero__photo {
  background-image: var(--tcs-hero-bg) !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  opacity: .40 !important;
}
.tcs-hero__shade { background: linear-gradient(180deg, rgba(6,11,26,.85), rgba(6,11,26,.75), rgba(6,11,26,.95)) !important; }
.tcs-hero__inner { max-width: 64rem !important; margin: 0 auto !important; }
.tcs-hero__pill { padding: .5rem 1.25rem !important; font-size: .75rem !important; font-weight: 700 !important; letter-spacing: .22em !important; }
.tcs-hero__title {
  margin-top: 2rem !important;
  font-size: clamp(2rem, 5vw, 3.75rem) !important;
  line-height: 1.05 !important;
  letter-spacing: -.02em !important;
}
.tcs-hero__divider { margin-top: 1.5rem !important; }
.tcs-hero__lead { margin-top: 1.5rem !important; max-width: 36rem !important; text-align: center !important; font-size: clamp(1rem, 1.5vw, 1.125rem) !important; line-height: 1.6 !important; }
.tcs-trust { display: grid !important; grid-template-columns: repeat(2, minmax(0, 1fr)) !important; max-width: 64rem !important; margin: 2.5rem auto 0 !important; gap: 1.5rem 1rem !important; }
@media (min-width: 768px) { .tcs-trust { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; } }
.tcs-trust__item { display: flex !important; flex-direction: column !important; align-items: center !important; text-align: center !important; }
.tcs-trust__icon { width: 56px !important; height: 56px !important; border-radius: 9999px !important; background: rgba(255,255,255,.10) !important; border: 1px solid rgba(255,255,255,.30) !important; color: #fff !important; }
.tcs-trust__text { max-width: 180px !important; margin-top: .75rem !important; font-size: .875rem !important; line-height: 1.25 !important; color: rgba(255,255,255,.9) !important; }
.tcs-hero__cta { justify-content: center !important; margin-top: 2rem !important; gap: 1rem !important; }
.tcs-hero__cta .tcs-btn { height: 52px !important; padding: 0 2rem !important; border-radius: 9999px !important; font-size: .875rem !important; font-weight: 700 !important; }

.page-template-page-leistungen-sub .tcs-sub,
.tcs-sub {
  margin-top: 0 !important;
  padding: 3.5rem 0 1.5rem !important;
  background-color: #eef4fd !important;
  background-image: url('../images/subpage-features-bg.png') !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center top !important;
}
@media (min-width: 768px) { .page-template-page-leistungen-sub .tcs-sub, .tcs-sub { padding: 5rem 0 2rem !important; } }
.tcs-sub__title { font-size: clamp(1.875rem, 4vw, 3rem) !important; line-height: 1.1 !important; }
.tcs-sub__lead { text-align: center !important; max-width: 42rem !important; }
.tcs-sub__grid { gap: 1.5rem !important; }
/* v6.0.8 — Tablet: exactly 2 columns for subpage cards */
@media (min-width: 640px) and (max-width: 1023.98px) {
  .tcs-sub__grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (min-width: 1024px) {
  .tcs-sub__grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
}
.tcs-card--sub { min-height: 240px !important; padding: 1.75rem !important; border-radius: 1.75rem !important; }
.tcs-card--sub .tcs-card__accent { top: .5rem !important; left: 1.5rem !important; right: 1.5rem !important; height: 3px !important; }
.tcs-card--sub .tcs-card__icon { width: 56px !important; height: 56px !important; margin-top: .25rem !important; border-radius: 1rem !important; }
.tcs-card--sub .tcs-card__title--sm { margin-top: 1.5rem !important; font-size: 1.25rem !important; line-height: 1.2 !important; }
.tcs-card--sub .tcs-sub__rule { width: 40px !important; height: 3px !important; margin: .75rem 0 !important; }
.tcs-card--sub .tcs-card__desc--clamp { max-width: 62% !important; font-size: .875rem !important; line-height: 1.55 !important; }
.tcs-card--sub .tcs-card__ghost { right: -12px !important; bottom: -12px !important; opacity: .30 !important; color: #2563EB !important; }
@media (max-width: 639px) { .tcs-card--sub .tcs-card__desc--clamp { max-width: 100% !important; } .tcs-card--sub .tcs-card__ghost { opacity: .12 !important; } }

.page-template-page-leistungen-sub .tc-process,
.page-template-page-leistungen-sub .tc-reviews,
.page-template-page-leistungen-sub .tc-quality,
.page-template-page-leistungen-sub .tc-faq,
.page-template-page-leistungen-sub .tc-ba-section { padding-top: 3.5rem !important; padding-bottom: 3.5rem !important; }
@media (min-width: 768px) {
  .page-template-page-leistungen-sub .tc-process,
  .page-template-page-leistungen-sub .tc-reviews,
  .page-template-page-leistungen-sub .tc-quality,
  .page-template-page-leistungen-sub .tc-faq,
  .page-template-page-leistungen-sub .tc-ba-section { padding-top: 5rem !important; padding-bottom: 5rem !important; }
}
.tcs-bigcta-section { padding: 3.5rem 0 5rem !important; background: #fff !important; }
.tcs-bigcta { padding: 2rem !important; border-radius: 2rem !important; }
@media (min-width: 768px) { .tcs-bigcta { padding: 3.5rem !important; } }
.tcs-bigcta__circle { width: 7rem !important; height: 7rem !important; }
@media (min-width: 768px) { .tcs-bigcta__circle { width: 8rem !important; height: 8rem !important; } }
.tcs-bigcta h3 { font-size: clamp(1.875rem, 3.5vw, 2.25rem) !important; line-height: 1.12 !important; white-space: normal !important; }
.tcs-bigcta p { max-width: 28rem !important; font-size: clamp(1rem, 1.5vw, 1.125rem) !important; line-height: 1.55 !important; }

/* Mobile stability. */
@media (max-width: 767px) {
  .tc-section { padding: 4rem 0 !important; }
  .tc-process .tc-section__head h2,
  .tc-results__title,
  .tc-reviews .tc-section__head h2,
  .tc-quality__title,
  .tc-locs__title,
  .tc-faq__title,
  .tc-contact__head .tc-h2 { font-size: clamp(1.875rem, 8vw, 2.5rem) !important; }
  .tc-cta-banner__title { font-size: clamp(2rem, 9vw, 3rem) !important; }
}

/* ====== v6.2.0 — Hero H1 responsive: 2-line mobile / 2-line tablet / 4-line desktop ====== */
.tc-hero__title { font-size: clamp(2.125rem, 7.2vw, 2.75rem); line-height: 1.12; }
@media (min-width: 768px) and (max-width: 991.98px) {
    .tc-hero__title { font-size: clamp(2.625rem, 5.6vw, 3.25rem); line-height: 1.12; }
}
@media (min-width: 992px) {
    .tc-hero__title { font-size: clamp(2.75rem, 4.6vw, 3.75rem); line-height: 1.08; }
}
/* ====== v6.8.4 — Hero-H1-Fix: nur noch EIN Textinhalt statt 3 identischer
   <span>-Varianten (mobil/tablet/desktop). SEO-Tools und Screenreader haben
   den H1-Text zuvor 2–3x hintereinander gelesen, weil CSS "display:none"
   den Text zwar visuell versteckt, aber NICHT aus dem HTML-Quelltext
   entfernt. Jetzt steht jedes Wort nur noch einmal im Markup; nur die
   Position der Zeilenumbrüche (<br>) wechselt responsiv. ====== */
.tc-hero__br--2col { display: inline; }
.tc-hero__br--4col { display: none; }
@media (min-width: 992px) {
    .tc-hero__br--2col { display: none; }
    .tc-hero__br--4col { display: inline; }
}
/* Logo bigger than wordmark on desktop */
@media (min-width: 992px) {
    .tc-logo img { height: 112px !important; }
    .tc-logo__name { font-size: 1.0625rem !important; }
    .tc-logo__sub { font-size: .55rem !important; }
    .tc-header__inner { height: 120px !important; }
}
/* Nav breathing room so Kontakt does not stick to the CTA button */
@media (min-width: 1100px) {
    .tc-header__inner { gap: 1.5rem; padding-left: 1.25rem; padding-right: 1.25rem; }
    .tc-nav-list { gap: .5rem; }
    .tc-nav-list a, .tc-nav-link { padding: .5rem 1rem; }
    .tc-header__actions { gap: .75rem; margin-left: 1rem; }
}
@media (min-width: 1280px) {
    .tc-header__inner { gap: 2rem; }
    .tc-nav-list { gap: .75rem; }
    .tc-nav-list a, .tc-nav-link { padding: .55rem 1.1rem; }
    .tc-header__actions { gap: .875rem; margin-left: 1.25rem; }
}

/* ====== v6.0.6 — Header spacing fix: stop logo/nav/CTA from touching ====== */
@media (min-width: 992px) {
    .tc-header__inner { gap: 2rem !important; padding-left: 1.5rem; padding-right: 1.5rem; }
    .tc-logo { margin-right: 1.25rem; }
    .tc-logo__brand { padding-right: .5rem; }
    .tc-nav { padding: 0 1rem; }
    .tc-nav-list { gap: .75rem !important; justify-content: center; }
    .tc-nav-list a, .tc-nav-link { padding: .55rem 1rem !important; }
    .tc-header__actions { gap: 1rem !important; margin-left: 1.5rem !important; padding-left: .5rem; }
}
@media (min-width: 1280px) {
    .tc-header__inner { gap: 2.5rem !important; }
    .tc-logo { margin-right: 1.75rem; }
    .tc-nav-list { gap: 1rem !important; }
    .tc-nav-list a, .tc-nav-link { padding: .6rem 1.15rem !important; font-size: .9375rem !important; }
    .tc-header__actions { gap: 1.125rem !important; margin-left: 2rem !important; }
}

/* ====== v6.0.9 — Compact header matching WordPress reference ====== */
.tc-header__inner { height: 64px !important; align-items: center; }
@media (min-width: 992px) {
    .tc-header__inner { height: 72px !important; gap: 1rem !important; padding-left: 1.25rem; padding-right: 1.25rem; }
    .tc-logo { margin-right: .5rem !important; gap: .5rem; }
    .tc-logo img { height: 48px !important; }
    .tc-logo__brand { padding-right: 0 !important; }
    .tc-logo__name { font-size: 1rem !important; }
    .tc-logo__sub  { font-size: .5rem !important; }
    .tc-nav { padding: 0 !important; }
    .tc-nav-list { gap: .125rem !important; justify-content: center; }
    .tc-nav-list a, .tc-nav-link {
        padding: .375rem .75rem !important;
        font-size: 15px !important;
        font-weight: 500 !important;
        border-radius: 9999px;
    }
    .tc-nav-list a:hover, .tc-nav-link:hover,
    .tc-nav-list .current-menu-item > a,
    .tc-nav-link.is-active {
        background: rgba(241,245,249,.7) !important;
        font-weight: 600 !important;
    }
    .tc-header__actions { gap: .625rem !important; margin-left: .75rem !important; padding-left: 0 !important; }
    .tc-icon-btn--whatsapp {
        width: 40px !important; height: 40px !important;
        box-shadow: 0 4px 10px -3px rgba(37,211,102,.4) !important;
    }
    .tc-icon-btn--whatsapp svg { width: 20px !important; height: 20px !important; }
    .tc-cta-desktop {
        height: 48px !important;
        padding: 0 1.25rem !important;
        border-radius: 9999px !important;
        font-size: 15px !important;
        font-weight: 600 !important;
    }
}
@media (min-width: 1280px) {
    .tc-header__inner { gap: 1.25rem !important; }
    .tc-nav-list { gap: .25rem !important; }
    .tc-nav-list a, .tc-nav-link { padding: .375rem .875rem !important; font-size: 15px !important; }
    .tc-header__actions { gap: .75rem !important; margin-left: 1rem !important; }
}

/* =========================================================
   Cookie Banner (Touch Clean) — DSGVO
   ========================================================= */
.tc-cookie[hidden] { display: none !important; }
.tc-cookie {
    position: fixed; inset: 0; z-index: 9998;
    display: flex; align-items: center; justify-content: center;
    padding: 1rem;
}
.tc-cookie__backdrop {
    position: absolute; inset: 0;
    background: rgba(15, 23, 42, 0.55);
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    animation: tcCookieFade .25s ease-out;
}
.tc-cookie__card {
    position: relative;
    width: 100%; max-width: 560px;
    background: #ffffff;
    border-radius: 28px;
    padding: 2rem 1.75rem 1.5rem;
    box-shadow: 0 30px 80px -20px rgba(15, 23, 42, .35), 0 10px 30px -10px rgba(37, 99, 255, .15);
    text-align: center;
    animation: tcCookiePop .35s cubic-bezier(.2,.8,.2,1);
}
@media (min-width: 640px) {
    .tc-cookie__card { padding: 2.5rem 2.25rem 1.75rem; border-radius: 32px; }
}
@keyframes tcCookieFade { from { opacity: 0 } to { opacity: 1 } }
@keyframes tcCookiePop {
    from { opacity: 0; transform: translateY(12px) scale(.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.tc-cookie__logo { display: flex; justify-content: center; margin-bottom: 1rem; }
.tc-cookie__logo img { width: 64px; height: 64px; object-fit: contain; }
.tc-cookie__title {
    margin: 0 0 .65rem; font-size: 1.4rem; line-height: 1.25;
    font-weight: 800; color: #0f172a; letter-spacing: -.01em;
}
@media (min-width: 640px) { .tc-cookie__title { font-size: 1.6rem; } }
.tc-cookie__desc {
    margin: 0 0 1.5rem; font-size: .95rem; line-height: 1.55;
    color: #475569;
}
.tc-cookie__settings {
    text-align: left; display: grid; gap: .5rem;
    margin: 0 0 1.25rem; padding: 1rem;
    background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 18px;
}
.tc-cookie__opt {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    padding: .5rem .25rem;
}
.tc-cookie__opt + .tc-cookie__opt { border-top: 1px solid #e2e8f0; }
.tc-cookie__opt strong { display: block; color: #0f172a; font-size: .95rem; font-weight: 600; }
.tc-cookie__opt small { display: block; color: #64748b; font-size: .8rem; margin-top: 2px; }
.tc-cookie__opt input[type="checkbox"] {
    width: 20px; height: 20px; accent-color: #2563FF; cursor: pointer;
}
.tc-cookie__actions {
    display: grid; grid-template-columns: 1fr; gap: .6rem; margin-bottom: 1rem;
}
@media (min-width: 640px) {
    .tc-cookie__actions { grid-template-columns: repeat(3, 1fr); gap: .75rem; }
}
.tc-cookie__btn {
    appearance: none; border: 0; cursor: pointer; font-family: inherit;
    font-weight: 600; font-size: .95rem; line-height: 1;
    padding: .9rem 1.1rem; border-radius: 999px;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
    white-space: nowrap;
}
.tc-cookie__btn:hover { transform: translateY(-1px); }
.tc-cookie__btn:active { transform: translateY(0); }
.tc-cookie__btn--primary {
    color: #fff;
    background: linear-gradient(135deg, #2563FF 0%, #1d4ed8 100%);
    box-shadow: 0 10px 24px -10px rgba(37, 99, 255, .55);
}
.tc-cookie__btn--primary:hover { box-shadow: 0 14px 30px -10px rgba(37, 99, 255, .7); }
.tc-cookie__btn--outline {
    color: #2563FF; background: #ffffff;
    border: 2px solid #2563FF;
    padding: calc(.9rem - 2px) calc(1.1rem - 2px);
}
.tc-cookie__btn--outline:hover { background: #eff4ff; }
.tc-cookie__btn--ghost {
    color: #0f172a; background: #f1f5f9;
}
.tc-cookie__btn--ghost:hover { background: #e2e8f0; }
.tc-cookie__legal {
    list-style: none; padding: 0; margin: .25rem 0 0;
    display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
    gap: .5rem; font-size: .85rem; color: #94a3b8;
}
.tc-cookie__legal a { color: #64748b; text-decoration: none; }
.tc-cookie__legal a:hover { color: #2563FF; text-decoration: underline; }

/* Body lock when banner is open */
body.tc-cookie-open { overflow: hidden; }

/* Floating re-open button */
.tc-cookie-fab {
    position: fixed; left: 16px; bottom: 16px; z-index: 9990;
    width: 44px; height: 44px; border-radius: 999px;
    display: none; align-items: center; justify-content: center;
    background: #ffffff; color: #2563FF; border: 1px solid #e2e8f0;
    box-shadow: 0 10px 24px -10px rgba(15, 23, 42, .25);
    cursor: pointer; transition: transform .15s ease, box-shadow .2s ease;
}
.tc-cookie-fab.is-visible { display: inline-flex; }
.tc-cookie-fab:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(37, 99, 255, .35); }

/* ====== v6.1.1 — Cookie banner simplified + menu logo enlargement ====== */
/* Bigger logo in cookie modal */
.tc-cookie__logo { margin-bottom: 1.75rem; }
.tc-cookie__logo img { width: 96px; height: auto; max-width: 100px; }
@media (min-width: 640px) { .tc-cookie__logo img { width: 100px; } }

.tc-cookie__title { margin-bottom: 1rem; }
.tc-cookie__desc  { margin-bottom: 1.75rem; }
.tc-cookie__actions { margin-top: 0; }
@media (min-width: 640px) {
    .tc-cookie__actions { grid-template-columns: repeat(3, 1fr) !important; }
}
.tc-cookie__btn { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; }

/* Bigger logo in header menu (only the image, brand text unchanged) */
.tc-logo img { height: 72px !important; width: auto !important; object-fit: contain !important; }
@media (min-width: 992px) {
    .tc-logo img { height: 88px !important; }
}

/* ====== v6.1.5 — Header spacing + equal action buttons + cookie FAB removed ====== */

/* Cookie FAB fully hidden (decision persisted in localStorage; re-open via footer link) */
.tc-cookie-fab, #tc-cookie-fab { display: none !important; }

/* ====== v6.4.1 — Cookie-Einstellungen (DSGVO Kategorien-Auswahl) ====== */
.tc-cookie__btn[data-tc-cookie-toggle-settings][aria-expanded="true"] {
    background: #e2e8f0;
    box-shadow: 0 0 0 2px #2563FF inset;
}
.tc-cookie__settings[hidden] { display: none !important; }
.tc-cookie__btn--save {
    display: flex; width: 100%;
    color: #fff; background: #0f172a;
    margin: 0 0 1.1rem;
    box-shadow: 0 10px 24px -10px rgba(15, 23, 42, .5);
}
.tc-cookie__btn--save:hover { background: #1e293b; box-shadow: 0 14px 30px -10px rgba(15, 23, 42, .6); }
.tc-cookie__btn--save[hidden] { display: none !important; }
.tc-cookie__opt input[type="checkbox"]:disabled { opacity: .55; cursor: not-allowed; accent-color: #94a3b8; }

/* Header sits flush at the very top, solid background so hero never bleeds through */
.tc-header { top: 0 !important; background: #ffffff !important; -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(226,232,240,.6) !important; }
.tc-header.is-scrolled { background: rgba(255,255,255,.96) !important; box-shadow: 0 10px 30px -12px rgba(15,23,42,.15) !important; }

/* Reserve space equal to header height so hero/content start directly below it */
.tc-main { padding-top: 72px !important; }
@media (min-width: 992px) { .tc-main { padding-top: 80px !important; } }

/* Hero starts directly under the header, no overlap, no negative margin */
.tc-hero { margin-top: 0 !important; padding-top: 0 !important; }

/* Equalize WhatsApp / Phone / Burger buttons on mobile + tablet */
@media (max-width: 1199px) {
    .tc-header__actions { gap: .5rem !important; align-items: center !important; }
    .tc-header__actions .tc-icon-btn,
    .tc-header__actions .tc-icon-btn--whatsapp,
    .tc-header__actions .tc-icon-btn--phone,
    .tc-header__actions .tc-burger {
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        min-height: 44px !important;
        border-radius: 999px !important;
        padding: 0 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }
    .tc-header__actions .tc-icon-btn svg,
    .tc-header__actions .tc-burger svg {
        width: 20px !important;
        height: 20px !important;
        display: block !important;
    }
}

/* Logo + actions vertical centering safeguard */
.tc-header__inner { align-items: center !important; }

/* ====== v6.1.8 — BigCTA: single-line headline on desktop (match Referenz) ====== */
@media (min-width: 1024px) {
  .tcs-bigcta h3 {
    white-space: nowrap !important;
    font-size: clamp(1.5rem, 2.1vw, 1.875rem) !important;
    line-height: 1.15 !important;
  }
  .tcs-bigcta__left { flex: 1 1 auto !important; min-width: 0 !important; }
  .tcs-bigcta__right { flex: 0 0 auto !important; flex-wrap: nowrap !important; }
  .tcs-bigcta p { max-width: 32rem !important; }
}

/* ====== v6.2.2 — Rechtliche Seiten (Impressum/Datenschutz/Cookie-Richtlinie) ====== */
.tc-legal { padding: 96px 0 80px; background: #f8fafc; }
.tc-legal__inner { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.tc-legal__head { max-width: 640px; margin: 0 0 2.5rem; }
.tc-legal__head .tc-eyebrow { margin-bottom: 0.85rem; }
.tc-legal__title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #0f172a; margin: 0 0 14px; letter-spacing: -0.02em; line-height: 1.1; }
.tc-legal__lead { color: #64748b; font-size: 1.0625rem; line-height: 1.6; margin: 0; }
.tc-legal__card {
    background: #fff; color: #475569; line-height: 1.7;
    border: 1px solid #e2e8f0; border-radius: 28px;
    padding: 2.75rem 2.5rem;
    box-shadow: 0 30px 60px -35px rgba(15, 23, 42, .25);
}
@media (max-width: 640px) {
    .tc-legal__card { padding: 2rem 1.5rem; border-radius: 22px; }
}
.tc-legal__card h2 {
    position: relative;
    font-size: 1.375rem; font-weight: 700; color: #0f172a;
    margin: 0 0 12px; padding-top: 1.75rem; padding-left: 1.05rem;
    border-top: 1px solid #e2e8f0;
}
.tc-legal__card h2::before {
    content: ''; position: absolute; left: 0; top: 2.15rem;
    width: 4px; height: 1.05em; border-radius: 4px;
    background: linear-gradient(180deg, #2563FF, #1d4ed8);
}
.tc-legal__card h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.tc-legal__card h2:first-child::before { top: 0.15rem; }
.tc-legal__card h2 + h3 { margin-top: 0; }
.tc-legal__card h3 { font-size: 1.0625rem; font-weight: 700; color: #0f172a; margin: 24px 0 8px; }
.tc-legal__card p { margin: 0 0 14px; }
.tc-legal__card ul { margin: 0 0 18px; padding-left: 22px; }
.tc-legal__card li { margin-bottom: 6px; }
.tc-legal__card a { color: #2563eb; text-decoration: underline; text-underline-offset: 3px; word-break: break-word; }
.tc-legal__card a:hover { color: #1d4ed8; }
.tc-legal__stand { margin-top: 28px; padding-top: 20px; border-top: 1px solid #e2e8f0; font-size: 0.875rem; color: #94a3b8; }

/* Icon-Infokarten (z.B. Adresse/Telefon/E-Mail im Impressum) */
.tc-legal__info { display: grid; grid-template-columns: 1fr; gap: 0.75rem; margin: 0 0 14px; }
@media (min-width: 560px) { .tc-legal__info { grid-template-columns: 1fr 1fr; } }
.tc-legal__info-item { display: flex; align-items: flex-start; gap: 0.85rem; padding: 1rem 1.1rem; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 1rem; }
.tc-legal__info-item .tc-contact__ic { width: 40px; height: 40px; border-radius: 0.75rem; }
.tc-legal__info-item .tc-contact__ic svg { width: 18px; height: 18px; }
.tc-legal__info-label { display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: #94a3b8; margin-bottom: 0.2rem; }
.tc-legal__info-value { color: #0f172a; font-weight: 500; line-height: 1.5; }
.tc-legal__info-value a { color: #0f172a; text-decoration: none; }
.tc-legal__info-value a:hover { color: #2563eb; }

/* Backwards-compat: falls andere Templates noch die alten, ungekapselten Klassen nutzen */
.tc-legal h2 { font-size: 1.375rem; font-weight: 700; color: #0f172a; margin: 40px 0 12px; }
.tc-legal h3 { font-size: 1.0625rem; font-weight: 700; color: #0f172a; margin: 24px 0 8px; }
.tc-legal > .tc-legal__inner > p { margin: 0 0 14px; color: #475569; }
.tc-legal a { color: #2563eb; text-decoration: underline; text-underline-offset: 3px; }
.tc-legal a:hover { color: #1d4ed8; }

/* ====================================================================
   Header-Fix: Logo-Überlappung, Trennlinie, mittige Menüleiste
   Frühere Anpassungen an Logogröße und Header-Höhe hatten sich im
   Laufe der Zeit widersprochen: Das Logo-Bild war zuletzt größer
   (72px/88px) als die eigentliche Header-Leiste (64px/72px) und wurde
   dadurch oben und unten abgeschnitten ("klebt am Rand"). Dieser Block
   ist die einzige noch gültige Definition für Logo- und Header-Höhe:
   Die Leiste wurde etwas höher gemacht, damit ein groß und gut
   sichtbares Logo mit sauberem Abstand nach oben/unten hineinpasst,
   ohne abgeschnitten zu werden.
   ==================================================================== */
.tc-header__inner {
    height: 80px !important;
}
@media (min-width: 992px) {
    .tc-header__inner { height: 96px !important; }
}
.tc-main { padding-top: 80px !important; }
@media (min-width: 992px) { .tc-main { padding-top: 96px !important; } }

.tc-logo img {
    height: 64px !important;
    width: auto !important;
    object-fit: contain !important;
}
@media (min-width: 992px) {
    .tc-logo img { height: 80px !important; }
}

/* Dünne Trennlinie am oberen Rand (über/unter der Menüleiste) entfernen */
.tc-header,
.tc-header.is-scrolled {
    border-bottom: 0 !important;
}

/* Menüleiste (Hauptnavigation) unabhängig von der Breite von Logo und
   Buttons echt mittig zentrieren, statt nur "verteilt" zu positionieren */
@media (min-width: 992px) {
    .tc-header__inner {
        display: grid !important;
        grid-template-columns: 1fr auto 1fr;
        column-gap: 1rem;
    }
    .tc-logo { justify-self: start; }
    .tc-nav { justify-self: center; }
    .tc-header__actions { justify-self: end; }
}
