:root {
    --oto-bg: #f4f7fb;
    --oto-surface: #ffffff;
    --oto-text: #0f172a;
    --oto-muted: #64748b;
    --oto-primary: #0d6efd;
    --oto-primary-dark: #0a58ca;
    --oto-accent: #12b886;
    --oto-border: #e2e8f0;
    --oto-radius: 14px;
    --oto-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    --oto-font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
    box-sizing: border-box;
}

body.oto-public-body {
    margin: 0;
    font-family: var(--oto-font);
    color: var(--oto-text);
    background: var(--oto-bg);
    line-height: 1.5;
}

.oto-wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

.oto-header {
    background: var(--oto-surface);
    border-bottom: 1px solid var(--oto-border);
    position: sticky;
    top: 0;
    z-index: 20;
}

.oto-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 64px;
}

.oto-logo {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--oto-text);
    text-decoration: none;
}

.oto-logo span {
    color: var(--oto-primary);
}

.oto-nav a {
    color: var(--oto-muted);
    text-decoration: none;
    margin-left: 18px;
    font-size: 0.95rem;
}

.oto-nav--desktop {
    display: flex;
    align-items: center;
}

.oto-header__mobile {
    display: none;
    align-items: center;
    gap: 10px;
}

.oto-header__mobile-link {
    color: var(--oto-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.oto-header__mobile-link:hover {
    color: var(--oto-primary);
}

.oto-nav a:hover {
    color: var(--oto-primary);
}

.oto-hero {
    padding: 48px 0 32px;
}

.oto-hero--compact {
    padding: 28px 0 20px;
}

.oto-hero h1 {
    margin: 0 0 8px;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.15;
}

.oto-hero--compact h1 {
    font-size: clamp(1.5rem, 3.5vw, 2.1rem);
}

.oto-hero p {
    margin: 0;
    color: var(--oto-muted);
    font-size: 1.05rem;
    max-width: 720px;
}

.oto-hero--compact p {
    font-size: 0.98rem;
    max-width: 640px;
}

.oto-search-panel {
    background: var(--oto-surface);
    border: 1px solid var(--oto-border);
    border-radius: var(--oto-radius);
    box-shadow: var(--oto-shadow);
    overflow: hidden;
    margin-bottom: 16px;
}

.oto-search-panel__geo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding: 10px 18px;
    background: #e7f5ff;
    border-bottom: 1px solid #a5d8ff;
    font-size: 0.92rem;
}

.oto-search-panel__geo--muted {
    background: #f8fafc;
    border-bottom-color: var(--oto-border);
    color: var(--oto-muted);
}

.oto-search-panel__geo-text {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.oto-search-panel__geo-pin {
    display: inline-flex;
    color: var(--oto-primary);
    margin-right: 4px;
    vertical-align: middle;
}

.oto-search-panel__form {
    padding: 18px;
}

.oto-search-toolbar {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px 14px;
    align-items: end;
    margin-bottom: 16px;
}

.oto-search-toolbar__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.oto-filter-reset {
    white-space: nowrap;
}

.oto-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 28px 0 8px;
}

.oto-steps--compact {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 0 0 20px;
}

.oto-step {
    background: var(--oto-surface);
    border: 1px solid var(--oto-border);
    border-radius: var(--oto-radius);
    padding: 16px;
}

.oto-steps--compact .oto-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    background: transparent;
    border-style: dashed;
}

.oto-step strong {
    display: block;
    margin-bottom: 6px;
}

.oto-steps--compact .oto-step strong {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eef4ff;
    color: var(--oto-primary);
    font-size: 0.85rem;
}

.oto-step span {
    color: var(--oto-muted);
    font-size: 0.92rem;
}

.oto-steps--compact .oto-step span {
    font-size: 0.88rem;
    color: var(--oto-text);
    font-weight: 500;
}

.oto-results-head {
    color: var(--oto-muted);
    font-size: 0.9rem;
    margin: 0 0 4px;
}

