/* ==========================================
   GLOBAL OVERRIDES
   ========================================== */
ul li:before {
    background-color: #ffffff !important;
}

.b-sections__content {
    text-align: center !important;
}

.b-sections__check-list > li {
    padding-bottom: 0px !important;
}

/* ==========================================
   CONTAINER
   ========================================== */
.rw-detail-robomower-instalace {
    max-width: 1075px;
    margin: 0 auto;
    padding: 40px 20px 60px;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    color: #000;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}
.rw-detail-robomower-instalace *,
.rw-detail-robomower-instalace *::before,
.rw-detail-robomower-instalace *::after {
    box-sizing: border-box;
}
.rw-detail-robomower-instalace img {
    max-width: 100%;
    height: auto;
}

/* ==========================================
   TAB HEADER
   ========================================== */
.ri-tab-header {
    text-align: center;
    margin-bottom: 24px;
}
.ri-tab-header h1 {
    font-size: 30px;
    font-weight: 400;
    color: #000;
    margin: 0 0 8px;
    line-height: 1.35;
    letter-spacing: .005em;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.ri-tab-header p {
    font-size: 14px;
    font-weight: 300;
    color: #000;
    line-height: 1.714;
    margin: 0;
}

/* ==========================================
   TAB SWITCHER
   ========================================== */
.ri-tab-switcher {
    display: flex;
    gap: 0;
    max-width: 680px;
    margin: 0 auto 44px;
    background: #eef5f9;
    border-radius: 2px;
    padding: 5px;
    border: 1px solid #cedee7;
}
.ri-tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 20px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #000;
    border-radius: 2px;
    transition: all .25s ease;
    position: relative;
    line-height: 1.35;
    outline: none;
}
.ri-tab-btn:hover:not(.active) {
    background: rgba(255, 255, 255, .65);
}
.ri-tab-btn.active {
    background: #5fbb2e;
    color: #fff;
    font-weight: 500;
    box-shadow: 0px -2px 0px rgba(0,0,0,.15) inset,
                0px 3px 0px rgba(255,255,255,.1) inset,
                0px 3px 6px rgba(0,0,0,.15),
                0px 1px 2px rgba(0,0,0,.1);
}
.ri-tab-btn.active:hover {
    background: #54a828;
}
.ri-tab-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}
.ri-tab-btn.active .ri-tab-icon {
    filter: brightness(0) invert(1);
}
.ri-tab-label {
    text-align: left;
}
.ri-tab-label small {
    display: block;
    font-size: 12px;
    font-weight: 300;
    margin-top: 2px;
    opacity: .7;
}

/* ==========================================
   PANELS
   ========================================== */
.ri-panel { visibility: hidden; position: absolute; }
.ri-panel.active { visibility: visible; position: static; }

@keyframes riFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   QUICK NAV — Individual Card Grid
   ========================================== */
.ri-nav {
    margin-bottom: 48px;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    position: relative;
}
.ri-nav::before {
    display: none;
}
.ri-nav-head {
    text-align: center;
    padding: 0 0 28px;
}
.ri-nav-head::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: #5fbb2e;
    margin: 14px auto 0;
    border-radius: 2px;
}
.ri-nav-subtitle {
    font-size: 14px;
    font-weight: 300;
    color: #000;
    margin: 0;
    line-height: 1.714;
}
.ri-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    background: transparent;
    border-top: none;
    counter-reset: ri-nav-count;
}
.ri-nav-list li {
    background: transparent;
    counter-increment: ri-nav-count;
}
.ri-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 32px 18px 26px;
    text-decoration: none !important;
    color: #000;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    background: #fff;
    border: 1px solid #cedee7;
    border-radius: 2px;
    transition: all .3s ease;
    height: 100%;
    border-bottom: none !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 1px 3px rgba(166,193,208,.2),
                0px 1px 8px rgba(166,193,208,.1);
}
.ri-nav-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #5fbb2e;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
    z-index: 1;
}
.ri-nav-link:visited {
    color: #000;
}
.ri-nav-link:hover {
    color: #000;
    transform: translateY(-4px);
    box-shadow: 0px 6px 20px rgba(166,193,208,.4),
                0px 2px 6px rgba(166,193,208,.25);
}
.ri-nav-link:hover::before {
    color: rgba(95, 187, 46, 0.09);
}
.ri-nav-link:hover::after {
    transform: scaleX(1);
}
.ri-nav-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
    padding: 10px;
    background: rgba(95, 187, 46, 0.06);
    transition: all .3s ease;
    position: relative;
    z-index: 1;
}
.ri-nav-link:hover .ri-nav-icon {
    background: rgba(95, 187, 46, 0.12);
    transform: scale(1.1);
    box-shadow: 0 0 0 6px rgba(95, 187, 46, 0.04);
}

