/*
 * Your Data page — page-specific styles (accordion, check-lists, Know Your Rights grid, offer card).
 * Extracted from DesignV2 pages/your-data.html inline <style> block.
 */

.data-accordion { border-top: 1px solid rgba(0,0,0,0.08); }
.da-item { border-bottom: 1px solid rgba(0,0,0,0.08); padding: 0; }
.da-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: #111213;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    outline: none;
}
.da-item summary::-webkit-details-marker { display: none; }
.da-item summary::marker { content: ''; }
.da-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: #8dbb44;
    font-weight: 400;
    line-height: 1;
    transition: transform .2s;
}
.da-item[open] summary::after { content: '−'; transform: rotate(0deg); }
.da-item summary:focus-visible { box-shadow: 0 0 0 3px rgba(12,100,120,0.25); border-radius: 4px; }
.da-body { padding: 0 0 22px; color: #292929; font-size: 0.95rem; line-height: 1.6; }
.da-body p { margin: 0 0 12px; }
.da-body p:last-child { margin-bottom: 0; }
.da-body .check-list { margin: 12px 0; }

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { position: relative; padding: 10px 0 10px 38px; font-size: 0.95rem; line-height: 1.55; color: #292929; }
.check-list li strong { display: block; margin-bottom: 2px; color: #111213; }
.check-list li:before {
    content: "";
    position: absolute; left: 0; top: 12px;
    width: 24px; height: 24px; border-radius: 50%;
    background: #8dbb44 url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/14px no-repeat;
}
.check-list-simple li { padding: 6px 0 6px 28px; font-size: 0.9rem; }
.check-list-simple li strong { display: inline; font-weight: 700; margin-bottom: 0; }
.check-list-simple li:before {
    content: "";
    position: absolute; left: 0; top: 10px;
    width: 16px; height: 16px; border-radius: 0;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238dbb44' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/16px no-repeat;
}

.kyr-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; }
.kyr-card {
    background: #ddecef; border-radius: 18px; padding: 24px 20px;
    text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px;
    text-decoration: none; color: inherit; transition: transform .2s, box-shadow .2s;
}
.kyr-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.kyr-icon {
    width: 52px; height: 52px; border-radius: 50%; background: #8dbb44;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.kyr-card h4 { font-family: 'Roboto', sans-serif; font-size: 0.95rem; font-weight: 600; color: #111213; margin: 0; line-height: 1.4; }
@media (max-width: 1024px) { .kyr-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .kyr-grid { grid-template-columns: 1fr; } }

.offer-card {
    display: grid; grid-template-columns: 140px 1fr; gap: 24px;
    background: #fff; border-radius: 18px; padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    align-items: center;
}
.offer-thumb { background: #e9eef0; border-radius: 12px; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; }
.offer-thumb svg { opacity: 0.35; }
.offer-body h4 { font-family: 'Roboto', sans-serif; font-size: 1.2rem; margin: 0 0 10px; color: #111213; }
.offer-pill {
    display: inline-block; background: #8dbb44; color: #fff;
    font-size: 0.72rem; font-weight: 700; padding: 4px 12px; border-radius: 50px;
    text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 10px;
}
.offer-body p { font-size: 0.9rem; color: #444; margin: 0; line-height: 1.55; }
@media (max-width: 560px) { .offer-card { grid-template-columns: 100px 1fr; gap: 16px; padding: 16px; } }