.oto-filters {
    background: var(--oto-surface);
    border: 1px solid var(--oto-border);
    border-radius: var(--oto-radius);
    padding: 18px;
    margin: 24px 0;
    box-shadow: var(--oto-shadow);
}

.oto-filters__grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px 16px;
    align-items: end;
}

.oto-field--place {
    min-width: 0;
}

.oto-field--categories {
    margin: 0;
}

.oto-filters__grid .oto-field--categories {
    grid-column: 1 / -1;
}

.oto-search {
    position: relative;
}

.oto-search__input {
    width: 100%;
}

.oto-search__list {
    position: absolute;
    z-index: 30;
    left: 0;
    right: 0;
    top: calc(100% + 4px);
    margin: 0;
    padding: 6px;
    list-style: none;
    background: #fff;
    border: 1px solid var(--oto-border);
    border-radius: 10px;
    box-shadow: var(--oto-shadow);
    max-height: 320px;
    overflow-y: auto;
}

.oto-search__item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    padding: 8px 10px;
    border-radius: 8px;
    font: inherit;
    cursor: pointer;
    color: inherit;
}

.oto-search__item:hover,
.oto-search__item.is-active {
    background: #f0f4ff;
}

.oto-search__type {
    flex: 0 0 auto;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--oto-muted);
    min-width: 52px;
}

.oto-search__label {
    flex: 1 1 auto;
    font-size: 0.92rem;
    line-height: 1.35;
}

.oto-cat-filter {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.oto-cat-filter--grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 20px;
}

.oto-cat-filter--grid .oto-cat-filter__group {
    min-width: 0;
}

.oto-cat-filter__group-title {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--oto-muted);
    margin-bottom: 6px;
}

.oto-cat-filter__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.oto-cat-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 12px;
    border: 1px solid var(--oto-border);
    border-radius: 999px;
    background: #fff;
    cursor: pointer;
    user-select: none;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
    font-size: 0.85rem;
    line-height: 1;
    min-height: 40px;
}

.oto-cat-chip:hover {
    border-color: #bfd4ff;
    background: #f8fbff;
}

.oto-cat-chip:has(.oto-cat-chip__input:checked),
.oto-cat-chip.is-active {
    border-color: var(--oto-primary);
    background: #eef4ff;
    color: var(--oto-primary-dark);
}

.oto-cat-chip__input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.oto-cat-chip__icon {
    display: inline-flex;
    color: inherit;
}

.oto-cat-chip__code {
    font-weight: 600;
    letter-spacing: 0.02em;
}

.oto-cat-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.oto-cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #475569;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1;
}

.oto-cat-badge__code {
    letter-spacing: 0.02em;
}

.oto-cat-icon {
    display: block;
    flex-shrink: 0;
}

.oto-field label {
    display: block;
    font-size: 0.85rem;
    color: var(--oto-muted);
    margin-bottom: 6px;
}

.oto-field input,
.oto-field select,
.oto-field textarea {
    width: 100%;
    border: 1px solid var(--oto-border);
    border-radius: 10px;
    padding: 10px 12px;
    font: inherit;
    background: #fff;
    font-size: 16px;
}

.oto-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 10px;
    padding: 11px 18px;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    min-height: 44px;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.oto-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.28);
}

.oto-btn--primary {
    background: var(--oto-primary);
    color: #fff;
}

.oto-btn--primary:hover {
    background: var(--oto-primary-dark);
    color: #fff;
}

.oto-btn--ghost {
    background: #eef2ff;
    color: var(--oto-primary);
}

.oto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin: 20px 0 32px;
}