/* ==========================================
   SECTION
   ========================================== */
.ri-section {
    margin-bottom: 0;
}
.ri-section-text {
    font-size: 14px;
    font-weight: 300;
    color: #000;
    line-height: 1.714;
    text-align: center;
    margin: 0 0 28px;
}
.ri-section-text a {
    color: #4386fc;
    text-decoration: none;
    border-bottom: 1px dotted #4386fc;
    transition: color .2s ease, border-color .2s ease;
}
.ri-section-text a:hover {
    color: #000;
    border-color: #000;
}
.ri-section-text strong {
    font-weight: 500;
}

/* ==========================================
   DIVIDER
   ========================================== */
.ri-divider {
    border: none;
    border-top: 1px dotted #cedee7;
    margin: 48px 0;
}

/* ==========================================
   CHECKLIST
   ========================================== */
.ri-checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 30px;
}
.ri-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ri-checklist li {
    text-align: left;
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.714;
    color: #000;
}
.ri-checklist li::before {
    content: '\2714';
    position: absolute;
    left: 0;
    top: 0;
    color: #5fbb2e;
    font-weight: 700;
    font-size: 15px;
}
.ri-checklist li strong {
    font-weight: 500;
}

/* ==========================================
   STEPS CARD
   ========================================== */
.ri-steps-card {
    background: #ffffff;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    border: 1px solid #cedee7;
    box-shadow: 0px 1px 3px rgba(166,193,208,.25),
                0px 1px 8px rgba(166,193,208,.15);
}
.ri-steps-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #5fbb2e;
    z-index: 2;
}
.ri-steps-card-header {
    padding: 32px 30px 26px;
    background: #eef5f9;
    border-bottom: 1px solid #cedee7;
    text-align: center;
}
.ri-steps-card-header h2 {
    font-weight: 400;
    color: #000;
    margin: 0 0 6px;
    line-height: 1.35;
    letter-spacing: .005em;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.ri-steps-card-header p {
    font-size: 14px;
    font-weight: 300;
    color: #000;
    margin: 0;
    line-height: 1.714;
}
.ri-steps-card-body {
    padding: 32px 60px;
}
.ri-steps-card .ri-steps-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}
.ri-steps-card .ri-steps-list {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
    margin: 0;
}
.ri-steps-card .ri-steps-list li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 50px;
    padding-top: 14px;
    padding-bottom: 14px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.714;
    color: #000;
    min-height: 48px;
    display: flex;
    align-items: center;
    text-align: left;
    border-bottom: 1px dotted #cedee7;
}
.ri-steps-card .ri-steps-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.ri-steps-card .ri-steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: #5fbb2e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 500;
}
.ri-steps-card .ri-steps-image {
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid #cedee7;
    align-self: center;
}
.ri-steps-card .ri-steps-image img {
    width: 100%;
    display: block;
}
.ri-steps-card .ri-highlight-box {
    background: #eef5f9;
    border: 1px solid #cedee7;
    border-radius: 2px;
    padding: 18px 24px;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    line-height: 1.714;
    margin-top: 28px;
}

/* ==========================================
   STEPS LAYOUT (legacy)
   ========================================== */
.ri-steps-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}
.ri-steps-list {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
    margin: 0;
}
.ri-steps-list li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 48px;
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.714;
    color: #000;
    min-height: 36px;
    display: flex;
    align-items: center;
}
.ri-steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: #5fbb2e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
}
.ri-steps-image {
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid #cedee7;
}
.ri-steps-image img {
    width: 100%;
    display: block;
}

