/* ==========================================================================
   ÖSI PACKT'S (packts.ch) — Schweizer Handwerker Design System
   100% Mobil-Fixiert: Strikter Viewport-Lockdown & Schweizer Typografie.
   Kein horizontales Rutschen / Wackeln. Alle Inhalte exakt im Bildschirm.
   ========================================================================== */

:root {
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-850: #172033;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50:  #f8fafc;
    --white:     #ffffff;

    --swiss-blue: #1d4ed8;
    --swiss-blue-hover: #1e40af;
    --ch-red: #da291c;

    --twint-green: #00a859;
    --twint-navy: #002b49;
    --wa-green: #128c7e;

    --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;

    --shadow-subtle: 0 1px 3px rgba(15, 23, 42, 0.06);
    --shadow-card: 0 3px 10px rgba(15, 23, 42, 0.05);

    --transition: all 0.2s ease-in-out;
}

/* 100% HORIZONTALE SPERRE — Verhindert jedes seitliche Wackeln auf Smartphones */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    font-family: var(--font-body);
    color: var(--slate-800);
    background-color: var(--slate-50);
    line-height: 1.6;
    padding-bottom: 74px; /* Platz für Sticky Dock am Smartphone */
    -webkit-font-smoothing: antialiased;
}

@media (min-width: 992px) {
    body {
        padding-bottom: 0;
    }
}

/* Page-Wrapper: Blockiert jedes unbemerkte Ausbrechen aus der Bildschirmbreite */
.site-wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

div, section, article, header, footer, main, nav {
    min-width: 0;
}

/* Typografie & Wortumbruch-Sicherheit */
h1, h2, h3, h4, p, span, a, li {
    word-break: break-word;
    overflow-wrap: break-word;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--slate-900);
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.015em;
}

p {
    color: var(--slate-600);
    font-size: 1rem;
    line-height: 1.6;
}

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

/* Strikte SVG & Medien Obergrenzen */
img, svg, picture, video {
    max-width: 100%;
    height: auto;
}

svg {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.btn-svg {
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
    fill: currentColor;
    flex-shrink: 0;
}

.logo-stamp svg {
    width: 22px !important;
    height: 22px !important;
    max-width: 22px !important;
    max-height: 22px !important;
    fill: var(--white);
}

.swiss-cross-icon svg {
    width: 10px !important;
    height: 10px !important;
    max-width: 10px !important;
    max-height: 10px !important;
    fill: var(--white);
}

/* Container mit sicherem Innenabstand */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 16px;
}

.max-w-720 {
    max-width: 720px;
}

/* Buttons — Mobil flexibel und nie überstehend */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    touch-action: manipulation;
    max-width: 100%;
    white-space: normal;
    word-break: break-word;
}

.btn-lg {
    padding: 13px 20px;
    font-size: 0.98rem;
}

.btn-sm {
    padding: 7px 12px;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background-color: var(--slate-900);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--slate-850);
}

.btn-whatsapp {
    background-color: var(--wa-green);
    color: var(--white);
}

.btn-whatsapp:hover {
    background-color: #0e7266;
}

.btn-outline {
    background: var(--white);
    color: var(--slate-800);
    border-color: var(--slate-300);
}

.btn-outline:hover {
    border-color: var(--slate-900);
    background-color: var(--slate-100);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* Schweizerkreuz Badge */
.swiss-cross-icon {
    width: 16px;
    height: 16px;
    background-color: var(--ch-red);
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Top Bar */
.top-bar {
    background-color: var(--slate-900);
    color: var(--slate-300);
    font-size: 0.82rem;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
}

.top-bar-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    width: 100%;
}

@media (min-width: 640px) {
    .top-bar-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.top-bar-left {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.region-indicator {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    color: var(--white);
}

.top-phone-link {
    font-weight: 600;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

/* Header */
.site-header {
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--slate-200);
    padding: 10px 0;
    width: 100%;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.logo-stamp {
    width: 36px;
    height: 36px;
    background: var(--slate-900);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.logo-main {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--slate-900);
    letter-spacing: -0.02em;
    line-height: 1.1;
    white-space: nowrap;
}

.logo-sub {
    font-size: 0.72rem;
    color: var(--slate-500);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main-nav {
    display: none;
    gap: 14px;
    flex-shrink: 0; /* Menü nie quetschen, sonst rutscht "FAQ" unter die Buttons */
}

/* Menü erst ab 1200px, darunter reicht der Platz neben Logo und Buttons nicht */
@media (min-width: 1200px) {
    .main-nav {
        display: flex;
    }
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--slate-700);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--slate-950);
}

.header-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

@media (max-width: 639px) {
    /* Auf Mobilgeräten übernimmt das Sticky Bottom Dock WhatsApp & Anrufen */
    .header-actions #headerWaBtn {
        display: none;
    }
    .header-actions #headerCallBtn {
        padding: 6px 12px;
        font-size: 0.84rem;
    }
}

/* Hero Section */
.hero-section {
    padding: 26px 0 34px;
    background-color: var(--white);
    border-bottom: 1px solid var(--slate-200);
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    width: 100%;
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 36px;
        align-items: center;
    }
}