.oto-card {
    background: var(--oto-surface);
    border: 1px solid var(--oto-border);
    border-radius: var(--oto-radius);
    padding: 18px;
    box-shadow: var(--oto-shadow);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.oto-card h3 {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.35;
}

.oto-card h3 a {
    color: inherit;
    text-decoration: none;
}

.oto-card h3 a:hover {
    color: var(--oto-primary);
}

.oto-card__phone {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
}

.oto-card__phone:hover {
    color: var(--oto-primary);
}

.oto-card__meta {
    color: var(--oto-muted);
    font-size: 0.9rem;
}

.oto-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 999px;
    background: #e6fcf5;
    color: #087f5b;
}

.oto-price {
    font-weight: 700;
    color: var(--oto-primary);
}

.oto-card__actions {
    margin-top: auto;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.oto-page {
    padding: 28px 0 48px;
}

.oto-breadcrumbs {
    color: var(--oto-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.oto-breadcrumbs a {
    color: var(--oto-primary);
    text-decoration: none;
}

.oto-layout-2col {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: start;
}

.oto-layout-2col__aside {
    position: sticky;
    top: 80px;
}

.oto-panel--spaced {
    margin-top: 16px;
}

.oto-page__title {
    margin: 0 0 12px;
    font-size: clamp(1.25rem, 3.2vw, 1.85rem);
    line-height: 1.3;
    word-break: break-word;
}

.oto-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -4px;
    padding: 0 4px;
}

.oto-cat-details {
    border: 0;
    margin: 0;
    padding: 0;
}

.oto-cat-details__summary {
    display: none;
    list-style: none;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--oto-muted);
    margin-bottom: 10px;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.oto-cat-details__summary::-webkit-details-marker {
    display: none;
}

.oto-cat-details__hint {
    font-size: 0.78rem;
    color: #94a3b8;
}

.oto-field__label--desktop {
    margin: 0 0 10px;
    font-size: 0.85rem;
    color: var(--oto-muted);
}

.oto-mobile-cta {
    display: none;
}

.oto-panel {
    background: var(--oto-surface);
    border: 1px solid var(--oto-border);
    border-radius: var(--oto-radius);
    padding: 20px;
    box-shadow: var(--oto-shadow);
}

.oto-panel h2 {
    margin: 0 0 14px;
    font-size: 1.2rem;
}

.oto-info-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.oto-info-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--oto-border);
}

.oto-info-list li:last-child {
    border-bottom: none;
}

.oto-info-list strong {
    display: block;
    font-size: 0.82rem;
    color: var(--oto-muted);
    margin-bottom: 2px;
}

.oto-prices-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.oto-prices-table th,
.oto-prices-table td {
    padding: 10px 8px;
    border-bottom: 1px solid var(--oto-border);
    text-align: left;
}

.oto-alert {
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 16px;
}

.oto-alert--success {
    background: #ebfbee;
    color: #2b8a3e;
    border: 1px solid #b2f2bb;
}

.oto-alert--muted {
    background: #f8fafc;
    color: var(--oto-muted);
    border: 1px solid var(--oto-border);
}

.oto-map {
    width: 100%;
    height: 280px;
    border: 0;
    border-radius: 12px;
    background: #dbe4ff;
}

.oto-footer {
    margin-top: 40px;
    padding: 24px 0 40px;
    color: var(--oto-muted);
    font-size: 0.9rem;
    border-top: 1px solid var(--oto-border);
}

.oto-footer p {
    margin: 0 0 8px;
}

.oto-footer p:last-child {
    margin-bottom: 0;
}

.oto-footer__developer a {
    color: var(--oto-muted);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.oto-footer__developer a:hover {
    color: var(--oto-text);
}

.oto-pagination {
    margin: 8px 0 32px;
}

.oto-pagination ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.oto-pagination a,
.oto-pagination span {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid var(--oto-border);
    background: #fff;
    text-decoration: none;
    color: var(--oto-text);
}

.oto-pagination .active a {
    background: var(--oto-primary);
    border-color: var(--oto-primary);
    color: #fff;
}

.oto-form .form-group {
    margin-bottom: 0;
}

.oto-form__field {
    margin-bottom: 16px;
}

.oto-form__field.has-error .oto-form__input {
    border-color: #e03131;
}

.oto-form__field.has-error .oto-form__input:focus {
    box-shadow: 0 0 0 3px rgba(224, 49, 49, 0.12);
}

.oto-form__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--oto-muted);
    margin-bottom: 6px;
}