/* ==========================================
   VIDEO
   ========================================== */
.ri-video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 2px;
    border: 1px solid #cedee7;
    margin-bottom: 10px;
}
.ri-video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==========================================
   GALLERY SLIDER
   ========================================== */
.ri-gallery {
    position: relative;
    overflow: hidden;
    padding: 0 50px;
}
.ri-gallery-track {
    display: flex;
    gap: 14px;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
}
.ri-gallery-item {
    flex-shrink: 0;
    min-width: 0;
    cursor: pointer;
}
.ri-gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 2px;
    display: block;
    transition: transform .25s ease, box-shadow .25s ease;
    border: 1px solid #cedee7;
}
.ri-gallery-item:hover img {
    transform: scale(1.02);
    box-shadow: 0px 2px 10px rgba(166,193,208,.5);
}
.ri-gallery-item h4 {
    font-size: 13px;
    font-weight: 400;
    color: #000;
    text-align: center;
    margin: 10px 0 0;
    line-height: 1.4;
}

/* --- Gallery side arrows (CSS chevron) --- */
.ri-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 29px;
    height: 98px;
    background-color: #fff;
    border: 1px solid #cedee7;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all .2s ease;
    color: #4386fc;
    font-size: 0;
    padding: 0;
    text-decoration: none;
    text-align: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.ri-gallery-arrow::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2.5px solid currentColor;
    border-right: 2.5px solid currentColor;
}
.ri-gallery-arrow--prev::before {
    transform: rotate(-135deg);
    margin-left: 3px;
}
.ri-gallery-arrow--next::before {
    transform: rotate(45deg);
    margin-right: 3px;
}
.ri-gallery-arrow:hover {
    background: #eef5f9;
}
.ri-gallery-arrow:active {
    background: #e2eef7;
}
.ri-gallery-arrow.disabled {
    opacity: .3;
    cursor: not-allowed;
    pointer-events: none;
}
.ri-gallery-arrow--prev {
    left: 5px;
    border-radius: 0 2px 2px 0;
    border-left-width: 0;
}
.ri-gallery-arrow--next {
    right: 5px;
    border-radius: 2px 0 0 2px;
    border-right-width: 0;
}

/* --- Gallery bottom arrows (mobile, CSS chevron) --- */
.ri-gallery-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 18px;
}
.ri-gallery-bottom-arrow {
    display: none;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border: 1px solid #4386fc;
    border-radius: 2px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #4386fc;
    font-size: 0;
    padding: 0;
    transition: all .2s ease;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}
.ri-gallery-bottom-arrow::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2.5px solid currentColor;
    border-right: 2.5px solid currentColor;
}
.ri-gallery-bottom-arrow[data-dir="prev"]::before {
    transform: rotate(-135deg);
    margin-left: 3px;
}
.ri-gallery-bottom-arrow[data-dir="next"]::before {
    transform: rotate(45deg);
    margin-right: 3px;
}
.ri-gallery-bottom-arrow:hover {
    background-color: #4386fc;
    color: #fff;
}
.ri-gallery-bottom-arrow:active {
    background-color: #3a78e0;
    color: #fff;
}
.ri-gallery-bottom-arrow.disabled {
    opacity: .3;
    cursor: not-allowed;
    pointer-events: none;
}
.ri-gallery-counter {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    min-width: 40px;
    text-align: center;
    white-space: nowrap;
}
.ri-gallery-counter .ri-divider-slash {
    margin: 0 2px;
    color: #c7c7c8;
}

/* ==========================================
   EXPERT
   ========================================== */
.ri-expert {
    display: flex;
    text-align: left;
    gap: 22px;
    padding: 26px 28px;
    background: #fff;
    border-radius: 2px;
    border: 1px solid #cedee7;
    border-left: 4px solid #4386fc;
    box-shadow: 0px 1px 3px rgba(166,193,208,.25),
                0px 1px 8px rgba(166,193,208,.15);
}
.ri-expert-img {
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #cedee7;
}
.ri-expert-body h3 {
    font-size: 15px;
    font-weight: 500;
    margin: 0 0 8px;
}
.ri-expert-body p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.714;
    margin: 0;
}

