/**
 * TiviMate Premium Deutschland – Custom CSS
 * Animationen, Scrollbar, Hilfsstyles
 *
 * @package Tivimate_Premium
 */

/* ========================================
   ANIMATIONEN
   ======================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-24px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(24px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.93); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position:  200% center; }
}

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

.animate-fadeInUp    { animation: fadeInUp    0.55s ease forwards; }
.animate-fadeInLeft  { animation: fadeInLeft  0.55s ease forwards; }
.animate-fadeInRight { animation: fadeInRight 0.55s ease forwards; }
.animate-scaleIn     { animation: scaleIn     0.45s ease forwards; }
.animate-float       { animation: floatY      3.5s ease-in-out infinite; }

/* Verzögerungen */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* ========================================
   SHIMMER (Skeleton Loading)
   ======================================== */
.shimmer {
    background: linear-gradient(
        90deg,
        var(--bg-tertiary) 25%,
        rgba(255,255,255,0.06) 50%,
        var(--bg-tertiary) 75%
    );
    background-size: 200% auto;
    animation: shimmer 1.5s linear infinite;
}

/* ========================================
   SCROLLBAR
   ======================================== */
::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--bg-tertiary); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ========================================
   TEXT-AUSWAHL
   ======================================== */
::selection     { background: var(--accent); color: white; }
::-moz-selection { background: var(--accent); color: white; }

/* ========================================
   FOKUS-STILE (Barrierefreiheit)
   ======================================== */
*:focus               { outline: 2px solid var(--accent); outline-offset: 2px; }
*:focus:not(:focus-visible) { outline: none; }

/* ========================================
   LAZY LOADING PLACEHOLDER
   ======================================== */
img[loading="lazy"] { background: var(--bg-tertiary); }

/* ========================================
   GRADIENT-TEXT SHIMMER (Hero-Effekt)
   ======================================== */
.text-gradient-animated {
    background: linear-gradient(
        135deg,
        var(--accent-light),
        #93c5fd,
        var(--gold-light),
        var(--accent-light)
    );
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

/* ========================================
   PREMIUM BADGE (wiederverwendbar)
   ======================================== */
.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--gold-glow), rgba(245,158,11,0.08));
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ========================================
   GLOWING BORDER (Featured-Elemente)
   ======================================== */
.border-glow {
    position: relative;
}

.border-glow::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--accent), var(--accent-light), var(--gold));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.border-glow:hover::before { opacity: 1; }

/* ========================================
   PRICE HIGHLIGHT (Bestpreis-Indikator)
   ======================================== */
.best-price-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    background: rgba(16,185,129,0.12);
    border: 1px solid rgba(16,185,129,0.25);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ========================================
   COUNTDOWN-TIMER (optional)
   ======================================== */
.countdown-wrap {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 20px 0;
}

.countdown-item {
    text-align: center;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
    min-width: 64px;
}

.countdown-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-light);
    line-height: 1;
    letter-spacing: -0.03em;
}

.countdown-label {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========================================
   NOTIFICATION TOAST (Live-Käufe)
   ======================================== */
.toast-notification {
    position: fixed;
    bottom: 110px;
    left: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 300px;
    z-index: 997;
    transform: translateX(-120%);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: var(--shadow-lg);
}

.toast-notification.show { transform: translateX(0); }

.toast-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--green-glow);
    border: 1px solid rgba(16,185,129,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 16px;
    flex-shrink: 0;
}

.toast-text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
}

.toast-text span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ========================================
   HILFSKASSEN
   ======================================== */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.no-scroll { overflow: hidden; }

.mt-0  { margin-top: 0 !important; }
.mb-0  { margin-bottom: 0 !important; }
.text-green  { color: var(--green) !important; }
.text-gold   { color: var(--gold-light) !important; }
.text-accent { color: var(--accent-light) !important; }
.text-muted  { color: var(--text-muted) !important; }

/* ========================================
   FIX OVERFLOW HORIZONTAL MOBILE
   ======================================== */
*, *::before, *::after {
    max-width: 100%;
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
    }

    /* Empêche les radial-gradient de créer un scroll horizontal */
    .hero-section,
    .pricing-section,
    .channels-hero,
    .cta-content {
        overflow: hidden;
    }

    /* Fix texte trop large */
    h1, h2, h3 {
        word-break: break-word;
        overflow-wrap: break-word;
    }

    /* Fix hero h1 mobile */
    .hero-section h1 {
        font-size: 1.9rem;
        line-height: 1.15;
    }
}

