/* =========================================================
   HERO
========================================================= */

.page-hero {
    position: relative;
    padding: 4.5rem 0 3rem;
    overflow: hidden;
}

.page-hero--rgpd {
    background: linear-gradient(
        135deg,
        #5f5f5f 0%,
        #4f4f4f 45%,
        #3d3d3d 100%
    );
}

.page-hero--rgpd::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top right,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.05) 25%,
        rgba(255, 255, 255, 0) 55%
    );
    pointer-events: none;
}

.page-hero--rgpd::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.18);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero .eyebrow {
    color: rgba(230, 230, 230, 0.88);
}

.page-hero h1 {
    margin: 0.5rem 0 1rem;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.1;
    color: #ffffff;
}

.page-hero__text {
    max-width: 72ch;
    margin: 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.94);
}

/* =========================================================
   CONTENT
========================================================= */

.rgpd-layout {
    max-width: 1100px;
}

.rgpd-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.rgpd-block {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.rgpd-block::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    background: var(--color-primary);
}

.rgpd-block h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    line-height: 1.2;
}

.rgpd-block h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    margin-top: 12px;
    background: var(--color-primary);
}

.rgpd-block p {
    margin: 0 0 1rem;
    line-height: 1.8;
    color: var(--color-text);
}

.rgpd-block p:last-child {
    margin-bottom: 0;
}

.rgpd-list {
    margin: 0;
    padding-left: 1.2rem;
}

.rgpd-list li {
    margin-bottom: 0.65rem;
    line-height: 1.7;
}

.rgpd-note,
.rgpd-alert {
    margin-bottom: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    background: #f8f8f8;
}

.rgpd-alert {
    background: #fff7f2;
    border-left: 4px solid var(--color-primary);
}

.rgpd-table-wrapper {
    overflow-x: auto;
    margin-top: 1rem;
}

.rgpd-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.rgpd-table th,
.rgpd-table td {
    padding: 0.9rem 0.8rem;
    border: 1px solid #e5e7eb;
    text-align: left;
    vertical-align: top;
    font-size: 0.95rem;
    line-height: 1.5;
}

.rgpd-table th {
    background: #f3f4f6;
    font-weight: 700;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 640px) {
    .page-hero {
        padding: 3.5rem 0 2.5rem;
    }

    .rgpd-block {
        padding: 1.5rem;
    }
}