/* ==========================================
   INCLUDE / EXCLUDE BOXES
   ========================================== */
.ri-ie-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.ri-ie-box {
    background: #fff;
    border: 1px solid #cedee7;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    box-shadow: 0px 1px 3px rgba(166,193,208,.25),
                0px 1px 8px rgba(166,193,208,.15);
}
.ri-ie-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
}
.ri-ie-box--yes::before {
    background: #5fbb2e;
}
.ri-ie-box--no::before {
    background: #f02020;
}
.ri-ie-box h3 {
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    padding: 18px 24px;
    border-bottom: 1px solid #cedee7;
}
.ri-ie-box--yes h3 {
    color: #5fbb2e;
}
.ri-ie-box--no h3 {
    color: #f02020;
}
.ri-ie-box .ri-checklist {
    padding: 18px 24px;
}
.ri-ie-box--no .ri-checklist li::before {
    content: '\2715';
    color: #f02020;
}

/* ==========================================
   WARNING BOX
   ========================================== */
.ri-warning-box {
    background: #fff;
    border: 1px solid #cedee7;
    border-radius: 2px;
    border-left: 4px solid #cf9700;
    padding: 22px 26px;
    box-shadow: 0px 1px 3px rgba(166,193,208,.25),
                0px 1px 8px rgba(166,193,208,.15);
}
.ri-warning-box .ri-checklist li::before {
    content: '\26A0';
    color: #cf9700;
}

/* ==========================================
   HIGHLIGHT BOX
   ========================================== */
.ri-highlight-box {
    background: #eef5f9;
    border: 1px solid #cedee7;
    border-radius: 2px;
    padding: 18px 24px;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.714;
    margin-top: 28px;
}

/* ==========================================
   BENEFITS GRID — Enhanced Bento with Media
   ========================================== */
.ri-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    counter-reset: ri-benefit;
}
.ri-benefits-grid--4col {
    grid-template-columns: repeat(4, 1fr);
}

/* --- Base benefit card --- */
.ri-benefit-card {
    background: #fff;
    border: 1px solid #cedee7;
    border-radius: 2px;
    padding: 24px 22px;
    position: relative;
    overflow: hidden;
    counter-increment: ri-benefit;
    text-align: center;
    box-shadow: 0px 1px 3px rgba(166,193,208,.2),
                0px 1px 8px rgba(166,193,208,.1);
    transition: transform .25s ease, box-shadow .25s ease;
}
.ri-benefit-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    z-index: 1;
}
.ri-benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0px 4px 14px rgba(166,193,208,.45),
                0px 1px 3px rgba(166,193,208,.3);
}
.ri-benefit-card:hover::after {
    color: rgba(95, 187, 46, 0.1);
}

/* --- Icon in benefit card --- */
.ri-benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: rgba(95, 187, 46, 0.07);
    border-radius: 12px;
    margin: 0 auto 14px;
    line-height: 1;
    flex-shrink: 0;
    color: #5fbb2e;
    transition: background .25s ease, transform .25s ease;
}
.ri-benefit-icon svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
.ri-benefit-card:hover .ri-benefit-icon {
    background: rgba(95, 187, 46, 0.14);
    transform: scale(1.08);
}
.ri-benefit-card h3 {
    font-size: 15px;
    font-weight: 500;
    margin: 0 0 6px;
}
.ri-benefit-card p {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
}