.oto-form__input,
.oto-form select.oto-form__input,
.oto-form textarea.oto-form__input {
    display: block;
    width: 100%;
    max-width: 100%;
    border: 1px solid var(--oto-border);
    border-radius: 10px;
    padding: 10px 12px;
    font: inherit;
    font-size: 16px;
    line-height: 1.4;
    background: #fff;
    color: var(--oto-text);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
}

.oto-form__select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.oto-form__input::placeholder {
    color: #94a3b8;
}

.oto-form__input:hover {
    border-color: #cbd5e1;
}

.oto-form__input:focus {
    outline: none;
    border-color: var(--oto-primary);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

.oto-form textarea.oto-form__input {
    resize: vertical;
    min-height: 72px;
}

.oto-form__hint {
    display: block;
    margin-top: 5px;
    font-size: 0.82rem;
    color: var(--oto-muted);
}

.oto-form__error {
    display: block;
    margin-top: 5px;
    font-size: 0.82rem;
    color: #c92a2a;
}

.oto-form__captcha {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
}

.oto-form__captcha-img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    border: 1px solid var(--oto-border);
    border-radius: 10px;
    cursor: pointer;
}

.oto-form__input--captcha {
    max-width: 100%;
}

.oto-form__legal {
    margin: 4px 0 14px;
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--oto-muted);
}

