:root {
    --ink: #2f3534;
    --muted: #74807b;
    --blue: #17479b;
    --green: #176f13;
    --green-dark: #0f520b;
    --paper: #fff0db;
    --bubble: rgba(238, 228, 215, .92);
    --line: rgba(34, 40, 38, .14);
    --danger: #ad4b43;
}

* { box-sizing: border-box; }

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    color: var(--ink);
    background-color: #d5e8d8;
    background-image:
        radial-gradient(ellipse 80% 60% at 15% 20%, rgba(23, 111, 19, .13) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 85% 75%, rgba(23, 71, 155, .08) 0%, transparent 55%),
        radial-gradient(ellipse 70% 55% at 70% 10%, rgba(200, 230, 200, .45) 0%, transparent 50%),
        radial-gradient(ellipse 50% 60% at 30% 85%, rgba(23, 111, 19, .07) 0%, transparent 55%);
}

button, input { font: inherit; }
select { font: inherit; }

.page-shell {
    min-height: 100vh;
    padding: 22px;
}

.site-header {
    width: min(1124px, 100%);
    min-height: 54px;
    margin: 0 auto 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}

.site-logo {
    width: 170px;
    height: auto;
    display: block;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-phone {
    color: #253330;
    font-size: 19px;
    font-weight: 800;
    text-decoration: none;
}

.header-cta {
    min-height: 42px;
    border: 0;
    border-radius: 8px;
    padding: 0 18px;
    background: linear-gradient(135deg, #176f13, #1a9116);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(16, 82, 11, .28);
    transition: transform .15s ease, box-shadow .15s ease;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(16, 82, 11, .35);
}

.quiz-shell {
    width: min(1124px, 100%);
    margin: 0 auto;
}

.quiz-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 26px;
    align-items: stretch;
    padding: 8px 10px 22px;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 420px;
}

h1 {
    max-width: 850px;
    margin: 0;
    font-size: 48px;
    line-height: 1.02;
    letter-spacing: 0;
}

h1 span,
h1 strong {
    display: block;
}

h1 strong {
    color: #008a00;
}

h1 .hero-note {
    margin-top: 10px;
    max-width: 720px;
    font-size: .58em;
    line-height: 1.18;
    font-weight: 500;
    color: #3f4b45;
}

.offer-box {
    width: min(760px, 100%);
    margin-top: 20px;
    padding: 24px 26px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(60, 48, 34, .1);
}

.offer-box p,
.offer-box ul {
    margin: 0;
    font-size: 21px;
}

.offer-box b {
    display: block;
    margin: 8px 0 10px;
    color: #008a00;
    font-size: 27px;
}

.offer-box ul {
    padding-left: 0;
    list-style: none;
    color: #454a49;
    line-height: 1.5;
}

.offer-box ul li {
    padding-left: 26px;
    position: relative;
    margin-bottom: 4px;
}

.offer-box ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.35em;
    width: 14px;
    height: 14px;
    background: var(--green);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3 3 7-7' stroke='%23fff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 9px 7px;
}

.lawyer-card {
    position: relative;
    align-self: stretch;
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
}

.lawyer-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 0;
    display: block;
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(54, 45, 35, .15);
}

.lawyer-card figcaption {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 8px 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px rgba(35, 31, 27, .12);
}

.lawyer-card b,
.lawyer-card span {
    display: block;
}

.lawyer-card span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
    max-width: 180px;
}

.chat-card {
    height: 720px;
    display: grid;
    grid-template-rows: auto auto auto 1fr auto;
    overflow: hidden;
    border-radius: 26px 26px 8px 8px;
    border: 1px solid rgba(16, 31, 26, .12);
    background-color: var(--paper);
    background-image:
        linear-gradient(rgba(255, 240, 219, .78), rgba(255, 240, 219, .78)),
        url("/assets/chat-pattern.png");
    background-size: auto, 360px auto;
    background-position: 0 0, center top;
    box-shadow: 0 18px 52px rgba(58, 48, 36, .13);
}

.chat-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--blue);
    color: #fff;
    font-size: 20px;
    text-align: center;
}