/* ========================================
   POLICY-BODY ERWEITERUNGEN
   (H3, Tabellen, Listen mit Zahlen, Zitate,
   Bilder — für Ratgeberseiten & Blogartikel)
   ======================================== */
.policy-body h3 {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 700;
    margin: 26px 0 12px;
    letter-spacing: -0.01em;
}

.policy-body ol {
    margin: 16px 0;
    padding-left: 24px;
}

.policy-body ol li {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.policy-body strong { color: var(--text-primary); }

.policy-body blockquote {
    margin: 20px 0;
    padding: 16px 22px;
    background: var(--bg-tertiary);
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
    color: var(--text-secondary);
    font-style: italic;
}

.policy-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 20px 0;
    display: block;
}

.policy-body figcaption {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: -12px;
    margin-bottom: 20px;
}

.policy-body hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 36px 0;
}

.table-wrap {
    overflow-x: auto;
    margin: 20px 0 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.policy-body table,
.table-wrap table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 480px;
}

.policy-body table th,
.table-wrap table th {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    font-weight: 700;
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.policy-body table td,
.table-wrap table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
}

.policy-body table tr:last-child td { border-bottom: none; }
.policy-body table tr:hover td { background: rgba(255,255,255,0.02); }

/* ========================================
   BREADCRUMB (Ratgeber & Blog)
   ======================================== */
.hi-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.hi-breadcrumb a { color: var(--text-muted); text-decoration: none; transition: var(--transition-fast); }
.hi-breadcrumb a:hover { color: var(--accent-light); }
.hi-breadcrumb span.sep { opacity: 0.5; }
.hi-breadcrumb span.current { color: var(--text-secondary); }

/* ========================================
   BLOG — ARTIKELLISTE (home.php)
   ======================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-lg);
}

.blog-card-image {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
    position: relative;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.blog-card:hover .blog-card-image img { transform: scale(1.05); }

.blog-card-image .blog-card-fallback-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: var(--accent-light);
    opacity: 0.5;
}

.blog-card-body {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 12px;
}

.blog-card-cat {
    padding: 3px 12px;
    background: var(--accent-glow);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-full);
    color: var(--accent-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 11px;
}

.blog-card-date { color: var(--text-muted); }

.blog-card h2 {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.blog-card:hover h2 { color: var(--accent-light); }

.blog-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
}

.blog-card-readmore {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-light);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-card-readmore i { transition: var(--transition-fast); }
.blog-card:hover .blog-card-readmore i { transform: translateX(3px); }

.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.blog-pagination a,
.blog-pagination span {
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.blog-pagination a:hover { border-color: var(--border-accent); color: var(--accent-light); }
.blog-pagination span.current { background: var(--accent); border-color: var(--accent); color: #fff; }

.blog-empty {
    text-align: center;
    padding: 64px 24px;
    color: var(--text-muted);
}

/* ========================================
   BLOG — EINZELARTIKEL (single.php)
   ======================================== */
.article-hero {
    padding: 120px 0 40px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
}

.article-hero-inner { max-width: 820px; margin: 0 auto; }

.article-meta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    font-size: 13px;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

.article-hero h1 {
    font-size: clamp(26px, 4vw, 40px);
    line-height: 1.25;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.article-excerpt {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.article-featured-image {
    max-width: 1020px;
    margin: 0 auto 8px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-body-wrap { max-width: 820px; margin: 0 auto; }

.article-toc {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    margin-bottom: 36px;
}

.article-toc-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-light);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-toc ol {
    margin: 0;
    padding-left: 20px;
}

.article-toc ol li { margin-bottom: 8px; }
.article-toc ol li a {
    color: var(--text-secondary);
    font-size: 14px;
    text-decoration: none;
}
.article-toc ol li a:hover { color: var(--accent-light); }

.article-content { color: var(--text-secondary); }

.article-content h2 {
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 700;
    margin: 44px 0 18px;
    letter-spacing: -0.01em;
    scroll-margin-top: 100px;
}

.article-content h2:first-child { margin-top: 0; }

.article-content h3 {
    color: var(--text-primary);
    font-size: 19px;
    font-weight: 700;
    margin: 30px 0 14px;
    scroll-margin-top: 100px;
}

.article-content p {
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 18px;
}

.article-content ul,
.article-content ol {
    margin: 0 0 18px;
    padding-left: 24px;
}

.article-content ul li,
.article-content ol li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.article-content strong { color: var(--text-primary); }
.article-content a { color: var(--accent-light); }

.article-content blockquote {
    margin: 24px 0;
    padding: 18px 24px;
    background: var(--bg-tertiary);
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 24px 0;
}

.article-content table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 480px; }
.article-content table th {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    font-weight: 700;
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
}
.article-content table td { padding: 12px 16px; border-bottom: 1px solid var(--border); }

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 40px 0 8px;
}