.oto-form__legal a {
    color: var(--oto-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.oto-form__legal a:hover {
    color: var(--oto-primary-dark);
}

.oto-btn--block {
    width: 100%;
}

.oto-panel--booking .oto-form {
    margin-top: 4px;
}

/* jQuery UI datepicker внутри формы OTO */
.oto-public-body .ui-datepicker {
    font-family: var(--oto-font);
    font-size: 0.9rem;
    border: 1px solid var(--oto-border);
    border-radius: 12px;
    box-shadow: var(--oto-shadow);
    padding: 8px;
}

.oto-public-body .ui-datepicker .ui-state-active {
    background: var(--oto-primary);
    border-color: var(--oto-primary);
    color: #fff;
}

.oto-form .help-block {
    color: #c92a2a;
    font-size: 0.85rem;
}

.oto-card__distance {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--oto-accent);
}

.oto-geo-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    background: #e7f5ff;
    border: 1px solid #a5d8ff;
    border-radius: var(--oto-radius);
    padding: 12px 16px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.oto-geo-bar--muted {
    background: #f8fafc;
    border-color: var(--oto-border);
}

.oto-geo-bar__hint {
    color: var(--oto-muted);
    font-size: 0.85rem;
}

.oto-geo-bar__region {
    color: var(--oto-muted);
}

.oto-geo-bar__actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

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

.oto-btn--icon {
    padding: 10px 12px;
    min-width: 44px;
}

@media (max-width: 900px) {
    .oto-wrap {
        padding-left: 16px;
        padding-right: 16px;
    }

    .oto-search-toolbar,
    .oto-filters__grid,
    .oto-layout-2col,
    .oto-steps,
    .oto-steps--compact {
        grid-template-columns: 1fr;
    }

    .oto-layout-2col__aside {
        position: static;
        order: -1;
    }

    .oto-layout-2col__main {
        order: 1;
    }

    .oto-cat-filter--grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .oto-search-toolbar__actions {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 8px;
        width: 100%;
    }

    .oto-search-toolbar__actions .oto-filter-reset {
        grid-column: 1 / -1;
        justify-content: center;
    }

    .oto-search-toolbar__actions .oto-btn--icon {
        width: 48px;
    }

    .oto-search-toolbar__actions .oto-btn--primary {
        width: 100%;
    }

    .oto-nav--desktop {
        display: none;
    }

    .oto-header__mobile {
        display: flex;
    }

    .oto-header__inner {
        min-height: 56px;
    }

    .oto-card__actions {
        flex-direction: column;
    }

    .oto-card__actions .oto-btn {
        width: 100%;
    }

    .oto-grid {
        grid-template-columns: 1fr;
    }

    .oto-card h3 {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .oto-pagination ul {
        justify-content: center;
    }

    .oto-pagination a,
    .oto-pagination span {
        min-width: 40px;
        min-height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 6px 10px;
    }
}

@media (max-width: 640px) {
    .oto-search-panel__geo {
        flex-direction: column;
        align-items: stretch;
    }

    .oto-search-panel__geo-text {
        font-size: 0.88rem;
    }

    .oto-geo-bar__actions {
        justify-content: flex-end;
    }

    .oto-cat-details__summary {
        display: flex;
    }

    .oto-field__label--desktop {
        display: none;
    }

    .oto-cat-details:not([open]) .oto-cat-filter {
        display: none;
    }

    .oto-mobile-cta {
        display: flex;
        position: fixed;
        left: 16px;
        right: 16px;
        bottom: calc(16px + env(safe-area-inset-bottom, 0px));
        z-index: 25;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        padding: 12px 18px;
        border-radius: 12px;
        background: var(--oto-primary);
        color: #fff;
        font-weight: 600;
        text-decoration: none;
        box-shadow: 0 8px 24px rgba(13, 110, 253, 0.35);
    }

    .oto-mobile-cta:hover {
        color: #fff;
        background: var(--oto-primary-dark);
    }

    .oto-page {
        padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
    }

    .oto-panel--booking {
        scroll-margin-top: 72px;
    }
}

@media (max-width: 520px) {
    .oto-cat-filter--grid {
        grid-template-columns: 1fr;
    }

    .oto-steps--compact {
        grid-template-columns: 1fr;
    }

    .oto-hero--compact {
        padding: 20px 0 14px;
    }
}

@media (min-width: 901px) {
    .oto-cat-details__summary {
        display: none;
    }
}

/* Guide blocks (demo-site content) */
.oto-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 24px 0 8px;
}

.oto-benefits__item {
    padding: 16px 18px;
    border-radius: 12px;
    background: var(--oto-surface, #fff);
    border: 1px solid var(--oto-border, #e8ecf0);
}

.oto-benefits__title {
    margin: 0 0 8px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.35;
}

.oto-benefits__item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--oto-muted, #5c6570);
    line-height: 1.45;
}

.oto-registry-badge {
    margin: 0 0 16px;
    font-size: 0.92rem;
    color: var(--oto-muted, #5c6570);
    line-height: 1.45;
}

.oto-guide {
    margin-top: 32px;
}

.oto-guide-block h2 {
    margin-top: 0;
}

.oto-process {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.oto-process__item {
    padding: 14px 16px;
    border-radius: 10px;
    background: var(--oto-surface-alt, #f6f8fa);
    border: 1px solid var(--oto-border, #e8ecf0);
}

.oto-process__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    margin-bottom: 8px;
    border-radius: 50%;
    background: var(--oto-primary);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
}

.oto-process__title {
    margin: 0 0 6px;
    font-size: 0.95rem;
    font-weight: 600;
}

.oto-process__item p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--oto-muted, #5c6570);
    line-height: 1.4;
}

.oto-docs {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
}

.oto-docs__item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 0;
    border-bottom: 1px solid var(--oto-border, #e8ecf0);
}

.oto-docs__item:last-child {
    border-bottom: none;
}

.oto-docs__item span {
    font-size: 0.92rem;
    color: var(--oto-muted, #5c6570);
}

.oto-alert--info {
    background: #e8f4fd;
    border-color: #b6d9f5;
    color: #0c4a6e;
}

.oto-faq__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.oto-faq__item {
    border: 1px solid var(--oto-border, #e8ecf0);
    border-radius: 10px;
    padding: 0 14px;
    background: var(--oto-surface, #fff);
}

.oto-faq__item summary {
    cursor: pointer;
    padding: 14px 0;
    font-weight: 600;
    list-style: none;
}

.oto-faq__item summary::-webkit-details-marker {
    display: none;
}

.oto-faq__item p {
    margin: 0 0 14px;
    font-size: 0.92rem;
    color: var(--oto-muted, #5c6570);
    line-height: 1.5;
}

.oto-price-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
    margin-top: 16px;
}

.oto-price-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 18px;
    border-radius: 12px;
    border: 1px solid var(--oto-border, #e8ecf0);
    background: var(--oto-surface, #fff);
}

.oto-price-card__head {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.oto-price-card__icon {
    flex-shrink: 0;
    color: var(--oto-primary);
}

.oto-price-card__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.oto-price-card__subtitle {
    font-size: 0.82rem;
    color: var(--oto-muted, #5c6570);
    margin-top: 2px;
}

.oto-price-card__text {
    margin: 0;
    flex: 1;
    font-size: 0.88rem;
    color: var(--oto-muted, #5c6570);
    line-height: 1.45;
}

.oto-price-card__price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--oto-primary);
}

@media (max-width: 900px) {
    .oto-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .oto-process {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .oto-benefits {
        grid-template-columns: 1fr;
    }

    .oto-process {
        grid-template-columns: 1fr;
    }
}

/* Tariffs */
.oto-lead {
    margin: 0 0 20px;
    font-size: 1.02rem;
    line-height: 1.55;
    color: var(--oto-muted, #5c6570);
}

.oto-hub-tariffs-link {
    margin: 0 0 16px;
    font-size: 0.95rem;
}

.oto-hub-tariffs-link a {
    font-weight: 600;
}

.oto-tariff-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.oto-tariff-stat {
    padding: 14px 16px;
    border-radius: 10px;
    background: var(--oto-surface, #fff);
    border: 1px solid var(--oto-border, #e8ecf0);
    text-align: center;
}

.oto-tariff-stat__value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.oto-tariff-stat__label {
    font-size: 0.85rem;
    color: var(--oto-muted, #5c6570);
}

.oto-tariff-stat--ok .oto-tariff-stat__value { color: #198754; }
.oto-tariff-stat--warn .oto-tariff-stat__value { color: #b58105; }
.oto-tariff-stat--bad .oto-tariff-stat__value { color: #c0392b; }

.oto-tariff-legend {
    margin: 0 0 12px;
    padding-left: 1.2rem;
    line-height: 1.6;
}

.oto-tariff-legend li {
    margin-bottom: 8px;
}

.oto-tariff-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.oto-tariff-table th,
.oto-tariff-table td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--oto-border, #e8ecf0);
    text-align: left;
    vertical-align: middle;
}

.oto-tariff-table th {
    font-weight: 600;
    background: var(--oto-surface-alt, #f6f8fa);
}

.oto-tariff-table tbody tr:hover {
    background: rgba(13, 110, 253, 0.04);
}

.oto-tariff-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
}

.oto-tariff-badge--actual {
    background: #d1e7dd;
    color: #0f5132;
}

.oto-tariff-badge--partial {
    background: #fff3cd;
    color: #664d03;
}

.oto-tariff-badge--outdated,
.oto-tariff-badge--missing {
    background: #f8d7da;
    color: #842029;
}

.oto-tariff-subtitle {
    margin: 16px 0 8px;
    font-size: 0.95rem;
}

.oto-tariff-phrase {
    font-style: italic;
}

.oto-btn--block {
    display: block;
    width: 100%;
    text-align: center;
}

@media (max-width: 720px) {
    .oto-tariff-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}
