/* Otzyvy360 — info / legal pages */
:root {
    --bg: #f5f4f2;
    --white: #ffffff;
    --dark: #141412;
    --text: #272824;
    --muted: rgba(39, 40, 36, 0.64);
    --border: rgba(210, 208, 204, 0.55);
    --lime: #cefe24;
    --lime-h: #b8e820;
    --max-w: 880px;
    --site: 1600px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: Inter, system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
.o360-info-header {
    position: sticky; top: 0; z-index: 40;
    background: rgba(245, 244, 242, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(210, 208, 204, 0.45);
}
.o360-info-header-inner {
    width: min(var(--site), 100% - 32px);
    margin-inline: auto;
    height: 64px;
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.o360-info-logo {
    display: inline-flex; align-items: center; gap: 10px;
    font-weight: 800; font-size: 1.02rem;
}
.o360-info-logo i {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--dark); color: var(--lime);
    display: grid; place-items: center;
    font-style: normal; font-size: 0.7rem; font-weight: 800;
}
.o360-info-nav { display: flex; flex-wrap: wrap; gap: 6px; }
.o360-info-nav a {
    padding: 8px 12px; border-radius: 999px;
    font-size: 0.82rem; font-weight: 700; color: var(--muted);
}
.o360-info-nav a:hover, .o360-info-nav a.active {
    background: rgba(39, 40, 36, 0.06); color: var(--text);
}
.o360-info-wrap {
    width: min(var(--max-w), 100% - 32px);
    margin: 36px auto 24px;
}
.o360-info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: clamp(24px, 4vw, 36px);
    box-shadow: 0 2px 16px rgba(39, 40, 36, 0.06);
}
.o360-info-kicker {
    font-size: 0.72rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--muted); margin-bottom: 8px;
}
.o360-info-card h1 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800; letter-spacing: -0.03em;
    margin-bottom: 12px; line-height: 1.2;
}
.o360-info-lead {
    font-size: 1.02rem; color: var(--muted);
    margin-bottom: 28px; max-width: 58ch;
}
.o360-info-card h2 {
    font-size: 1.15rem; font-weight: 800;
    letter-spacing: -0.02em; margin: 28px 0 10px;
}
.o360-info-card h3 {
    font-size: 1rem; font-weight: 800; margin: 18px 0 8px;
}
.o360-info-card p, .o360-info-card li {
    font-size: 0.95rem; color: rgba(39, 40, 36, 0.82);
    margin-bottom: 10px;
}
.o360-info-card ul, .o360-info-card ol {
    padding-left: 1.2em; margin-bottom: 14px;
}
.o360-info-card li { margin-bottom: 6px; }
.o360-info-card a:not(.o360-info-btn) {
    color: #3d4a00; font-weight: 700; text-decoration: underline;
    text-underline-offset: 2px;
}
.o360-info-note {
    margin: 18px 0;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(206, 254, 36, 0.16);
    border: 1px solid rgba(206, 254, 36, 0.35);
    font-size: 0.9rem; font-weight: 600; line-height: 1.45;
}
.o360-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin: 16px 0 8px;
}
.o360-info-tile {
    padding: 14px;
    border-radius: 14px;
    background: var(--bg);
    border: 1px solid var(--border);
}
.o360-info-tile b { display: block; font-size: 0.92rem; margin-bottom: 4px; }
.o360-info-tile span { font-size: 0.8rem; color: var(--muted); font-weight: 600; }
.o360-info-actions {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-top: 24px;
}
.o360-info-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 18px; border-radius: 999px;
    font-weight: 800; font-size: 0.9rem;
}
.o360-info-btn-lime { background: var(--lime); color: var(--dark); }
.o360-info-btn-lime:hover { background: var(--lime-h); }
.o360-info-btn-ghost {
    background: transparent; border: 1px solid var(--border); color: var(--text);
}
.o360-faq details {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 8px;
    overflow: hidden;
}
.o360-faq summary {
    list-style: none; cursor: pointer;
    padding: 14px 16px; font-weight: 800; font-size: 0.95rem;
    display: flex; justify-content: space-between; gap: 12px;
}
.o360-faq summary::-webkit-details-marker { display: none; }
.o360-faq summary::after { content: '+'; color: var(--muted); font-weight: 700; }
.o360-faq details[open] summary::after { content: '−'; color: var(--text); }
.o360-faq details p {
    padding: 0 16px 14px; margin: 0;
    font-size: 0.9rem; color: var(--muted); font-weight: 500;
}
.o360-info-form .field { margin-bottom: 14px; }
.o360-info-form label {
    display: block; font-size: 0.76rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.04em;
    color: var(--muted); margin-bottom: 6px;
}
.o360-info-form input,
.o360-info-form select,
.o360-info-form textarea {
    width: 100%; padding: 12px 14px;
    border: 1px solid var(--border); border-radius: 12px;
    background: #fff; font: inherit; font-weight: 600; outline: none;
}
.o360-info-form textarea { min-height: 120px; resize: vertical; }
.o360-info-form input:focus,
.o360-info-form select:focus,
.o360-info-form textarea:focus {
    border-color: rgba(206, 254, 36, 0.7);
    box-shadow: 0 0 0 3px rgba(206, 254, 36, 0.18);
}
.o360-info-meta {
    margin-top: 28px; padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 0.8rem; color: var(--muted); font-weight: 600;
}
.o360-legal-nav {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin: -8px 0 22px;
}
.o360-legal-nav a {
    padding: 7px 12px; border-radius: 999px;
    border: 1px solid var(--border); background: var(--bg);
    font-size: 0.78rem; font-weight: 700; color: var(--muted);
    text-decoration: none !important;
}
.o360-legal-nav a:hover, .o360-legal-nav a.active {
    background: var(--dark); color: var(--lime); border-color: var(--dark);
}
.o360-info-steps {
    display: grid; gap: 10px; margin: 16px 0 8px;
    counter-reset: step;
}
.o360-info-steps li {
    list-style: none; position: relative;
    padding: 14px 14px 14px 52px;
    background: var(--bg); border: 1px solid var(--border); border-radius: 14px;
    margin-bottom: 0;
}
.o360-info-steps li::before {
    counter-increment: step; content: counter(step);
    position: absolute; left: 14px; top: 14px;
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--dark); color: var(--lime);
    display: grid; place-items: center;
    font-weight: 800; font-size: 0.78rem;
}
.o360-info-toc {
    display: flex; flex-wrap: wrap; gap: 8px 14px;
    margin: 0 0 22px; padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.o360-info-toc a {
    font-size: 0.82rem !important; font-weight: 700 !important;
    color: var(--muted) !important; text-decoration: none !important;
}
.o360-info-toc a:hover { color: var(--text) !important; }
@media (max-width: 700px) {
    .o360-info-header-inner { height: auto; min-height: 64px; padding: 10px 0; flex-wrap: wrap; }
    .o360-info-nav {
        display: flex; width: 100%;
        overflow-x: auto; flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 2px;
    }
    .o360-info-nav a { white-space: nowrap; flex-shrink: 0; }
}
