/* GB Auto GDPR v2 */
.gb-gdpr,
.gb-gdpr *,
.gb-gdpr-footer-links,
.gb-gdpr-footer-links * {
    box-sizing: border-box;
}

.gb-gdpr[hidden],
.gb-gdpr__modal[hidden] {
    display: none !important;
}

.gb-gdpr {
    --gbgdpr-navy: #061a40;
    --gbgdpr-blue: #012169;
    --gbgdpr-red: #c8102e;
    --gbgdpr-card: #ffffff;
    --gbgdpr-muted: #64748b;
    --gbgdpr-line: rgba(15, 23, 42, .10);
    position: fixed;
    inset: auto 18px 18px 18px;
    z-index: 99999;
    font-family: Arial, sans-serif;
}

.gb-gdpr__banner {
    width: min(1120px, 100%);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 18px;
    border-radius: 28px;
    color: #0f172a;
    background:
        radial-gradient(circle at 0% 0%, rgba(1, 33, 105, .10), transparent 30%),
        radial-gradient(circle at 100% 0%, rgba(200, 16, 46, .10), transparent 32%),
        rgba(255,255,255,.96);
    border: 1px solid rgba(255,255,255,.76);
    box-shadow: 0 28px 90px rgba(2, 6, 23, .28);
    backdrop-filter: blur(18px);
}

.gb-gdpr__mark {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--gbgdpr-navy), var(--gbgdpr-blue) 58%, var(--gbgdpr-red));
    font-weight: 1000;
    letter-spacing: -.06em;
}

.gb-gdpr__eyebrow {
    margin: 0 0 5px;
    color: var(--gbgdpr-red);
    font-size: 11px;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.gb-gdpr h2 {
    margin: 0 0 7px;
    color: var(--gbgdpr-navy);
    font-size: 22px;
    line-height: 1.05;
    letter-spacing: -.035em;
}

.gb-gdpr p {
    margin: 0;
    color: #475569;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 700;
}

.gb-gdpr__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.gb-gdpr__links a,
.gb-gdpr-footer-links a,
.gb-gdpr-footer-links button {
    color: var(--gbgdpr-blue, #012169);
    text-decoration: none;
    font-weight: 900;
}

.gb-gdpr__links a:hover,
.gb-gdpr-footer-links a:hover,
.gb-gdpr-footer-links button:hover {
    color: var(--gbgdpr-red, #c8102e);
}

.gb-gdpr__actions,
.gb-gdpr__panel-actions {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.gb-gdpr__btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    border-radius: 999px;
    border: 1px solid rgba(1, 33, 105, .16);
    color: var(--gbgdpr-blue);
    background: #ffffff;
    font: inherit;
    font-size: 13px;
    font-weight: 950;
    cursor: pointer;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.gb-gdpr__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(1, 33, 105, .14);
}

.gb-gdpr__btn--primary {
    color: #ffffff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--gbgdpr-blue), var(--gbgdpr-red));
}

.gb-gdpr__btn--ghost {
    background: #f8fafc;
}

.gb-gdpr__modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(2, 6, 23, .62);
    backdrop-filter: blur(9px);
}

.gb-gdpr__panel {
    width: min(760px, 100%);
    max-height: min(760px, calc(100vh - 40px));
    overflow: auto;
    padding: 24px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid rgba(255,255,255,.72);
    box-shadow: 0 34px 120px rgba(2, 6, 23, .36);
}

.gb-gdpr__panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gbgdpr-line);
}

.gb-gdpr__close {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid rgba(15,23,42,.10);
    background: #f8fafc;
    color: #0f172a;
    font-size: 24px;
    cursor: pointer;
}

.gb-gdpr__intro {
    margin: 16px 0 !important;
}

.gb-gdpr__categories {
    display: grid;
    gap: 10px;
}

.gb-gdpr__category {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 15px;
    border-radius: 20px;
    background: #f8fafc;
    border: 1px solid rgba(15,23,42,.08);
}

.gb-gdpr__category b {
    display: block;
    color: var(--gbgdpr-navy);
    font-size: 15px;
}

.gb-gdpr__category small {
    display: block;
    margin-top: 4px;
    color: #64748b;
    line-height: 1.45;
    font-weight: 700;
}

.gb-gdpr__category input {
    width: 23px;
    height: 23px;
    accent-color: var(--gbgdpr-blue);
}

.gb-gdpr__panel-actions {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--gbgdpr-line);
}

.gb-gdpr-footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 16px auto;
    padding: 0 16px;
    font-family: Arial, sans-serif;
    font-size: 13px;
}

.gb-gdpr-footer-links button {
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    font: inherit;
}