.hero-text-col, .hero-image-col {
    width: 100%;
    min-width: 0;
}

/* Handy & Tablet: Foto vor dem Text, damit Ösi sofort sichtbar ist */
@media (max-width: 991px) {
    .hero-image-col {
        order: -1;
    }
}

.origin-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--slate-100);
    color: var(--slate-800);
    font-weight: 600;
    font-size: 0.82rem;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--slate-200);
    margin-bottom: 12px;
}

.hero-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 12px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.4rem;
    }
}

.hero-lead {
    font-size: 1rem;
    color: var(--slate-600);
    margin-bottom: 18px;
    line-height: 1.55;
}

/* Key-Facts Grid (Mobile 2x2 sauber ausgerichtet) */
.key-facts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 20px;
    width: 100%;
}

@media (min-width: 600px) {
    .key-facts-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
}

.fact-item {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
    padding: 8px 10px;
    min-width: 0;
}

.fact-label {
    display: block;
    font-size: 0.72rem;
    color: var(--slate-500);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 2px;
}

.fact-value {
    display: block;
    font-size: 0.94rem;
    font-weight: 700;
    color: var(--slate-900);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
    width: 100%;
}

.hero-actions .btn {
    width: 100%;
}

@media (min-width: 480px) {
    .hero-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .hero-actions .btn {
        width: auto;
    }
}

.languages-line {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    font-size: 0.84rem;
    color: var(--slate-600);
}

.lang-pill {
    background: var(--slate-100);
    padding: 2px 7px;
    border-radius: 4px;
    font-weight: 600;
    color: var(--slate-800);
    font-size: 0.78rem;
}

/* Hero Foto-Box */
.photo-frame {
    background: var(--slate-900);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-card);
    position: relative;
    width: 100%;
}

.photo-ratio {
    width: 100%;
    min-height: 290px;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--slate-900);
    position: relative;
    overflow: hidden;
}

/* Tablet: Foto einspaltig und breit, darum höher */
@media (min-width: 768px) {
    .photo-ratio {
        height: 520px;
    }
}

@media (min-width: 992px) {
    .photo-ratio {
        height: 440px;
    }
}

.photo-ratio img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%;
    display: block;
}

.photo-placeholder-box {
    text-align: center;
    padding: 18px 14px;
    color: var(--white);
}

.photo-placeholder-box h3 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.photo-placeholder-box p {
    color: var(--slate-400);
    font-size: 0.84rem;
    margin-bottom: 10px;
}

.placeholder-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.72rem;
    padding: 3px 8px;
    border-radius: 4px;
    color: var(--slate-300);
}

.photo-footer-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(6px);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ==========================================================================
   VERTRAUENS-LEISTE (Mobil 2x2 ohne abgeschnittene Texte/Ellipsen)
   ========================================================================== */
.trust-strip {
    background: var(--slate-100);
    border-bottom: 1px solid var(--slate-200);
    padding: 14px 0;
    width: 100%;
}

.trust-flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 14px;
    width: 100%;
}

@media (min-width: 768px) {
    .trust-flex {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
}

.trust-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    min-width: 0;
}