/* --- MEDIA CARD (video interview) — spans 2 cols + 2 rows --- */
.ri-benefit-card--media {
    grid-column: span 2;
    grid-row: span 2;
    padding: 0;
    display: flex;
    flex-direction: column;
    background: #0d1b2a;
    border-color: #1b3a5c;
    counter-increment: none;
}
.ri-benefit-card--media::before {
    height: 4px;
    z-index: 2;
}
.ri-benefit-card--media::after {
    display: none;
}
.ri-benefit-video {
    position: relative;
    width: 100%;
    padding-bottom: 60.25%;
    height: 0;
    overflow: hidden;
    flex-shrink: 0;
}
.ri-benefit-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.ri-benefit-card--media .ri-benefit-body {
    padding: 18px 24px 22px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ri-benefit-card--media h3 {
    color: #fff;
    font-size: 17px;
    margin-bottom: 8px;
}
.ri-benefit-card--media .ri-benefit-label {
    display: inline-block;
    align-self: flex-start;
    width: auto;
    background: #5fbb2e;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 3px 10px;
    border-radius: 2px;
    margin-bottom: 10px;
    line-height: 1.4;
}
.ri-benefit-card--media p {
    color: rgba(255,255,255,.65);
    font-size: 13px;
    line-height: 1.65;
}
.ri-benefit-card--media:hover {
    transform: translateY(-3px);
    box-shadow: 0px 8px 28px rgba(0,0,0,.35);
}

/* --- IMAGE CARD — image thumbnail on top --- */
.ri-benefit-card--image {
    padding: 0;
    display: flex;
    flex-direction: column;
    text-align: left;
}
.ri-benefit-card--image::after {
    z-index: 2;
}
.ri-benefit-img {
    width: 100%;
    height: 120px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}
.ri-benefit-img img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}
.ri-benefit-card--image:hover .ri-benefit-img img {
    transform: scale(1.06);
}
.ri-benefit-card--image .ri-benefit-body {
    padding: 16px 20px 20px;
    flex-grow: 1;
    text-align: center;
}

/* --- WIDE CARD — spans 2 cols, side image --- */
.ri-benefit-card--wide {
    grid-column: span 2;
    padding: 0;
    display: flex;
    flex-direction: row;
    background: #eef5f9;
    text-align: left;
}
.ri-benefit-card--wide::before {
    display: none;
}
.ri-benefit-card--wide .ri-benefit-img {
    width: 180px;
    height: auto;
    flex-shrink: 0;
    border-right: 1px solid #cedee7;
}
.ri-benefit-card--wide .ri-benefit-img img {
    height: 100%;
}
.ri-benefit-card--wide:hover .ri-benefit-img img {
    transform: scale(1.06);
}
.ri-benefit-card--wide .ri-benefit-body {
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    text-align: left;
}
.ri-benefit-card--wide:hover {
    box-shadow: 0px 4px 18px rgba(166,193,208,.4),
                0px 1px 3px rgba(166,193,208,.25);
}

/* ==========================================
   REVIEWS
   ========================================== */
.ri-reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.ri-review {
    text-align: left;
    background: #fff;
    border: 1px solid #cedee7;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    box-shadow: 0px 1px 3px rgba(166,193,208,.2),
                0px 1px 8px rgba(166,193,208,.1);
    transition: box-shadow .2s ease;
}
.ri-review:hover {
    box-shadow: 0px 4px 14px rgba(166,193,208,.4),
                0px 1px 3px rgba(166,193,208,.25);
}
.ri-review::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #5fbb2e;
}
.ri-review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px 0;
}
.ri-review-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #cedee7;
}
.ri-review-name {
    font-size: 15px;
    font-weight: 500;
    margin: 0;
}

/* --- Review stars (CSS generated) --- */
.ri-review-stars {
    padding: 8px 24px 0;
    color: #FFD700;
    font-size: 0;
    letter-spacing: 2px;
    line-height: 1;
}
.ri-review-stars::before {
    content: "\2605\2605\2605\2605\2605";
    font-size: 16px;
    letter-spacing: 2px;
}