.chat-benefits span::before {
    content: "✓";
    margin-right: 12px;
    font-size: 16px;
    color: #d9ffe1;
}

.chat-benefits span {
    padding: 17px 14px;
    font-weight: 700;
}

.chat-top {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: rgba(255, 248, 238, .72);
    border-bottom: 1px solid rgba(78, 63, 43, .1);
}

.chat-top span {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.avatar {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    overflow: hidden;
    background: #eee0d0;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 12%;
    display: block;
}

.status-dot {
    width: 12px;
    height: 12px;
    margin-left: auto;
    border-radius: 50%;
    background: #3ac15d;
    box-shadow: 0 0 0 4px rgba(58, 193, 93, .2);
    animation: pulse 2s infinite ease-in-out;
}

.progress {
    height: 4px;
    background: rgba(255, 255, 255, .48);
}

.progress-bar {
    width: 0;
    height: 100%;
    background: var(--green);
    transition: width .25s ease;
}

.security-note {
    display: block;
    width: fit-content;
    margin: 2px auto 0;
    color: #6f7b78;
    font-size: 11px;
    line-height: 1.2;
    text-decoration: none;
}

.security-note:hover,
.security-note:focus-visible {
    color: #176f13;
    text-decoration: underline;
}

.chat-security {
    margin: 5px auto 0;
}

.chat-feed {
    min-height: 0;
    padding: 28px 28px 20px;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.row {
    display: grid;
    grid-template-columns: 46px minmax(0, 900px);
    column-gap: 12px;
    margin: 0 0 18px;
}

.row.user {
    grid-template-columns: minmax(0, 700px);
    justify-content: end;
}

.stamp {
    grid-column: 2;
    margin: 0 0 5px;
    color: #7e8585;
    font-size: 16px;
}

.msg {
    grid-column: 2;
    width: fit-content;
    max-width: 100%;
    padding: 15px 24px;
    border-radius: 0 22px 22px 22px;
    background: var(--bubble);
    box-shadow: 0 2px 3px rgba(50, 42, 34, .25);
    font-size: 20px;
    line-height: 1.38;
    white-space: pre-line;
    animation: rise .18s ease both;
}

.row.user .msg {
    grid-column: 1;
    justify-self: end;
    border-radius: 22px 0 22px 22px;
    background: var(--green);
    color: #fff;
}

.row > .avatar {
    grid-row: 1 / span 2;
    align-self: end;
    width: 42px;
    height: 42px;
}

.typing-line {
    grid-column: 2;
    color: #7e8585;
    font-size: 15px;
    margin-bottom: 5px;
}

.typing {
    grid-column: 2;
    width: 72px;
    padding: 14px 18px;
    border-radius: 0 20px 20px 20px;
    background: var(--bubble);
    box-shadow: 0 2px 3px rgba(50, 42, 34, .18);
}

.typing span {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 4px;
    border-radius: 50%;
    background: #8f8a84;
    animation: blink 1s infinite ease-in-out;
}

.typing span:nth-child(2) { animation-delay: .15s; }
.typing span:nth-child(3) { animation-delay: .3s; }

.answer-panel {
    padding: 0 28px 20px 86px;
    background: transparent;
}

.answers {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.answer-btn,
.submit-btn {
    min-height: 40px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #176f13, #1a9116);
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    text-align: left;
    padding: 8px 20px;
    box-shadow: 0 2px 6px rgba(16, 82, 11, .25);
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.answer-btn:hover,
.answer-btn:focus-visible,
.submit-btn:hover,
.submit-btn:focus-visible {
    outline: 0;
    background: linear-gradient(135deg, #0f520b, #176f13);
    transform: translateY(-2px);
    box-shadow: 0 5px 14px rgba(16, 82, 11, .32);
}

.field-stack {
    width: min(560px, 100%);
    display: grid;
    gap: 8px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.field-stack label {
    font-size: 15px;
}

.field-stack input {
    width: 100%;
    height: 46px;
    border: none;
    border-radius: 10px;
    padding: 0 18px;
    background: rgba(23, 111, 19, .10);
    color: var(--ink);
    font-size: 16px;
    backdrop-filter: blur(4px);
    outline: none;
    transition: background .18s ease;
}

.field-stack input:focus {
    background: rgba(23, 111, 19, .17);
}

.field-stack input::placeholder {
    color: rgba(23, 80, 20, .5);
    font-style: italic;
}

.submit-btn {
    width: fit-content;
    min-width: 190px;
    text-align: center;
    border-radius: 4px;
}

.agreement {
    margin: 8px 0;
    color: #536090;
    line-height: 1.45;
}

.privacy-check {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    line-height: 1.35;
    font-size: 14px;
}

.privacy-check input {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    accent-color: #405894;
}

.field-stack .privacy-check input {
    width: 17px;
    height: 17px;
    padding: 0;
    border-radius: 3px;
}

.privacy-check a {
    color: #536090;
}

.input-shake {
    border-color: #d98b00 !important;
    animation: shake .22s ease both;
}

.choice-card {
    width: min(390px, 100%);
    display: grid;
    gap: 0;
    padding: 14px 20px;
    border-radius: 4px;
    background: rgba(238, 228, 215, .9);
    box-shadow: 0 2px 3px rgba(50, 42, 34, .2);
}

.choice-card label {
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px dashed rgba(80, 76, 69, .16);
    font-size: 17px;
}

.choice-card label:last-child {
    border-bottom: 0;
}

.choice-card input {
    width: 17px;
    height: 17px;
    accent-color: #405894;
}

.next-btn {
    margin-top: 12px;
}

.error-text {
    min-height: 0;
    color: var(--danger);
    font-size: 13px;
}

.error-text:empty {
    display: none;
}

.captcha-mount {
    width: 100%;
    min-height: 0;
    margin: 0;
}

.captcha-mount.captcha-visible {
    min-height: 70px;
}

.trap-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.proof-strip {
    width: min(1124px, 100%);
    margin: 16px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.proof-strip article {
    min-height: 88px;
    padding: 16px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--line);
}

.proof-strip b,
.proof-strip span { display: block; }

.proof-strip span {
    margin-top: 6px;
    color: var(--muted);
    line-height: 1.35;
}

.legal {
    width: min(1124px, 100%);
    margin: 16px auto 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.legal p {
    margin: 8px 0 0;
}

.legal button {
    padding: 0;
    border: 0;
    background: transparent;
    color: #24534a;
    cursor: pointer;
    font-weight: 700;
}

.legal a { color: #24534a; }

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-top: 10px;
}

.legal-links a,
.legal-links button {
    color: #24534a;
    font-size: 13px;
    font-weight: 700;
}

.legal-link,
.inline-link {
    border: 0;
    padding: 0;
    background: transparent;
    color: #536090;
    text-decoration: underline;
    cursor: pointer;
    font: inherit;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 20;
    display: grid;
    place-items: center;
    padding: 18px;
    background: rgba(22, 27, 25, .52);
}

.modal-backdrop[hidden] {
    display: none;
}

.modal-box {
    position: relative;
    width: min(760px, 100%);
    max-height: min(760px, 92vh);
    overflow-y: auto;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
}

.modal-small {
    width: min(460px, 100%);
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.modal-small h2 {
    margin: 0 0 16px;
    font-size: 26px;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: #f0f0f0;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
}

.modal-form {
    display: grid;
    gap: 10px;
}

.modal-form input:not([type="checkbox"]):not([type="radio"]),
.modal-form select {
    width: 100%;
    height: 44px;
    border: 1px solid rgba(28, 96, 20, .22);
    border-radius: 6px;
    padding: 0 12px;
    background: #fff;
}

.modal-form input::placeholder {
    color: rgba(23, 80, 20, .45);
    font-style: italic;
}

.radio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.radio-card {
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border: 1px solid rgba(28, 96, 20, .22);
    border-radius: 6px;
    cursor: pointer;
}

.radio-card input {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    accent-color: var(--green);
}

.modal-policy {
    width: min(980px, 100%);
    height: min(760px, 92vh);
}

.modal-policy iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

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

@keyframes blink {
    0%, 80%, 100% { opacity: .3; transform: translateY(0); }
    40% { opacity: 1; transform: translateY(-2px); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(58, 193, 93, .2); }
    50% { box-shadow: 0 0 0 8px rgba(58, 193, 93, 0); }
}

@media (max-width: 760px) {
    .page-shell { padding: 0; }

    .site-header {
        width: 100%;
        min-height: 52px;
        margin: 0;
        padding: 8px 12px;
        display: grid;
        grid-template-columns: minmax(0, 150px) minmax(118px, 1fr);
        gap: 8px;
        background: rgba(255, 255, 255, .9);
    }

    .site-logo {
        width: min(142px, 100%);
        min-width: 0;
    }

    .header-actions {
        min-width: 0;
        display: flex;
        justify-content: flex-end;
    }

    .header-phone {
        display: none;
    }

    .header-cta {
        min-height: 38px;
        width: min(100%, 190px);
        max-width: 100%;
        padding: 5px 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 800;
        line-height: 1.1;
        text-align: center;
        white-space: normal;
        overflow-wrap: anywhere;
        flex-shrink: 1;
        transform: none !important;
        border-radius: 10px;
    }

    .quiz-shell {
        width: 100%;
    }

    .quiz-hero {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 10px 12px 6px;
    }

    .hero-copy {
        min-height: 0;
    }

    h1 {
        font-size: 26px;
        line-height: 1.12;
        margin-bottom: 0;
    }

    h1 strong {
        font-size: 27px;
    }

    .quiz-hero p {
        font-size: 15px;
    }

    .lawyer-card {
        display: none;
    }

    .offer-box {
        margin-top: 6px;
        padding: 10px 12px;
        border-radius: 10px;
    }

    .offer-box p,
    .offer-box ul {
        font-size: 13px;
    }

    .offer-box b {
        font-size: 15px;
        margin: 4px 0 6px;
    }

    .offer-box ul li {
        margin-bottom: 2px;
        padding-left: 20px;
    }

    .offer-box ul li::before {
        width: 12px;
        height: 12px;
        top: 0.35em;
    }

    .chat-card {
        height: min(760px, calc(100dvh - 28px));
        min-height: 560px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .chat-benefits {
        grid-template-columns: 1fr 1fr;
        font-size: 13px;
        gap: 0;
    }

    .chat-benefits span {
        padding: 8px 6px;
        font-size: 12px;
        font-weight: 600;
    }

    .chat-benefits span + span { display: flex; }

    .chat-benefits span::before {
        margin-right: 6px;
        font-size: 13px;
    }

    .chat-top {
        display: flex;
        padding: 8px 12px;
        gap: 8px;
    }

    .chat-top strong {
        font-size: 13px;
    }

    .chat-top span {
        font-size: 10px;
    }

    .avatar {
        width: 34px;
        height: 34px;
    }

    .avatar img {
        object-position: 50% 5%;
    }

    .chat-feed {
        padding: 8px 10px 4px;
        min-height: 0;
    }

    .row {
        grid-template-columns: 32px minmax(0, 1fr);
        gap: 6px;
        margin-bottom: 7px;
    }

    .row > .avatar {
        width: 32px;
        height: 32px;
    }

    /* Время скрываем — экономим место */
    .stamp { display: none; }

    .msg {
        padding: 8px 12px;
        border-radius: 0 16px 16px 16px;
        font-size: 14px;
        line-height: 1.32;
    }

    .row.bot:last-child .msg {
        font-size: 13px;
        line-height: 1.28;
    }

    .row.user .msg {
        border-radius: 16px 0 16px 16px;
    }

    .answer-panel {
        padding: 4px 10px 8px;
        min-width: 0;
    }

    .answers {
        gap: 7px;
    }

    .answer-btn {
        min-height: 38px;
        padding: 8px 12px;
        font-size: 14px;
        border-radius: 12px;
        width: 100%;
        text-align: left;
    }

    .submit-btn {
        min-height: 40px;
        padding: 8px 12px;
        font-size: 14px;
        border-radius: 12px;
    }

    .answer-btn:hover,
    .submit-btn:hover {
        transform: none;
    }

    .field-stack {
        gap: 5px;
        width: 100%;
        min-width: 0;
    }

    .contact-stack {
        gap: 5px;
    }

    .field-stack label {
        font-size: 13px;
        color: var(--muted);
    }

    .field-stack input {
        height: 42px;
        padding: 0 12px;
        font-size: 16px;
        border-radius: 12px;
    }

    .field-stack .submit-btn {
        width: 100%;
        min-height: 42px;
        text-align: center;
        white-space: normal;
        line-height: 1.15;
        border-radius: 12px;
    }

    .choice-card {
        padding: 8px 12px;
        border-radius: 12px;
    }

    .choice-card label {
        gap: 12px;
        padding: 10px 0;
        font-size: 15px;
    }

    .next-btn {
        width: 100%;
        text-align: center;
        border-radius: 12px;
    }

    .privacy-check {
        align-items: center;
        align-self: flex-start;
        font-size: 10px;
        line-height: 1.25;
        min-width: 0;
        width: fit-content;
    }

    .privacy-check span {
        min-width: 0;
    }

    .privacy-check input {
        width: 16px;
        height: 16px;
        margin-top: 0;
    }

    .field-stack .privacy-check input {
        width: 16px;
        height: 16px;
    }

    .error-text {
        min-height: 0;
        font-size: 12px;
    }

    .captcha-mount {
        min-height: 0;
        margin: 0;
    }

    .captcha-mount.captcha-visible {
        min-height: 64px;
    }

    .modal-small {
        padding: 18px;
    }

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

    .proof-strip {
        grid-template-columns: 1fr;
        padding: 0 14px;
    }

    .legal {
        padding: 12px 14px 20px;
    }
}

@media (max-width: 420px) and (max-height: 700px) {
    .chat-card {
        height: min(720px, calc(100dvh - 18px));
        min-height: 540px;
    }

    .site-header {
        min-height: 44px;
        padding: 5px 10px;
    }

    .site-logo {
        width: min(128px, 100%);
    }

    .header-cta {
        min-height: 34px;
        padding: 4px 8px;
        font-size: 11px;
    }

    .chat-benefits span {
        padding: 7px 6px;
        font-size: 12px;
    }

    .chat-top .avatar {
        width: 34px;
        height: 34px;
    }

    .chat-top strong {
        font-size: 13px;
    }

    .chat-top span {
        font-size: 10px;
    }

    .chat-feed {
        padding: 8px 10px 4px;
    }

    .msg {
        padding: 8px 12px;
        font-size: 14px;
        line-height: 1.35;
    }

    .answer-panel {
        padding: 6px 10px 10px;
    }

    .field-stack {
        gap: 6px;
    }

    .field-stack input {
        height: 44px;
    }

    .privacy-check {
        font-size: 10px;
        line-height: 1.25;
    }

    .field-stack .submit-btn {
        min-height: 40px;
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .site-header {
        grid-template-columns: minmax(0, 118px) minmax(112px, 1fr);
        gap: 6px;
    }

    .site-logo {
        width: min(118px, 100%);
    }

    .header-cta {
        width: 100%;
        font-size: 10px;
    }

    .chat-benefits span {
        font-size: 11px;
    }

    .answer-btn,
    .submit-btn {
        padding-left: 12px;
        padding-right: 12px;
    }
}

.smart-captcha-badge { display: none !important; }
#quizCaptchaContainer,
#consultCaptchaContainer {
    max-width: 100%;
    overflow: hidden;
}
#quizCaptchaContainer iframe,
#consultCaptchaContainer iframe {
    max-width: 100%;
}
.captcha-policy { font-size: 11px; color: #a1ada8; text-align: right; margin-top: 8px; }
.captcha-policy a { color: inherit; text-decoration: none; transition: color 0.2s; }
.captcha-policy a:hover { color: #176f13; }