.trust-tag-local, .trust-tag-speed {
    font-size: 0.86rem;
    color: var(--slate-900);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.trust-desc {
    font-size: 0.78rem;
    color: var(--slate-600);
    line-height: 1.35;
    white-space: normal;
    overflow: visible;
}

.badge-twint-clean {
    background: var(--twint-navy);
    color: var(--white);
    padding: 2px 7px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.76rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.badge-twint-clean .twint-dot {
    width: 5px;
    height: 5px;
    background: var(--twint-green);
    border-radius: 50%;
}

.badge-cash-clean {
    background: var(--white);
    border: 1px solid var(--slate-300);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.76rem;
    color: var(--slate-800);
    flex-shrink: 0;
}

/* Abschnitte */
.section {
    padding: 38px 0;
    width: 100%;
}

@media (min-width: 768px) {
    .section {
        padding: 52px 0;
    }
}

.section-alt {
    background-color: var(--white);
    border-top: 1px solid var(--slate-200);
    border-bottom: 1px solid var(--slate-200);
}

.section-head {
    margin-bottom: 24px;
    width: 100%;
}

.section-head.text-center {
    text-align: center;
}

.kicker {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--slate-500);
    display: block;
    margin-bottom: 4px;
}

.section-title {
    font-size: 1.6rem;
    color: var(--slate-900);
    margin-bottom: 6px;
    line-height: 1.25;
}

.section-desc {
    font-size: 0.94rem;
    color: var(--slate-600);
    max-width: 580px;
    margin: 0 auto;
}

/* Hürden-Grid */
.problems-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 20px;
    width: 100%;
}

@media (min-width: 600px) {
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.problem-box {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    padding: 16px;
    min-width: 0;
}

.problem-box h4 {
    font-size: 1.02rem;
    margin-bottom: 4px;
    color: var(--slate-900);
}

.problem-box p {
    font-size: 0.88rem;
    color: var(--slate-600);
    line-height: 1.5;
}

.solution-box-simple {
    background: var(--slate-900);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

@media (min-width: 768px) {
    .solution-box-simple {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 22px;
    }
}

.solution-box-simple h3 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.solution-box-simple p {
    color: var(--slate-300);
    font-size: 0.88rem;
}

/* Dienstleistungen Cards */
.services-grid-clean {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 22px;
    width: 100%;
}

@media (min-width: 600px) {
    .services-grid-clean {
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
        gap: 16px;
    }
}

.service-item-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    padding: 18px;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.service-item-card.highlight {
    border: 1.5px solid var(--slate-900);
    position: relative;
}

.highlight-tag {
    position: absolute;
    top: -10px;
    right: 14px;
    background: var(--slate-900);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 3px;
    text-transform: uppercase;
}

.card-num {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--slate-400);
    margin-bottom: 4px;
    display: block;
}

.service-item-card h3 {
    font-size: 1.12rem;
    margin-bottom: 6px;
}

.card-desc {
    font-size: 0.88rem;
    color: var(--slate-600);
    margin-bottom: 12px;
    line-height: 1.5;
}

.card-list {
    list-style: none;
    margin-bottom: 16px;
    flex-grow: 1;
}

.card-list li {
    font-size: 0.85rem;
    color: var(--slate-700);
    margin-bottom: 6px;
    padding-left: 14px;
    position: relative;
    line-height: 1.45;
}

.card-list li::before {
    content: "–";
    position: absolute;
    left: 0;
    color: var(--slate-400);
}

.card-action-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--slate-900);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border-top: 1px solid var(--slate-100);
    padding-top: 10px;
}

/* Dual Feature Grid */
.dual-feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 18px;
    width: 100%;
}

@media (min-width: 768px) {
    .dual-feature-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

.dual-box {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    padding: 18px;
    min-width: 0;
}

.dual-badge {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--slate-100);
    padding: 3px 8px;
    border-radius: 3px;
    color: var(--slate-700);
    display: inline-block;
    margin-bottom: 8px;
}

