.ajo-survey {
    max-width: 560px;
    margin: 40px auto;
    box-sizing: border-box;
    background: #FBF9F4;
    border: 1px solid #E4E1D8;
    border-radius: 18px;
    padding: 36px 32px 32px;
    font-family: 'Inter', sans-serif;
    color: #14231D;
}

.ajo-survey * { box-sizing: border-box; }

.ajo-survey .eyebrow {
    font-size: 12px;
    letter-spacing: 0.12em;
    font-weight: 600;
    color: #3C8B6E;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.ajo-survey .survey-title {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 26px;
    line-height: 1.25;
    color: #163832;
    margin: 0 0 8px;
}

.ajo-survey .survey-title em {
    font-style: italic;
    color: #3C8B6E;
}

.ajo-survey .survey-sub {
    font-size: 14px;
    color: #4B5750;
    margin: 0 0 24px;
}

.ajo-survey .survey-progress-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.ajo-survey .survey-progress-track {
    flex: 1;
    height: 6px;
    border-radius: 4px;
    background: #E4E1D8;
    overflow: hidden;
}

.ajo-survey .survey-progress-fill {
    height: 100%;
    width: 0%;
    background: #3C8B6E;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.ajo-survey .survey-count {
    font-size: 12.5px;
    font-weight: 600;
    color: #4B5750;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.ajo-survey .sq {
    display: none;
}

.ajo-survey .sq-question {
    font-size: 16px;
    font-weight: 600;
    color: #163832;
    margin-bottom: 16px;
}

.ajo-survey .sq-options button:focus-visible {
    outline: 2px solid #3C8B6E;
    outline-offset: 2px;
}

.ajo-survey .sq-done {
    display: none;
    text-align: center;
    padding: 20px 0;
}

.ajo-survey .sq-done-icon {
    width: 48px;
    height: 48px;
    line-height: 48px;
    border-radius: 50%;
    background: #E4F0EA;
    color: #3C8B6E;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.ajo-survey .sq-done-title {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 20px;
    color: #163832;
    margin-bottom: 8px;
}

.ajo-survey .sq-done-sub {
    font-size: 14px;
    color: #4B5750;
    margin: 0;
}

.ajo-survey .survey-nav {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.ajo-survey .survey-btn {
    flex: 1;
    padding: 14px;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease, opacity 0.15s ease;
}

.ajo-survey .survey-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.ajo-survey .survey-btn.primary {
    border: none;
    background: #163832;
    color: #fff;
}

.ajo-survey .survey-btn.primary:hover:not(:disabled) {
    background: #3C8B6E;
}

.ajo-survey .survey-btn.ghost {
    border: 1.5px solid #E4E1D8;
    background: #fff;
    color: #4B5750;
}

.ajo-survey .survey-btn.ghost:hover:not(:disabled) {
    border-color: #3C8B6E;
    color: #163832;
}

@media (max-width: 480px) {
    .ajo-survey { padding: 28px 20px 24px; margin: 24px auto; }
    .ajo-survey .survey-title { font-size: 22px; }
}