.article-tags a {
    padding: 5px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 12px;
    color: var(--text-secondary);
    text-decoration: none;
}
.article-tags a:hover { color: var(--accent-light); border-color: var(--border-accent); }

.article-author-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px 26px;
    margin: 40px 0;
}

.article-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.article-author-name { font-weight: 700; color: var(--text-primary); font-size: 14px; }
.article-author-role { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

.related-posts-section {
    max-width: 1020px;
    margin: 24px auto 0;
    padding: 48px 0 0;
    border-top: 1px solid var(--border);
}

.related-posts-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

/* ========================================
   RESPONSIVE — BLOG & ARTICLE
   ======================================== */
@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
    .article-hero { padding: 100px 0 32px; }
    .article-toc { padding: 20px; }
    .article-author-box { flex-direction: column; text-align: center; }
}

/* ========================================
   DRUCKSTILE
   ======================================== */
@media print {
    .site-header,
    .site-footer,
    .whatsapp-float,
    .scroll-to-top,
    .mobile-nav-panel,
    .mobile-nav-overlay,
    .toast-notification {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    a { text-decoration: underline; }
}
/* ============================================================
   BESTELL-ASSISTENT (#bestellen)
   ============================================================ */
.order-section { padding: 96px 0; background: var(--bg-secondary); border-top: 1px solid var(--border); }
.order-form {
    max-width: 820px; margin: 0 auto; padding: 36px;
    background: var(--bg-card); border: 1px solid var(--border-light);
    border-radius: var(--radius-xl); box-shadow: var(--shadow-glow);
}
.order-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.order-step { border: 0; padding: 0; margin: 0 0 28px; min-width: 0; }
.order-step legend {
    display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
    font-weight: 700; font-size: 16px; color: var(--text-primary);
}
.order-step-no {
    display: inline-grid; place-items: center; width: 28px; height: 28px; border-radius: 50%;
    background: var(--accent-glow); border: 1px solid var(--border-accent);
    color: var(--accent-light); font-size: 13px;
}
.order-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.order-plan input, .order-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.order-plan-body {
    position: relative; display: flex; flex-direction: column; align-items: center; gap: 4px;
    padding: 22px 12px 18px; height: 100%; cursor: pointer; text-align: center;
    background: var(--bg-tertiary); border: 2px solid var(--border); border-radius: var(--radius-lg);
    transition: var(--transition-fast);
}
.order-plan-body:hover { border-color: var(--border-light); }
.order-plan input:checked + .order-plan-body { border-color: var(--gold); background: var(--gold-glow); }
.order-plan input:focus-visible + .order-plan-body,
.order-toggle input:focus-visible + span { outline: 2px solid var(--accent-light); outline-offset: 2px; }
.order-plan-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); }
.order-plan.is-popular .order-plan-tag { color: var(--gold-light); }
.order-plan-months { font-weight: 700; color: var(--text-primary); }
.order-plan-price { font-size: 30px; font-weight: 800; color: var(--text-primary); line-height: 1.1; }
.order-plan-monthly { font-size: 13px; color: var(--text-secondary); }
.order-toggle { display: flex; flex-wrap: wrap; gap: 10px; }
.order-toggle label { flex: 1 1 150px; }
.order-toggle span {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
    min-height: 52px; padding: 10px 14px; cursor: pointer; text-align: center; font-weight: 600;
    color: var(--text-secondary); background: var(--bg-tertiary);
    border: 2px solid var(--border); border-radius: var(--radius); transition: var(--transition-fast);
}
.order-toggle small { font-size: 11px; color: var(--green); font-weight: 700; }
.order-toggle input:checked + span { color: var(--text-primary); border-color: var(--accent); background: var(--accent-glow); }
.order-input {
    width: 100%; min-height: 48px; padding: 12px 14px; font: inherit; font-size: 16px;
    color: var(--text-primary); background: var(--bg-tertiary);
    border: 1px solid var(--border-light); border-radius: var(--radius);
}
.order-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
select.order-input option { background: var(--bg-secondary); }
.order-hint { margin: 8px 0 0; font-size: 13px; color: var(--text-muted); }
.order-summary {
    display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
    margin: 8px 0 20px; padding: 18px 22px; border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--accent-glow), var(--gold-glow)); border: 1px solid var(--border-light);
}
.order-summary-label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); }
.order-summary-text { color: var(--text-primary); font-size: 17px; }
.order-summary-price { text-align: right; }
.order-total { display: block; font-size: 32px; font-weight: 800; color: var(--gold-light); line-height: 1.1; }
.order-monthly { font-size: 13px; color: var(--text-secondary); }
.order-actions { display: grid; gap: 10px; }
.order-mail { margin-top: 22px; border: 1px solid var(--border); border-radius: var(--radius); }
.order-mail summary { cursor: pointer; padding: 14px 18px; font-weight: 600; color: var(--text-secondary); }
.order-mail summary:hover { color: var(--text-primary); }
.order-mail-body { padding: 4px 18px 18px; display: grid; gap: 14px; }
.order-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.order-grid label { display: grid; gap: 6px; font-size: 13px; font-weight: 600; color: var(--text-secondary); }
.order-optional { font-weight: 400; color: var(--text-muted); }
.order-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--text-secondary); }
.order-consent input { margin-top: 3px; width: 18px; height: 18px; flex-shrink: 0; }
.order-consent a { color: var(--accent-light); }
.order-trust {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px;
    list-style: none; margin: 24px 0 0; padding: 18px 0 0; border-top: 1px solid var(--border);
    font-size: 13px; color: var(--text-secondary);
}
.order-trust i { color: var(--green); margin-right: 6px; }
.order-notice {
    max-width: 820px; margin: 0 auto 20px; padding: 14px 18px; border-radius: var(--radius);
    display: flex; gap: 10px; align-items: center; font-weight: 600;
}
.order-notice--ok { background: var(--green-glow); border: 1px solid rgba(16,185,129,.35); color: #6ee7b7; }
.order-notice--error { background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.35); color: #fca5a5; }
.faq-block-title { font-size: 24px; margin: 48px 0 20px; }

/* ============================================================
   MOBILE STICKY-CTA
   ============================================================ */
.mobile-cta-bar { display: none; }
@media (max-width: 768px) {
    .order-section { padding: 64px 0; }
    .order-form { padding: 22px 16px; border-radius: var(--radius-lg); }
    .order-plans { grid-template-columns: 1fr; }
    .order-plan-body { flex-direction: row; flex-wrap: wrap; justify-content: space-between; text-align: left; padding: 14px 16px; }
    .order-plan-tag { width: 100%; }
    .order-plan-price { font-size: 24px; }
    .order-grid { grid-template-columns: 1fr; }
    .order-summary-price { text-align: left; }

    .mobile-cta-bar {
        display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
        position: fixed; left: 0; right: 0; bottom: 0; z-index: 998;
        padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
        background: rgba(8, 8, 16, .94); backdrop-filter: blur(10px);
        border-top: 1px solid var(--border-light);
    }
    .mobile-cta-bar .btn { min-height: 46px; padding: 10px 12px; font-size: 14px; justify-content: center; }
    body { padding-bottom: 72px; }
    .whatsapp-float, .scroll-to-top { bottom: 84px !important; }
}

/* ============================================================
   INSTALLATIONS-SCHRITTE MIT SCREENSHOTS
   ============================================================ */
.install-steps { list-style: none; margin: 0 0 32px; padding: 0; counter-reset: none; display: grid; gap: 18px; }
.install-step {
    display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: center;
    padding: 20px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.install-step:not(:has(figure)) { grid-template-columns: 1fr; }
.install-step-text { display: flex; gap: 14px; align-items: flex-start; }
.install-step-no {
    flex-shrink: 0; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
    background: var(--accent); color: #fff; font-weight: 800;
}
.install-step h3 { margin: 4px 0 6px; font-size: 17px; }
.install-step p { margin: 0; color: var(--text-secondary); font-size: 15px; line-height: 1.65; }
.install-step-img { margin: 0; }
.install-step-img img { width: 100%; height: auto; border-radius: var(--radius); border: 1px solid var(--border-light); display: block; }
@media (max-width: 768px) {
    .install-step { grid-template-columns: 1fr; padding: 16px; }
}
