/*
 * Landing page stylesheet — split out of landing.ru.html body to
 * keep the HTML response small enough that Cloudflare's Free-plan
 * edge doesn't stall the stream. Also shared by landing.global.html
 * where they overlap. Served with a ?v={{buildVersion}} cache-bust
 * on every deploy so the CSS updates with the HTML.
 *
 * DO NOT reintroduce these rules as <style> blocks in the landing
 * templates — we ran into CF edge throttling the HTML body past
 * ~60 KB and moving all CSS out here was the fix.
 */

* { margin: 0; padding: 0; box-sizing: border-box; }

        /* Skip-link: hidden by default (off-screen), appears at top when
           it receives keyboard focus. Keyboard-only users hit Tab on page
           load and jump straight to <main> instead of tabbing through the
           whole nav. Screen readers get this as the first focusable item. */
        .skip-link {
            position: absolute; top: -40px; left: 0; background: #2563eb;
            color: #fff; padding: 8px 16px; text-decoration: none;
            z-index: 1000; border-radius: 0 0 6px 0;
        }
        .skip-link:focus { top: 0; }
        html { scroll-behavior: smooth; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            color: #1f2937; line-height: 1.6; background: #fff;
            -webkit-font-smoothing: antialiased;
        }
        a { color: inherit; }
        /* Defeat browser default :visited purple on button-styled links */
        .btn-primary, .btn-primary:visited { color: #fff !important; }
        .btn-secondary, .btn-secondary:visited { color: #2563eb !important; }

        .nav {
            position: sticky; top: 0; z-index: 10;
            background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
            border-bottom: 1px solid #e5e7eb;
            padding: 14px 24px; display: flex; justify-content: space-between; align-items: center;
        }
        .nav-brand { font-weight: 700; font-size: 18px; color: #1e3a8a; }
        .nav-brand span { color: #2563eb; }
        .nav-links { display: flex; gap: 24px; align-items: center; font-size: 14px; }
        .nav-links a { color: #4b5563; text-decoration: none; }
        .nav-links a:hover { color: #2563eb; }

        /* Landing-themed language switcher. Duplicated from style.css
           (which landing intentionally doesn't load — it keeps the
           marketing page snappy). Light theme to match the white nav
           instead of the dark SPA header version. */
        .nav-lang { position: relative; }
        .nav-lang-btn { font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 6px 10px; border-radius: 6px; background: transparent; border: 1px solid #d1d5db; color: #4b5563; cursor: pointer; line-height: 1; }
        .nav-lang-btn:hover { border-color: #2563eb; color: #2563eb; }
        .nav-lang-menu { position: absolute; top: calc(100% + 4px); right: 0; background: #fff; color: #111827; border-radius: 6px; box-shadow: 0 8px 24px rgba(0,0,0,0.15); min-width: 160px; padding: 4px 0; z-index: 100; display: block; }
        .nav-lang-menu.hidden { display: none; }
        .nav-lang-menu button { display: block; width: 100%; text-align: left; padding: 8px 14px; background: transparent; border: none; font-size: 14px; color: #111827; cursor: pointer; }
        .nav-lang-menu button:hover { background: #f3f4f6; }
        .nav-lang-menu button.active { background: #eff6ff; color: #1d4ed8; font-weight: 600; }

        /* Mobile burger — hidden by default, replaces the text links on
           screens narrow enough that they'd otherwise wrap. */
        .nav-toggle { display: none; }
        .nav-burger { display: none; width: 32px; height: 32px; cursor: pointer; flex-direction: column; justify-content: center; gap: 5px; padding: 0; align-self: center; }
        .nav-burger span { display: block; height: 2px; background: #1e3a8a; border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
        .btn-primary {
            background: #2563eb; padding: 10px 22px; border-radius: 8px;
            text-decoration: none; font-weight: 600; font-size: 14px; display: inline-block;
            border: none; cursor: pointer; transition: background 0.15s;
        }
        .btn-primary:hover { background: #1d4ed8; }
        .btn-primary.big { padding: 16px 36px; font-size: 17px; border-radius: 10px; }
        .btn-secondary {
            background: transparent; padding: 10px 22px; border: 1.5px solid #2563eb;
            border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 14px;
        }

        .hero {
            background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
            padding: 64px 24px 72px;
        }
        .hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
        .hero h1 {
            font-size: 44px; line-height: 1.1; margin: 0 0 16px;
            font-weight: 800; color: #0f172a; letter-spacing: -0.01em;
        }
        .hero h1 em { font-style: normal; background: linear-gradient(90deg, #2563eb, #7c3aed); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
        .hero-lead { font-size: 19px; color: #4b5563; margin-bottom: 28px; }
        .hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
        .hero-note { margin-top: 14px; font-size: 14px; color: #6b7280; }
        .hero-scroll {
            display: inline-flex; align-items: center; gap: 6px;
            margin-top: 20px; font-size: 14px; color: #2563eb; font-weight: 600;
            text-decoration: none; border-bottom: 1px dashed transparent;
        }
        .hero-scroll:hover { border-bottom-color: #2563eb; }
        .hero-scroll span { animation: scroll-bounce 1.8s ease-in-out infinite; display: inline-block; }
        @keyframes scroll-bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(3px); } }
        @media (prefers-reduced-motion: reduce) {
            .hero-scroll span { animation: none; }
        }
        .hero-visual { display: flex; justify-content: center; }
        .hero-visual svg { max-width: 100%; height: auto; filter: drop-shadow(0 20px 40px rgba(37,99,235,0.15)); }

        .section { padding: 80px 24px; max-width: 1100px; margin: 0 auto; }
        .section h2 { font-size: 32px; text-align: center; margin-bottom: 16px; color: #0f172a; font-weight: 800; letter-spacing: -0.01em; }
        .section-sub { text-align: center; color: #6b7280; font-size: 17px; max-width: 640px; margin: 0 auto 48px; }

        /* Workflow: before/after */
        .workflow { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; margin-top: 32px; }
        .workflow-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 16px; padding: 20px; }
        .workflow-card h3 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em; color: #6b7280; margin-bottom: 12px; font-weight: 600; }
        .workflow-card svg, .workflow-card img { width: 100%; height: auto; display: block; border-radius: 8px; }
        .workflow-arrow { font-size: 32px; color: #d1d5db; text-align: center; }

        /* Industries carousel — one slide at a time, dots + arrows + swipe + autoplay. */
        .carousel { position: relative; max-width: 980px; margin: 0 auto; }
        .carousel-track { overflow: hidden; border-radius: 16px; background: #fff; border: 1px solid #e5e7eb; }
        .carousel-slides { display: flex; transition: transform 0.45s cubic-bezier(.2,.8,.2,1); }
        .carousel-slide { flex: 0 0 100%; min-width: 0; display: grid; grid-template-columns: 1.3fr 1fr; gap: 0; align-items: stretch; }
        .carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 16/9; background: #f3f4f6; }
        .carousel-caption { padding: 28px 28px 28px 32px; display: flex; flex-direction: column; justify-content: center; }
        .carousel-caption .slug { font-size: 11px; color: #2563eb; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
        .carousel-caption h3 { font-size: 20px; font-weight: 800; color: #0f172a; margin-bottom: 8px; }
        .carousel-caption .lead { font-size: 14px; color: #4b5563; margin-bottom: 16px; }
        .carousel-caption .score { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: #374151; margin-bottom: 12px; font-weight: 600; }
        .carousel-caption .score-badge { display: inline-block; min-width: 42px; padding: 4px 10px; border-radius: 12px; font-weight: 700; font-size: 13px; color: #fff; text-align: center; }
        .carousel-caption .msg { background: #fef3c7; border-left: 3px solid #f59e0b; padding: 10px 14px; border-radius: 6px; font-size: 13px; color: #78350f; line-height: 1.45; }
        .carousel-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; }
        .carousel-dots { display: flex; gap: 8px; }
        /* 44×44 touch target (Apple HIG minimum); the visible dot is drawn
           via ::before so users see an 8 px dot, but tap hits a full 44 px
           button — critical on phones where pagination dots sit below
           image carousels and are the only way to switch slide without
           swiping. */
        .carousel-dot { width: 44px; height: 44px; border-radius: 50%; background: transparent; border: none; cursor: pointer; padding: 0; position: relative; transition: none; }
        .carousel-dot::before { content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 8px; height: 8px; border-radius: 50%; background: #d1d5db; transition: background 0.15s, width 0.15s, border-radius 0.15s; }
        .carousel-dot[aria-current="true"]::before { background: #2563eb; width: 24px; border-radius: 4px; }
        .carousel-btn { background: #fff; border: 1px solid #e5e7eb; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; font-size: 20px; color: #4b5563; display: inline-flex; align-items: center; justify-content: center; transition: all 0.15s; }
        .carousel-btn:hover { border-color: #2563eb; color: #2563eb; }
        .carousel-arrows { display: flex; gap: 8px; }
        @media (max-width: 720px) {
            .carousel-slide { grid-template-columns: 1fr; }
            .carousel-caption { padding: 20px; }
        }

        /* Industry showcase — full uncropped photo + full AI message, thumbnail strip for navigation. */
        .ind-filter { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
        .ind-pill { background: #fff; border: 1px solid #e5e7eb; color: #4b5563; padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.15s; }
        .ind-pill:hover { border-color: #2563eb; color: #2563eb; }
        .ind-pill[aria-pressed="true"] { background: #2563eb; border-color: #2563eb; color: #fff; }

        .ind-stage { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; background: #fff; border: 1px solid #e5e7eb; border-radius: 16px; overflow: hidden; margin-bottom: 16px; }
        .ind-photo { background: #0f172a; display: flex; align-items: center; justify-content: center; }
        .ind-photo img { width: 100%; height: auto; max-height: 520px; object-fit: contain; display: block; }
        .ind-detail { padding: 28px 28px 32px; display: flex; flex-direction: column; justify-content: center; }
        .ind-detail .tag { font-size: 11px; color: #2563eb; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
        .ind-detail h3 { font-size: 22px; font-weight: 800; color: #0f172a; margin-bottom: 8px; }
        .ind-detail .tagline { font-size: 14px; color: #6b7280; margin-bottom: 18px; }
        .ind-detail .row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
        .ind-detail .score-badge { min-width: 48px; padding: 5px 12px; border-radius: 12px; font-size: 15px; font-weight: 700; color: #fff; text-align: center; }
        .ind-detail .row-text { font-size: 13px; color: #374151; font-weight: 600; }
        .ind-detail .msg { background: #fef3c7; border-left: 4px solid #f59e0b; padding: 14px 16px; border-radius: 8px; color: #78350f; font-size: 14px; line-height: 1.55; }
        .ind-detail .refbtn { align-self: flex-start; margin-top: 14px; padding: 10px 14px; border: 1px solid #e5e7eb; color: #2563eb; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; background: #fff; min-height: 44px; }
        .ind-detail .refbtn:hover { border-color: #2563eb; }
        @media (max-width: 640px) {
            .ind-detail .refbtn { align-self: stretch; text-align: center; }
        }

        /* Grid-of-cards picker — replaces the horizontal thumbnail strip.
           Rationale: 12 items fit on-screen at once on desktop/tablet, so
           users don't have to scroll horizontally (that was reading as
           old-school "gallery strip" UX). Mobile still wraps 2 wide. */
        .ind-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 10px;
            margin-top: 20px;
        }
        @media (max-width: 960px) { .ind-grid { grid-template-columns: repeat(4, 1fr); } }
        @media (max-width: 640px) { .ind-grid { grid-template-columns: repeat(3, 1fr); } }
        @media (max-width: 400px) { .ind-grid { grid-template-columns: repeat(2, 1fr); } }

        .ind-card {
            display: flex; flex-direction: column; align-items: center;
            justify-content: center; text-align: center;
            gap: 6px; min-height: 96px;
            padding: 14px 8px;
            background: #fff;
            border: 1.5px solid #e5e7eb;
            border-radius: 12px;
            cursor: pointer;
            transition: border-color 0.15s, background 0.15s, transform 0.15s, box-shadow 0.15s;
            font: inherit;
        }
        .ind-card:hover {
            border-color: #bfdbfe; background: #fafcff;
            transform: translateY(-2px);
            box-shadow: 0 8px 18px rgba(37,99,235,0.08);
        }
        .ind-card[aria-selected="true"] {
            border-color: #2563eb; background: #eff6ff;
            box-shadow: 0 0 0 3px rgba(37,99,235,0.14);
        }
        .ind-card-emoji { font-size: 28px; line-height: 1; }
        .ind-card-name { font-size: 12px; font-weight: 600; color: #374151; line-height: 1.25; }
        .ind-card[aria-selected="true"] .ind-card-name { color: #1e3a8a; }

        @media (max-width: 820px) {
            .ind-stage { grid-template-columns: 1fr; }
            .ind-photo img { max-height: none; }
            .ind-detail { padding: 20px; }
        }

        /* Features */
        .features { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
        .feature { padding: 28px; border: 1px solid #e5e7eb; border-radius: 16px; background: #fff; transition: border-color 0.15s, transform 0.15s; }
        .feature:hover { border-color: #bfdbfe; transform: translateY(-2px); }
        .feature-icon { font-size: 32px; margin-bottom: 12px; }
        .feature h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: #0f172a; }
        .feature p { font-size: 14px; color: #4b5563; }

        /* Steps */
        .how-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; margin-top: 20px; }
        .step { text-align: center; }
        .step-num { display: inline-block; width: 40px; height: 40px; line-height: 40px; border-radius: 50%; background: #2563eb; color: #fff; font-weight: 700; font-size: 18px; margin-bottom: 14px; }
        .step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: #0f172a; }
        .step p { font-size: 14px; color: #4b5563; }

        /* Trust row — three RU-specific signals above the price. */
        .trust-row-section { padding-top: 40px; padding-bottom: 0; }
        @media (max-width: 640px) { .trust-row-section { padding-top: 16px; padding-bottom: 8px; } }
        .trust-row {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
            max-width: 1000px; margin: 0 auto;
            background: #fff; border: 1px solid #e5e7eb; border-radius: 16px;
            padding: 24px 20px;
        }
        .trust-cell { text-align: center; padding: 8px 12px; }
        .trust-cell h3 { font-size: 15px; font-weight: 700; color: #0f172a; margin: 8px 0 4px; }
        .trust-cell p { font-size: 13px; color: #4b5563; line-height: 1.45; }
        .trust-icon { font-size: 32px; line-height: 1; }
        @media (max-width: 720px) {
            .trust-row { grid-template-columns: 1fr; gap: 0; padding: 12px; }
            .trust-cell { padding: 14px 8px; border-bottom: 1px solid #f3f4f6; }
            .trust-cell:last-child { border-bottom: none; }
        }

        /* Price calculator — minimal, no third-party lib. */
        .calc {
            background: #fff; border: 1px solid #e5e7eb; border-radius: 12px;
            padding: 16px 18px; margin: 8px 0 24px; text-align: left;
        }
        .calc-title { font-size: 13px; font-weight: 700; color: #374151; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.04em; }
        .calc-grid { display: grid; gap: 14px; }
        .calc-row { display: grid; grid-template-columns: 1fr 1.3fr 36px; gap: 10px; align-items: center; font-size: 13px; }
        .calc-lbl { color: #4b5563; }
        .calc-row input[type=range] { width: 100%; accent-color: #2563eb; height: 24px; }
        .calc-val { text-align: right; font-weight: 700; color: #1e3a8a; font-variant-numeric: tabular-nums; }

        /* Narrow-screen stack: labels above, slider full width, value to the
           right. The 3-column side-by-side layout gives the slider only
           ~100 px on phones — far too little precision with a range 1-50. */
        @media (max-width: 520px) {
            .calc-row {
                grid-template-columns: 1fr auto;
                grid-template-areas: "label value" "slider slider";
                row-gap: 4px;
            }
            .calc-row .calc-lbl { grid-area: label; }
            .calc-row .calc-val { grid-area: value; }
            .calc-row input[type=range] { grid-area: slider; }
        }
        .calc-result {
            margin-top: 14px; padding: 12px 14px;
            background: linear-gradient(90deg, #eff6ff, #fff);
            border: 1px dashed #bfdbfe; border-radius: 10px; text-align: center;
        }
        .calc-result-amount { font-size: 28px; font-weight: 800; color: #1e3a8a; font-variant-numeric: tabular-nums; }
        .calc-result-unit { font-size: 16px; color: #6b7280; font-weight: 600; }
        .calc-result-sub { font-size: 12px; color: #6b7280; margin-top: 4px; }
        .calc-result-note { font-size: 12px; color: #1e3a8a; margin-top: 8px; padding-top: 8px; border-top: 1px dashed #bfdbfe; }
        .calc-result-note a { color: #2563eb; }

        /* Pricing */
        .pricing-box {
            max-width: 480px; margin: 40px auto 0; padding: 36px;
            background: linear-gradient(180deg, #eff6ff 0%, #fff 100%);
            border: 2px solid #bfdbfe; border-radius: 20px; text-align: center;
        }
        .pricing-box h3 { font-size: 22px; margin-bottom: 8px; color: #0f172a; }
        .price { font-size: 52px; font-weight: 800; color: #1e3a8a; margin: 16px 0; }
        .price small { font-size: 18px; color: #6b7280; font-weight: 500; }
        .pricing-note { font-size: 14px; color: #4b5563; margin-bottom: 24px; }
        .pricing-features { text-align: left; max-width: 320px; margin: 0 auto 24px; font-size: 14px; color: #374151; }
        .pricing-features li { padding: 6px 0; list-style: none; position: relative; padding-left: 24px; }
        .pricing-features li::before { content: "✓"; color: #059669; position: absolute; left: 0; font-weight: 700; }

        /* FAQ */
        .faq { max-width: 760px; margin: 0 auto; }
        details.faq-item {
            border: 1px solid #e5e7eb; border-radius: 12px; padding: 18px 22px; margin-bottom: 12px;
            background: #fff; transition: border-color 0.15s;
        }
        details.faq-item[open] { border-color: #bfdbfe; }
        details.faq-item summary {
            cursor: pointer; font-weight: 600; font-size: 16px; color: #0f172a;
            list-style: none; position: relative; padding-right: 28px;
        }
        details.faq-item summary::-webkit-details-marker { display: none; }
        details.faq-item summary::after {
            content: "+"; position: absolute; right: 0; top: -2px;
            font-size: 24px; color: #2563eb; font-weight: 400; transition: transform 0.15s;
        }
        details.faq-item[open] summary::after { content: "−"; }
        details.faq-item p { margin-top: 12px; color: #4b5563; font-size: 15px; }

        /* CTA band */
        .cta-band { background: #0f172a; color: #fff; text-align: center; padding: 64px 24px; }
        .cta-band h2 { color: #fff; font-size: 30px; margin-bottom: 12px; font-weight: 800; }
        .cta-band p { color: #94a3b8; margin-bottom: 28px; font-size: 17px; }

        footer { padding: 40px 24px 24px; background: #f9fafb; border-top: 1px solid #e5e7eb; font-size: 13px; color: #6b7280; }
        .footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
        .footer-col p { margin: 4px 0; }
        .footer-brand { font-size: 16px; font-weight: 800; color: #1e3a8a; margin-bottom: 8px; }
        .footer-tag { color: #6b7280; font-size: 13px; line-height: 1.5; }
        .footer-h { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: #0f172a; font-weight: 700; margin-bottom: 10px; }
        footer a { color: #2563eb; text-decoration: none; }
        footer a:hover { text-decoration: underline; }
        /* Final conversion point — the only place in the footer where a
           visitor should be tempted to click. Bolded + arrow so it reads
           as a call-to-action, not a nav link. */
        .footer-cta { font-weight: 700; }
        .footer-cta:hover { text-decoration: none; opacity: 0.85; }
        /* #6b7280 on #f9fafb = 5.74:1 — clears WCAG AA for 12px normal text.
           Previously #9ca3af = 2.42 which PSI flagged as the sole
           accessibility drop on the whole page. */
        .footer-copy { max-width: 1100px; margin: 28px auto 0; text-align: center; font-size: 12px; color: #6b7280; border-top: 1px solid #e5e7eb; padding-top: 20px; }
        @media (max-width: 720px) {
            .footer-inner { grid-template-columns: 1fr 1fr; gap: 20px; }
        }
        @media (max-width: 480px) {
            .footer-inner { grid-template-columns: 1fr; }
        }

        @media (max-width: 860px) {
            .hero-inner { grid-template-columns: 1fr; text-align: center; }
            .hero-cta { justify-content: center; }
            .workflow { grid-template-columns: 1fr; }
            .workflow-arrow { transform: rotate(90deg); }
        }
        @media (max-width: 640px) {
            .hero { padding: 40px 20px 52px; }
            .hero h1 { font-size: 32px; }
            .hero-lead { font-size: 16px; }
            .section { padding: 56px 20px; }
            .section h2 { font-size: 24px; }

            /* Mobile: swap text links for a burger menu. Links live in a
               drop-down panel below the nav, collapsed by default. */
            .nav { flex-wrap: wrap; }
            .nav-burger { display: flex; }
            .nav-links {
                order: 3; flex-basis: 100%;
                flex-direction: column; align-items: stretch; gap: 0;
                max-height: 0; overflow: hidden;
                transition: max-height 0.25s ease-out;
                margin-top: 0;
            }
            .nav-links a {
                padding: 12px 4px; border-bottom: 1px solid #f3f4f6;
                font-size: 16px;
            }
            .nav-links a:last-child { border-bottom: none; margin-top: 8px; }
            .nav-links a.btn-primary { text-align: center; padding: 14px; }
            .nav-toggle:checked ~ .nav-links { max-height: 400px; margin-top: 12px; }
            .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
            .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
            .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
        }

/* ============================================================ */

.workflow-slides .carousel-slide { grid-template-columns: 1fr 1fr; gap: 16px; padding: 16px; }
        .workflow-slides .wf-pane { background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid #e5e7eb; display: flex; flex-direction: column; }
        .workflow-slides .wf-pane h3 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: #6b7280; padding: 10px 14px; background: #f9fafb; border-bottom: 1px solid #f3f4f6; font-weight: 600; margin: 0; }
        .workflow-slides .wf-pane img { width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; display: block; }
        .workflow-caption { grid-column: 1 / -1; padding: 6px 12px 4px; font-size: 13px; color: #6b7280; text-align: center; }
        @media (max-width: 640px) {
            .workflow-slides .carousel-slide { grid-template-columns: 1fr; }
        }