.dual-box h4 {
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.dual-box p {
    font-size: 0.88rem;
    color: var(--slate-600);
    margin-bottom: 12px;
}

/* Flexible Anfrage */
.flexible-inquiry-box {
    background: var(--slate-100);
    border: 1px dashed var(--slate-300);
    border-radius: var(--radius-md);
    padding: 18px 14px;
    text-align: center;
    margin-top: 20px;
    width: 100%;
}

.flexible-inquiry-box h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.flexible-inquiry-box p {
    font-size: 0.9rem;
    max-width: 580px;
    margin: 0 auto 14px;
}

/* Über mich */
.about-grid-clean {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    width: 100%;
}

@media (min-width: 992px) {
    .about-grid-clean {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 36px;
        align-items: center;
    }
}

.about-photos-stack {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
}

.stack-photo {
    background: var(--slate-900);
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 360px;
    position: relative;
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-subtle);
    display: block;
}

@media (min-width: 768px) {
    .stack-photo {
        height: 440px;
    }
}

.stack-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
}

.stack-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.92) 0%, rgba(2, 6, 23, 0.5) 70%, transparent 100%);
    padding: 16px 10px 8px;
    color: var(--white);
    text-align: left;
    pointer-events: none;
}

.stack-caption strong {
    display: block;
    font-size: 0.86rem;
    font-family: var(--font-heading);
    color: var(--white);
    line-height: 1.2;
}

.stack-caption span {
    display: block;
    font-size: 0.74rem;
    color: var(--slate-300);
    line-height: 1.3;
}

.about-content-clean h2 {
    font-size: 1.55rem;
    margin-bottom: 8px;
}

.lead-p {
    font-size: 1rem;
    color: var(--slate-800);
    font-weight: 500;
    margin-bottom: 10px;
}

/* ==========================================================================
   ABOUT-POINTS (Flüssiger Text ohne Spalten-Bruch von Wörtern oder Doppelpunkten)
   ========================================================================== */
.about-points {
    list-style: none;
    margin: 16px 0 20px;
    width: 100%;
}

.about-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    width: 100%;
}

.point-check {
    color: var(--swiss-blue);
    font-weight: 800;
    font-size: 1.15rem;
    line-height: 1.3;
    flex-shrink: 0;
}

.point-text {
    flex: 1;
    min-width: 0;
    font-size: 0.92rem;
    color: var(--slate-700);
    line-height: 1.5;
}

.point-text strong {
    color: var(--slate-900);
    font-weight: 700;
}

/* Preise & Rechner */
.pricing-cards-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 22px;
    width: 100%;
}

@media (min-width: 600px) {
    .pricing-cards-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
}

.rate-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
    min-width: 0;
}

.rate-card.primary-rate {
    border: 1.5px solid var(--slate-900);
}

.rate-title {
    font-size: 0.78rem;
    color: var(--slate-500);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 3px;
}

.rate-amount {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 3px;
}

.rate-desc {
    font-size: 0.85rem;
    color: var(--slate-600);
    line-height: 1.45;
}

.calc-clean-wrapper {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-subtle);
    overflow: hidden;
    width: 100%;
}

.calc-clean-head {
    background: var(--slate-900);
    color: var(--white);
    padding: 16px 18px;
    width: 100%;
}

.calc-clean-head h3 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 2px;
}

.calc-clean-head p {
    color: var(--slate-300);
    font-size: 0.85rem;
}

.calc-clean-body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 16px;
    width: 100%;
}

@media (min-width: 850px) {
    .calc-clean-body {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 28px;
        padding: 24px;
    }
}

.calc-inputs-pane, .calc-output-pane {
    width: 100%;
    min-width: 0;
}

.calc-row {
    margin-bottom: 16px;
    width: 100%;
}

.calc-label-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--slate-800);
}

.calc-num-badge {
    background: var(--slate-100);
    padding: 2px 7px;
    border-radius: 4px;
    color: var(--slate-900);
    font-weight: 700;
    font-size: 0.88rem;
}

.clean-slider {
    width: 100%;
    height: 8px;
    background: var(--slate-200);
    border-radius: 4px;
    outline: none;
    accent-color: var(--slate-900);
    cursor: pointer;
}

.service-selector-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--slate-800);
}

.chips-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    width: 100%;
}

.chip-btn {
    background: var(--slate-100);
    border: 1px solid var(--slate-200);
    padding: 7px 11px;
    border-radius: var(--radius-sm);
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--slate-700);
    cursor: pointer;
    touch-action: manipulation;
    max-width: 100%;
}

.chip-btn.active {
    background: var(--slate-900);
    color: var(--white);
    border-color: var(--slate-900);
}