.ri-review-body {
    padding: 10px 24px 14px;
}
.ri-review-body p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.714;
    margin: 0;
    max-height: 72px;
    overflow: hidden;
    transition: max-height .4s ease;
}
.ri-review.expanded .ri-review-body p {
    max-height: 600px;
}
.ri-review-pros {
    padding: 0 24px 14px;
    display: none;
}
.ri-review.expanded .ri-review-pros {
    display: block;
}
.ri-review-pros h4 {
    font-size: 13px;
    font-weight: 500;
    color: #5fbb2e;
    margin: 0 0 6px;
}
.ri-review-pros ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ri-review-pros li {
    font-size: 13px;
    font-weight: 300;
    padding-left: 16px;
    position: relative;
    margin-bottom: 4px;
    line-height: 2.4;
}
.ri-review-pros li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: #5fbb2e;
    font-weight: 700;
}
.ri-review-expand {
    display: block;
    width: 100%;
    padding: 12px 24px;
    background: none;
    border: none;
    border-top: 1px solid #cedee7;
    color: #4386fc;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    transition: background .2s ease;
    text-align: left;
}
.ri-review-expand:hover {
    background: #eef5f9;
}

/* ==========================================
   FAQ
   ========================================== */
.ri-faq-item {
    text-align: left;
    background: #fff;
    border: 1px solid #cedee7;
    border-radius: 2px;
    margin-bottom: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0px 1px 3px rgba(166,193,208,.15);
    transition: box-shadow .2s ease;
}
.ri-faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #5fbb2e;
    opacity: 0;
    transition: opacity .25s ease;
    z-index: 2;
}
.ri-faq-item.open::before {
    opacity: 1;
}
.ri-faq-item:hover {
    box-shadow: 0px 2px 10px rgba(166,193,208,.4);
}
.ri-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
    gap: 16px;
    -webkit-tap-highlight-color: transparent;
}
.ri-faq-q h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: .005em;
    flex: 1;
}
.ri-faq-item.open .ri-faq-q h3 {
    font-weight: 500;
}
.ri-faq-q::after {
    content: '';
    display: block;
    width: 26px;
    height: 26px;
    min-width: 26px;
    min-height: 26px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 2px solid #cedee7;
    background-color: #fff;
    background-image: linear-gradient(#000, #000), linear-gradient(#000, #000);
    background-size: 11px 2px, 2px 11px;
    background-position: center, center;
    background-repeat: no-repeat;
    transition: all .25s ease;
    box-sizing: border-box;
}
.ri-faq-item.open .ri-faq-q::after {
    background-color: #5fbb2e;
    border-color: #55a829;
    background-image: linear-gradient(#fff, #fff);
    background-size: 11px 2px;
    background-position: center;
}
.ri-faq-item:not(.open):hover .ri-faq-q::after {
    border-color: #5fbb2e;
    background-image: linear-gradient(#5fbb2e, #5fbb2e), linear-gradient(#5fbb2e, #5fbb2e);
    background-size: 11px 2px, 2px 11px;
    background-position: center, center;
}
.ri-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    padding: 0 24px;
}
.ri-faq-item.open .ri-faq-a {
    max-height: 800px;
    padding: 0 24px 22px;
}
.ri-faq-a-inner {
    border-top: 1px dotted #cedee7;
    padding-top: 18px;
}
.ri-faq-a-inner p {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.714;
}
.ri-faq-a-inner p:last-child {
    margin-bottom: 0;
}

/* ==========================================
   LIGHTBOX
   ========================================== */
.ri-lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .9);
}
.ri-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: riLbIn .3s;
}
@keyframes riLbIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.ri-lightbox-img {
    max-width: 90%;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 2px;
}
.ri-lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, .1);
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}
.ri-lightbox-close:hover {
    background: rgba(255, 255, 255, .2);
}
.ri-lightbox-title {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    max-width: 80%;
}
.ri-lightbox-counter {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, .6);
    font-size: 13px;
    font-weight: 300;
}

/* --- Lightbox arrows (CSS chevron) --- */
.ri-lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, .08);
    border: none;
    color: #fff;
    font-size: 0;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}
.ri-lightbox-arrow::before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    border-top: 3px solid currentColor;
    border-right: 3px solid currentColor;
}
.ri-lightbox-arrow:hover {
    background: rgba(255, 255, 255, .18);
}
.ri-lightbox-prev {
    left: 16px;
}
.ri-lightbox-prev::before {
    transform: rotate(-135deg);
    margin-left: 5px;
}
.ri-lightbox-next {
    right: 16px;
}
.ri-lightbox-next::before {
    transform: rotate(45deg);
    margin-right: 5px;
}