.gb-legal {
    --gbgdpr-navy: #061a40;
    --gbgdpr-blue: #012169;
    --gbgdpr-red: #c8102e;
    --gbgdpr-muted: #64748b;
    background: #f8fafc;
    color: #0f172a;
}

.gb-legal .container {
    width: min(1180px, calc(100% - 36px));
    margin-inline: auto;
}

.gb-legal-hero {
    padding: 66px 0 30px;
    background:
        radial-gradient(circle at 10% 0%, rgba(1, 33, 105, .12), transparent 34%),
        radial-gradient(circle at 92% 10%, rgba(200, 16, 46, .10), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.gb-legal-card,
.gb-legal-side {
    padding: clamp(22px, 4vw, 38px);
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: 0 22px 58px rgba(15,23,42,.08);
}

.gb-legal-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gbgdpr-red);
    font-size: 12px;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.gb-legal-eyebrow::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--gbgdpr-blue);
    box-shadow: 0 0 0 5px rgba(1,33,105,.10);
}

.gb-legal h1 {
    margin: 14px 0 14px;
    color: var(--gbgdpr-navy);
    font-size: clamp(38px, 6vw, 68px);
    line-height: .98;
    letter-spacing: -.07em;
}

.gb-legal h2 {
    margin: 30px 0 12px;
    color: var(--gbgdpr-navy);
    font-size: 28px;
    line-height: 1.08;
    letter-spacing: -.045em;
}

.gb-legal h3 {
    margin: 22px 0 10px;
    color: #0f172a;
    font-size: 19px;
}

.gb-legal p,
.gb-legal li,
.gb-legal td,
.gb-legal th {
    color: #475569;
    line-height: 1.75;
    font-weight: 700;
}

.gb-legal a {
    color: var(--gbgdpr-blue);
    font-weight: 900;
}

.gb-legal-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 22px;
    align-items: start;
    padding: 28px 0 64px;
}

.gb-legal-side {
    position: sticky;
    top: 18px;
}

.gb-legal-side nav {
    display: grid;
    gap: 8px;
}

.gb-legal-side a {
    padding: 10px 12px;
    border-radius: 14px;
    background: #f8fafc;
    text-decoration: none;
}

.gb-legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    overflow: hidden;
    border-radius: 18px;
}

.gb-legal-table th,
.gb-legal-table td {
    padding: 13px 14px;
    border: 1px solid rgba(15,23,42,.08);
    text-align: left;
    vertical-align: top;
}

.gb-legal-table th {
    color: var(--gbgdpr-navy);
    background: #eef4ff;
}

.gb-legal-note {
    padding: 15px 16px;
    border-radius: 18px;
    background: #fff7ed;
    border: 1px solid rgba(234,88,12,.18);
    color: #7c2d12 !important;
}

.gb-legal-form {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.gb-legal-form label {
    display: grid;
    gap: 7px;
    color: #64748b;
    font-size: 12px;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.gb-legal-form input,
.gb-legal-form select,
.gb-legal-form textarea {
    width: 100%;
    min-height: 46px;
    padding: 0 13px;
    border-radius: 14px;
    border: 1px solid rgba(15,23,42,.12);
    background: #f8fafc;
    color: #0f172a;
    font: inherit;
    font-weight: 800;
}

.gb-legal-form textarea {
    min-height: 140px;
    padding-top: 12px;
    resize: vertical;
}

.gb-legal-success,
.gb-legal-error {
    padding: 14px 16px;
    border-radius: 18px;
    font-weight: 850;
}

.gb-legal-success {
    color: #065f46;
    background: #ecfdf5;
    border: 1px solid rgba(22,163,74,.20);
}

.gb-legal-error {
    color: #991b1b;
    background: #fef2f2;
    border: 1px solid rgba(220,38,38,.20);
}

@media (max-width: 900px) {
    .gb-gdpr__banner {
        grid-template-columns: 1fr;
    }
    .gb-gdpr__mark {
        display: none;
    }
    .gb-gdpr__actions {
        justify-content: stretch;
    }
    .gb-gdpr__btn,
    .gb-gdpr__actions .gb-gdpr__btn {
        width: 100%;
    }
    .gb-legal-grid {
        grid-template-columns: 1fr;
    }
    .gb-legal-side {
        position: relative;
        top: auto;
    }
}

@media (max-width: 560px) {
    .gb-gdpr {
        inset: auto 10px 10px 10px;
    }
    .gb-gdpr__banner,
    .gb-gdpr__panel {
        border-radius: 22px;
        padding: 16px;
    }
    .gb-gdpr__panel-actions .gb-gdpr__btn {
        width: 100%;
    }
    .gb-legal .container {
        width: min(100% - 24px, 1180px);
    }
}