.calc-output-pane {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.output-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--slate-500);
    margin-bottom: 3px;
}

.output-total {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--slate-900);
    line-height: 1.1;
    margin-bottom: 10px;
}

.output-breakdown {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 4px;
    padding: 9px 11px;
    font-size: 0.84rem;
    text-align: left;
    margin-bottom: 12px;
}

.output-breakdown-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3px;
}

.note-fine {
    font-size: 0.74rem;
    color: var(--slate-500);
    border-top: 1px dashed var(--slate-200);
    padding-top: 5px;
    margin-top: 5px;
}

/* ==========================================================================
   RECHNER BUTTON (Text zusammenhängend, kein Umbruch einzelner Buchstaben)
   ========================================================================== */
.calc-btn-text {
    display: inline-block;
    text-align: center;
    line-height: 1.35;
}

#btnPricePreview {
    white-space: nowrap;
    font-weight: 700;
}

/* Einsatzgebiet */
.region-box-clean {
    background: var(--slate-900);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

@media (min-width: 850px) {
    .region-box-clean {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        align-items: center;
        padding: 28px 24px;
    }
}

.region-box-clean h2 {
    color: var(--white);
    font-size: 1.45rem;
    margin-bottom: 6px;
}

.region-box-clean p {
    color: var(--slate-300);
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.region-tags-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    width: 100%;
}

.rtag {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--slate-200);
}

.rtag.home {
    background: var(--white);
    color: var(--slate-950);
    font-weight: 700;
}

/* FAQ */
.faq-clean-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.faq-entry {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
    overflow: hidden;
    width: 100%;
}

.faq-entry.active {
    border-color: var(--slate-400);
}

.faq-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 14px 16px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--slate-900);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    touch-action: manipulation;
}

.faq-btn span:first-child {
    min-width: 0;
    flex-grow: 1;
}

.faq-icon-toggle {
    font-size: 1.25rem;
    color: var(--slate-400);
    font-weight: 400;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq-entry.active .faq-icon-toggle {
    transform: rotate(45deg);
    color: var(--slate-900);
}

.faq-content-area {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease-out;
    padding: 0 16px;
}

.faq-content-area p {
    padding-bottom: 14px;
    color: var(--slate-600);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* CTA Banner Final */
.cta-banner-final {
    background: var(--slate-900);
    color: var(--white);
    padding: 38px 0;
    text-align: center;
    width: 100%;
}

.cta-banner-final h2 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.cta-banner-final p {
    color: var(--slate-300);
    font-size: 0.95rem;
    max-width: 540px;
    margin: 0 auto 18px;
}

.cta-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

@media (min-width: 480px) {
    .cta-btns {
        flex-direction: row;
        max-width: none;
        justify-content: center;
    }
}

/* Footer */
.site-footer-clean {
    background: var(--slate-950);
    color: var(--slate-400);
    padding: 34px 0 18px;
    font-size: 0.85rem;
    border-top: 1px solid var(--slate-850);
    width: 100%;
}

.footer-grid-clean {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 26px;
    width: 100%;
}

@media (min-width: 600px) {
    .footer-grid-clean {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 26px;
    }
}

.site-footer-clean h4 {
    color: var(--white);
    font-size: 0.94rem;
    margin-bottom: 8px;
}

.footer-nav-list {
    list-style: none;
}

.footer-nav-list li {
    margin-bottom: 7px;
}

.footer-nav-list a:hover {
    color: var(--white);
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.78rem;
    width: 100%;
}

@media (min-width: 600px) {
    .footer-bottom-bar {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Mobile Sticky Action Bar — Feste Bildschirmbreite, kein Ausbrechen */
.mobile-action-dock {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    background: var(--white);
    border-top: 1px solid var(--slate-200);
    display: flex;
    padding: 8px 10px;
    gap: 8px;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
}

@media (min-width: 992px) {
    .mobile-action-dock {
        display: none;
    }
}

.dock-btn {
    flex: 1 1 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 6px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.92rem;
    text-align: center;
    min-width: 0;
    white-space: nowrap;
    cursor: pointer;
}

.dock-call {
    background: var(--slate-900);
    color: var(--white);
}

.dock-wa {
    background: var(--wa-green);
    color: var(--white);
}

/* ==========================================================================
   ANRUF-MENÜ (Action Sheet / Modal Dialog)
   ========================================================================== */
.call-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(2, 6, 23, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

@media (min-width: 600px) {
    .call-modal-overlay {
        align-items: center;
        padding: 20px;
    }
}

.call-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.call-modal-sheet {
    background: var(--white);
    width: 100%;
    max-width: 440px;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.2);
    padding: 16px 20px 24px;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 90vh;
    overflow-y: auto;
    box-sizing: border-box;
}

@media (min-width: 600px) {
    .call-modal-sheet {
        border-radius: var(--radius-lg);
        transform: scale(0.95);
        transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
        padding: 22px 24px 26px;
    }
}

.call-modal-overlay.open .call-modal-sheet {
    transform: translateY(0);
}

@media (min-width: 600px) {
    .call-modal-overlay.open .call-modal-sheet {
        transform: scale(1);
    }
}

.call-modal-drag-bar {
    width: 36px;
    height: 4px;
    background-color: var(--slate-300);
    border-radius: 2px;
    margin: 0 auto 14px;
}

@media (min-width: 600px) {
    .call-modal-drag-bar {
        display: none;
    }
}

.call-modal-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--slate-200);
}

.call-avatar-icon {
    width: 42px;
    height: 42px;
    background-color: var(--slate-900);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.call-modal-heading {
    flex: 1;
    min-width: 0;
}

.call-modal-heading h3 {
    font-size: 1.15rem;
    color: var(--slate-900);
    margin-bottom: 2px;
}

.call-modal-heading p {
    font-size: 0.82rem;
    color: var(--slate-500);
}

.call-close-btn {
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--slate-400);
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    touch-action: manipulation;
}

.call-close-btn:hover {
    color: var(--slate-900);
}

.call-modal-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.call-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--radius-md);
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    color: var(--slate-900);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    touch-action: manipulation;
    width: 100%;
    text-align: left;
    box-sizing: border-box;
}