/* ==========================================
   RESPONSIVE — TABLET (max 999px)
   ========================================== */
@media (max-width: 999px) {
    .ri-steps-layout {
        grid-template-columns: 1fr;
    }
    .ri-steps-card .ri-steps-layout {
        grid-template-columns: 1fr;
    }
    .ri-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ri-benefits-grid--4col {
        grid-template-columns: repeat(2, 1fr);
    }
    .ri-benefit-card--media {
        grid-column: span 2;
        grid-row: span 1;
    }
    .ri-benefit-card--media h3 {
        font-size: 16px;
    }
    .ri-benefit-card--wide {
        grid-column: span 2;
    }
    .ri-ie-grid {
        grid-template-columns: 1fr;
    }
    .ri-steps-card-body {
        padding: 28px 30px;
    }
}

/* ==========================================
   RESPONSIVE — MOBILE (max 749px)
   ========================================== */
@media (max-width: 749px) {
    .rw-detail-robomower-instalace {
        padding: 20px 12px 40px;
    }
    .ri-tab-header h1 {
        font-size: 22px;
    }
    .ri-tab-switcher {
        margin-bottom: 30px;
    }
    .ri-tab-btn {
        padding: 14px 10px;
        font-size: 13px;
        gap: 8px;
    }
    .ri-tab-icon {
        width: 22px;
        height: 22px;
    }
    .ri-tab-label small {
        font-size: 11px;
    }
    /* Nav responsive */
    .ri-nav-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .ri-nav-link {
        padding: 24px 14px 20px;
        gap: 10px;
        font-size: 12px;
    }
    .ri-nav-link::before {
        font-size: 40px;
        right: 6px;
        top: 4px;
    }
    .ri-nav-icon {
        width: 42px;
        height: 42px;
        padding: 9px;
    }
    .ri-section-title {
        font-size: 20px;
    }
    .ri-checklist-grid {
        grid-template-columns: 1fr;
    }
    .ri-reviews-grid {
        grid-template-columns: 1fr;
    }
    /* Benefits single column */
    .ri-benefits-grid,
    .ri-benefits-grid--4col {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .ri-benefit-card--media {
        grid-column: span 1;
        grid-row: span 1;
    }
    .ri-benefit-card--media h3 {
        font-size: 15px;
    }
    .ri-benefit-card--wide {
        grid-column: span 1;
        flex-direction: column;
    }
    .ri-benefit-card--wide .ri-benefit-img {
        width: 100%;
        height: 160px;
        border-right: none;
        border-bottom: 1px solid #cedee7;
    }
    .ri-benefit-img {
        height: 160px;
    }
    .ri-benefit-card::after {
        font-size: 36px;
        right: 10px;
        top: 8px;
    }
    .ri-expert {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .ri-gallery {
        padding: 0;
    }
    .ri-gallery-arrow {
        display: none;
    }
    .ri-gallery-bottom-arrow {
        display: flex;
    }
    .ri-gallery-item {
        flex: 0 0 50%;
    }
    .ri-divider {
        margin: 36px 0;
    }
    .ri-faq-q {
        padding: 16px 18px;
        gap: 12px;
    }
    .ri-faq-q h3 {
        font-size: 14px;
    }
    .ri-faq-q::after {
        width: 24px;
        height: 24px;
        min-width: 24px;
        min-height: 24px;
        background-size: 10px 2px, 2px 10px;
    }
    .ri-faq-item.open .ri-faq-q::after {
        background-size: 10px 2px;
    }
    .ri-faq-item:not(.open):hover .ri-faq-q::after {
        background-size: 10px 2px, 2px 10px;
    }
    .ri-faq-a {
        padding: 0 18px;
    }
    .ri-faq-item.open .ri-faq-a {
        padding: 0 18px 18px;
    }
    /* Steps card */
    .ri-steps-card-header {
        padding: 22px 18px 18px;
    }
    .ri-steps-card-header h2 {
        font-size: 18px;
    }
    .ri-steps-card-body {
        padding: 20px 18px;
    }
    .ri-steps-card .ri-steps-list li {
        padding-left: 46px;
        margin-bottom: 0;
    }
    .ri-steps-card .ri-steps-list li::before {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    .ri-steps-card .ri-steps-image {
        display: none;
    }
}

/* ==========================================
   RESPONSIVE — SMALL MOBILE (max 479px)
   ========================================== */
@media (max-width: 479px) {
    .rw-detail-robomower-instalace {
        padding: 16px 8px 30px;
    }
    .ri-tab-header h1 {
        font-size: 19px;
    }
    .ri-tab-btn {
        padding: 12px 6px;
        font-size: 12px;
        gap: 6px;
        flex-direction: column;
        text-align: center;
    }
    .ri-tab-icon {
        width: 26px;
        height: 26px;
    }
    .ri-tab-label {
        text-align: center;
    }
    .ri-tab-label small {
        font-size: 10px;
    }
    /* Nav small */
    .ri-nav-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .ri-nav-link {
        padding: 20px 10px 16px;
        gap: 8px;
        font-size: 11px;
    }
    .ri-nav-link::before {
        font-size: 34px;
        right: 4px;
        top: 2px;
    }
    .ri-nav-icon {
        width: 38px;
        height: 38px;
        padding: 8px;
    }
    .ri-section-title {
        font-size: 18px;
    }
    .ri-gallery-item {
        flex: 0 0 100%;
    }
    .ri-divider {
        margin: 30px 0;
    }
    .ri-faq-q {
        padding: 14px 14px;
        gap: 10px;
    }
    .ri-faq-q h3 {
        font-size: 13px;
    }
    .ri-faq-q::after {
        width: 22px;
        height: 22px;
        min-width: 22px;
        min-height: 22px;
        background-size: 9px 2px, 2px 9px;
    }
    .ri-faq-item.open .ri-faq-q::after {
        background-size: 9px 2px;
    }
    .ri-faq-item:not(.open):hover .ri-faq-q::after {
        background-size: 9px 2px, 2px 9px;
    }
    .ri-faq-a {
        padding: 0 14px;
    }
    .ri-faq-item.open .ri-faq-a {
        padding: 0 14px 16px;
    }
    .ri-review-header {
        padding: 14px 16px 0;
    }
    .ri-review-stars {
        padding: 6px 16px 0;
    }
    .ri-review-stars::before {
        font-size: 15px;
    }
    .ri-review-body {
        padding: 8px 16px 12px;
    }
    .ri-review-body p {
        font-size: 13px;
    }
    .ri-review-pros {
        padding: 0 16px 12px;
    }
    .ri-review-expand {
        padding: 10px 16px;
        font-size: 12px;
    }
    .ri-ie-box h3 {
        padding: 14px 18px;
        font-size: 14px;
    }
    .ri-ie-box .ri-checklist {
        padding: 14px 18px;
    }
    .ri-gallery-bottom-arrow {
        width: 36px;
        height: 36px;
    }
    .ri-gallery-bottom-arrow::before {
        width: 8px;
        height: 8px;
        border-width: 2px;
    }
    /* Steps card small */
    .ri-steps-card-header {
        padding: 18px 14px 14px;
    }
    .ri-steps-card-header h2 {
        font-size: 16px;
    }
    .ri-steps-card-body {
        padding: 16px 14px;
    }
    .ri-steps-card .ri-steps-list li {
        padding-left: 42px;
        font-size: 13px;
    }
    .ri-steps-card .ri-steps-list li::before {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
    .ri-benefit-card {
        padding: 20px 18px;
    }
    .ri-benefit-card h3 {
        font-size: 14px;
    }
    .ri-benefit-card p {
        font-size: 12px;
    }
    .ri-benefit-card::after {
        font-size: 32px;
        right: 8px;
        top: 6px;
    }
    .ri-benefit-img {
        height: 140px;
    }
    .ri-benefit-card--wide .ri-benefit-img {
        height: 140px;
    }
}