.call-menu-item:hover, .call-menu-item:active {
    background: var(--slate-100);
    border-color: var(--slate-300);
}

.call-menu-item.primary-call-item {
    background: var(--slate-900);
    color: var(--white);
    border-color: var(--slate-900);
}

.call-menu-item.primary-call-item:hover, .call-menu-item.primary-call-item:active {
    background: var(--slate-850);
}

.call-menu-item.primary-call-item .item-title {
    color: var(--white);
}

.call-menu-item.primary-call-item .item-sub {
    color: var(--slate-300);
}

.item-icon-bubble {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phone-bubble {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.wa-bubble {
    background: rgba(18, 140, 126, 0.12);
    color: var(--wa-green);
}

.sms-bubble {
    background: rgba(29, 78, 216, 0.12);
    color: var(--swiss-blue);
}

.copy-bubble {
    background: var(--slate-200);
    color: var(--slate-700);
}

.item-text-wrap {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.item-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.94rem;
    color: var(--slate-900);
    line-height: 1.25;
}

.item-sub {
    font-size: 0.78rem;
    color: var(--slate-500);
    margin-top: 2px;
}

.item-action-icon {
    font-size: 1.1rem;
    color: var(--slate-400);
    flex-shrink: 0;
}

.call-modal-bottom {
    padding-top: 4px;
}

/* ==========================================================================
   GALERIE / EINSATZ-BILDER (Echte Praxiseindrücke im Toggenburg)
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
    margin-top: 14px;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
}

.gallery-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    display: flex;
    flex-direction: column;
}

.gallery-img-wrap {
    width: 100%;
    height: 190px;
    overflow: hidden;
    background: var(--slate-900);
    position: relative;
}

.gallery-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease;
}

/* Hochformat-Fotos: Kopf nicht abschneiden */
.gallery-img-wrap img.gallery-img-top {
    object-position: center 20%;
}

.gallery-card:hover .gallery-img-wrap img {
    transform: scale(1.04);
}

.gallery-card-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex-grow: 1;
}

.gallery-card-body h4 {
    font-size: 0.94rem;
    color: var(--slate-900);
    margin: 0;
}

.gallery-card-body p {
    font-size: 0.8rem;
    color: var(--slate-600);
    line-height: 1.4;
    margin: 0;
}

