:root {
    --bg-ivory: #f5f0e4;
    --bg-warm: #e8ddc6;
    --surface: #fffdf7;
    --surface-muted: #f9f3e6;
    --ink: #1f2633;
    --muted: #5d6779;
    --border: #dacdaa;
    --accent: #9f1d27;
    --accent-dark: #781119;
    --accent-blue: #1f4f7a;
    --gold: #b89357;
    --shadow-soft: 0 24px 44px rgba(30, 28, 24, 0.14);
    --shadow-card: 0 26px 46px rgba(23, 26, 36, 0.16);
    --radius-xl: 30px;
    --radius-md: 18px;
    --max-width: min(1160px, 92vw);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: var(--ink);
    line-height: 1.7;
    background:
        radial-gradient(circle at 8% -8%, rgba(184, 147, 87, 0.38), transparent 46%),
        radial-gradient(circle at 90% 10%, rgba(31, 79, 122, 0.26), transparent 34%),
        linear-gradient(180deg, var(--bg-ivory), #efe4cf 58%, #eadfc9 100%);
    position: relative;
    overflow-x: hidden;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

body::before {
    opacity: 0.32;
    background-image: linear-gradient(to right, rgba(117, 123, 137, 0.12) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(117, 123, 137, 0.12) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.72), transparent 80%);
}

body::after {
    background:
        radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.56), transparent 45%),
        radial-gradient(circle at 10% 100%, rgba(159, 29, 39, 0.09), transparent 30%);
}

a {
    color: inherit;
}

.site-header {
    width: var(--max-width);
    margin: 28px auto 12px;
    position: relative;
    z-index: 2;
    background: linear-gradient(120deg, rgba(255, 252, 244, 0.98), rgba(249, 243, 230, 0.95));
    border: 1px solid rgba(218, 205, 170, 0.95);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(8px);
}

.header-inner {
    padding: 22px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.brand-mark {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.9), rgba(232, 221, 198, 0.9));
    border: 1px solid rgba(184, 147, 87, 0.48);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.brand-mark img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.brand-title {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-title h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.55rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.4px;
    line-height: 1.1;
    color: #222a36;
}

.brand-title p {
    color: var(--muted);
    font-size: 0.88rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    font-weight: 600;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.nav-link {
    text-decoration: none;
    font-size: 0.83rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 9px 15px;
    border-radius: 999px;
    border: 1px solid rgba(31, 38, 51, 0.12);
    color: #3e4757;
    font-weight: 600;
    transition: 0.28s ease;
}

.nav-link:hover {
    border-color: rgba(159, 29, 39, 0.36);
    color: var(--accent);
    transform: translateY(-1px);
}

.nav-link.is-active {
    border-color: rgba(159, 29, 39, 0.6);
    background: linear-gradient(120deg, rgba(159, 29, 39, 0.13), rgba(184, 147, 87, 0.2));
    color: #682027;
}

.page-shell {
    width: var(--max-width);
    margin: 32px auto 58px;
    position: relative;
    z-index: 1;
    animation: page-rise 0.6s ease both;
}

.home-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 22px;
}

.process-panel {
    border-radius: var(--radius-xl);
    background:
        linear-gradient(170deg, rgba(31, 38, 51, 0.95), rgba(26, 61, 95, 0.94));
    color: #f3f5f8;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-card);
    padding: 26px;
    position: relative;
    overflow: hidden;
}

.process-panel::before {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(184, 147, 87, 0.38), transparent 72%);
    top: -70px;
    right: -76px;
}

.panel-kicker {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.72rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: #e9ecf1;
}

.process-panel h2 {
    font-family: 'Fraunces', serif;
    font-size: 1.55rem;
    line-height: 1.22;
    margin-bottom: 18px;
    max-width: 210px;
}

.step-list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.step-list li {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    padding: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
}

.step-index {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(184, 147, 87, 0.22);
    border: 1px solid rgba(184, 147, 87, 0.55);
    font-size: 0.78rem;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.step-text {
    font-size: 0.86rem;
    line-height: 1.45;
    color: #d7deea;
}

.process-note {
    font-size: 0.82rem;
    color: #d0d7e4;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 14px;
}

.main-panel {
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(250, 246, 238, 0.96));
    border-radius: var(--radius-xl);
    border: 1px solid rgba(218, 205, 170, 0.95);
    box-shadow: var(--shadow-card);
    padding: clamp(22px, 3.5vw, 44px);
}

.content-area {
    opacity: 0;
    transform: translateY(14px);
    animation: element-rise 0.55s ease forwards;
}

.eyebrow {
    display: inline-flex;
    border: 1px solid rgba(31, 79, 122, 0.28);
    background: rgba(31, 79, 122, 0.07);
    color: var(--accent-blue);
    border-radius: 999px;
    padding: 6px 12px;
    text-transform: uppercase;
    font-size: 0.73rem;
    letter-spacing: 0.09em;
    font-weight: 700;
}

.content-area h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.7rem, 3.7vw, 2.35rem);
    line-height: 1.12;
    margin-top: 14px;
    color: #232b37;
}

.divider {
    height: 1px;
    width: 100%;
    margin: 20px 0 22px;
    background: linear-gradient(90deg, rgba(159, 29, 39, 0.45), rgba(31, 79, 122, 0.16));
}

.content-area p {
    color: #3e4757;
    font-size: 1rem;
}

.info-box {
    margin-top: 22px;
    background: linear-gradient(120deg, rgba(249, 243, 230, 0.95), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(184, 147, 87, 0.44);
    border-left: 5px solid var(--gold);
    border-radius: 16px;
    padding: 18px;
    color: #364155;
    font-size: 0.95rem;
}

.info-box strong {
    color: #5f1f24;
}

#userInfoBlock {
    margin-top: 24px;
}

.user-badge {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(120deg, rgba(159, 29, 39, 0.09), rgba(31, 79, 122, 0.12));
    border: 1px solid rgba(31, 79, 122, 0.24);
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 700;
    color: #273042;
}

.btn-portal {
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    text-decoration: none;
    border: none;
    background: linear-gradient(130deg, var(--accent), #c0392f);
    color: #fffaf7;
    padding: 14px 26px;
    border-radius: 12px;
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 10px 22px rgba(159, 29, 39, 0.3);
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn-portal:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 24px rgba(159, 29, 39, 0.35);
    background: linear-gradient(130deg, #b42832, #d84f39);
}

.legal-hint {
    margin-top: 26px;
    font-size: 0.86rem;
    color: var(--muted);
    padding-top: 18px;
    border-top: 1px dashed rgba(93, 103, 121, 0.35);
}

.inline-command {
    margin: 16px 0;
    font-family: 'JetBrains Mono', monospace;
    background: rgba(31, 79, 122, 0.08);
    border: 1px solid rgba(31, 79, 122, 0.28);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    color: #1f4f7a;
    cursor: pointer;
}

.error-title {
    color: var(--accent);
}

.alt-action {
    background: linear-gradient(130deg, var(--accent-blue), #3570a6);
    box-shadow: 0 10px 22px rgba(31, 79, 122, 0.28);
}

.alt-action:hover {
    box-shadow: 0 14px 24px rgba(31, 79, 122, 0.36);
    background: linear-gradient(130deg, #2c6598, #3b83c3);
}

.cookie-notification {
    position: fixed;
    left: max(12px, calc((100vw - var(--max-width)) / 2));
    right: max(12px, calc((100vw - var(--max-width)) / 2));
    bottom: 16px;
    background: rgba(31, 38, 51, 0.96);
    color: #e8eef7;
    border: 1px solid rgba(184, 147, 87, 0.45);
    border-radius: 18px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 20px 34px rgba(11, 14, 20, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition: opacity 0.24s ease, transform 0.24s ease;
    z-index: 20;
}

.cookie-notification.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.cookie-text {
    font-size: 0.79rem;
    color: #d7deea;
    max-width: 900px;
}

.btn-cookie-accept {
    border: 1px solid rgba(184, 147, 87, 0.6);
    background: linear-gradient(130deg, rgba(184, 147, 87, 0.3), rgba(184, 147, 87, 0.15));
    color: #f8f2e2;
    border-radius: 10px;
    padding: 10px 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.73rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.22s ease;
}

.btn-cookie-accept:hover {
    background: linear-gradient(130deg, rgba(184, 147, 87, 0.42), rgba(184, 147, 87, 0.24));
}

.document-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.97), rgba(249, 244, 233, 0.98));
    border: 1px solid rgba(218, 205, 170, 0.95);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    padding: clamp(22px, 3.7vw, 56px);
}

.document-head {
    border-bottom: 1px solid rgba(31, 79, 122, 0.14);
    margin-bottom: 24px;
    padding-bottom: 18px;
}

.document-card h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.8rem, 3.9vw, 2.45rem);
    line-height: 1.15;
    color: #232b37;
    margin-bottom: 10px;
}

.subtitle {
    display: inline-flex;
    border-radius: 999px;
    border: 1px solid rgba(159, 29, 39, 0.3);
    background: rgba(159, 29, 39, 0.08);
    color: #6b2028;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 7px 12px;
}

.document-card section {
    padding: 14px 16px 16px;
    border: 1px solid transparent;
    border-radius: 14px;
    animation: element-rise 0.54s ease both;
}
.document-card section:nth-of-type(1) {
    animation-delay: 0.04s;
}

.document-card section:nth-of-type(2) {
    animation-delay: 0.08s;
}

.document-card section:nth-of-type(3) {
    animation-delay: 0.12s;
}

.document-card section:nth-of-type(4) {
    animation-delay: 0.16s;
}

.document-card section:nth-of-type(5) {
    animation-delay: 0.2s;
}

.document-card section:nth-of-type(6) {
    animation-delay: 0.24s;
}

.document-card section:nth-of-type(7) {
    animation-delay: 0.28s;
}

.document-card section:nth-of-type(8) {
    animation-delay: 0.32s;
}

.document-card section:nth-of-type(9) {
    animation-delay: 0.36s;
}

.document-card section:nth-of-type(10) {
    animation-delay: 0.4s;
}

.document-card section:nth-of-type(11) {
    animation-delay: 0.44s;
}

.document-card section:nth-of-type(2n) {
    background: rgba(255, 255, 255, 0.55);
    border-color: rgba(218, 205, 170, 0.4);
}

.document-card h3 {
    font-size: 1.02rem;
    color: #243043;
    border-bottom: 1px solid rgba(184, 147, 87, 0.44);
    padding-bottom: 7px;
    margin-bottom: 11px;
}

.document-card p,
.document-card li {
    font-size: 0.97rem;
    color: #303a4d;
    margin-bottom: 12px;
}

.site-footer {
    width: var(--max-width);
    margin: 0 auto 34px;
    padding: 20px 26px;
    border-radius: 18px;
    border: 1px solid rgba(218, 205, 170, 0.85);
    background: rgba(255, 252, 244, 0.9);
    box-shadow: 0 16px 30px rgba(23, 26, 36, 0.08);
    color: #465060;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-links a {
    text-decoration: none;
    font-size: 0.84rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #2e3a50;
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--accent);
}

@keyframes page-rise {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes element-rise {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 980px) {
    .home-grid {
        grid-template-columns: 1fr;
    }

    .process-panel h2 {
        max-width: none;
    }

    .cookie-notification {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-cookie-accept {
        width: 100%;
    }
}

@media (max-width: 700px) {
    .site-header {
        margin-top: 14px;
    }

    .header-inner {
        padding: 18px;
    }

    .brand-title h1 {
        font-size: 1.4rem;
    }

    .site-nav {
        width: 100%;
    }

    .nav-link {
        flex: 1;
        text-align: center;
        min-width: 110px;
    }

    .page-shell {
        margin-top: 20px;
    }

    .main-panel,
    .document-card {
        border-radius: 22px;
    }

    .site-footer {
        padding: 16px;
    }
}

/* Mobile polish and touch-first refinements */
@media (max-width: 1100px) {
    .site-header,
    .page-shell,
    .site-footer {
        width: min(1160px, 94vw);
    }
}

@media (max-width: 980px) {
    .home-grid {
        gap: 16px;
    }

    .main-panel {
        order: 1;
    }

    .process-panel {
        order: 2;
        padding: 22px;
    }

    .step-list {
        gap: 10px;
        margin-bottom: 18px;
    }

    .btn-portal {
        min-height: 48px;
        padding: 14px 20px;
    }

    .legal-hint {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .cookie-notification {
        left: 12px;
        right: 12px;
        bottom: max(12px, env(safe-area-inset-bottom));
        border-radius: 16px;
        padding: 14px;
    }

    .cookie-text {
        max-width: none;
        font-size: 0.84rem;
        line-height: 1.5;
    }
}

@media (max-width: 700px) {
    body::before {
        opacity: 0.18;
        background-size: 22px 22px;
    }

    .site-header,
    .page-shell,
    .site-footer {
        width: 94vw;
    }

    .header-inner {
        padding: 14px;
        gap: 14px;
    }

    .brand {
        width: 100%;
    }

    .brand-mark {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }

    .brand-mark img {
        width: 32px;
        height: 32px;
    }

    .brand-title h1 {
        font-size: 1.28rem;
    }

    .brand-title p {
        font-size: 0.72rem;
        letter-spacing: 0.09em;
    }

    .site-nav {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .nav-link {
        min-width: 0;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        line-height: 1.2;
        padding: 11px 8px;
        font-size: 0.7rem;
    }

    .page-shell {
        margin: 14px auto 34px;
    }

    .home-grid {
        gap: 12px;
    }

    .main-panel {
        padding: 18px 16px 20px;
        border-radius: 20px;
    }

    .process-panel {
        padding: 18px;
        border-radius: 20px;
    }

    .panel-kicker {
        font-size: 0.67rem;
    }

    .process-panel h2 {
        font-size: 1.3rem;
        margin-bottom: 14px;
    }

    .step-list li {
        padding: 10px;
        border-radius: 12px;
    }

    .step-text {
        font-size: 0.84rem;
    }

    .content-area h2 {
        font-size: clamp(1.42rem, 7vw, 1.8rem);
        margin-top: 12px;
    }

    .content-area p {
        font-size: 0.95rem;
        line-height: 1.62;
    }

    .info-box {
        margin-top: 18px;
        padding: 14px;
        border-radius: 14px;
    }

    .user-badge {
        width: 100%;
        justify-content: flex-start;
    }

    .btn-portal {
        width: 100%;
        margin-top: 22px;
        font-size: 0.78rem;
        letter-spacing: 0.07em;
    }

    .inline-command {
        width: 100%;
        justify-content: center;
    }

    .legal-hint {
        margin-top: 20px;
        padding-top: 14px;
        font-size: 0.82rem;
    }

    .document-card {
        border-radius: 20px;
        padding: 18px 14px;
    }

    .document-head {
        margin-bottom: 16px;
        padding-bottom: 12px;
    }

    .document-card h2 {
        font-size: clamp(1.42rem, 6.5vw, 1.9rem);
    }

    .subtitle {
        font-size: 0.66rem;
        letter-spacing: 0.08em;
        padding: 6px 10px;
    }

    .document-card section {
        padding: 10px 11px 12px;
        border-radius: 11px;
    }

    .document-card h3 {
        font-size: 0.94rem;
        margin-bottom: 8px;
    }

    .document-card p,
    .document-card li {
        font-size: 0.9rem;
        margin-bottom: 10px;
        line-height: 1.58;
    }

    .site-footer {
        padding: 14px;
        border-radius: 14px;
        margin-bottom: calc(16px + env(safe-area-inset-bottom));
    }

    .footer-links {
        width: 100%;
        gap: 10px;
    }

    .footer-links a {
        flex: 1 1 auto;
        text-align: center;
        font-size: 0.72rem;
        padding: 10px 8px;
        border: 1px solid rgba(31, 38, 51, 0.12);
        border-radius: 999px;
    }

    .site-footer p {
        width: 100%;
        text-align: center;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .site-header {
        margin-top: 10px;
        border-radius: 16px;
    }

    .header-inner {
        padding: 12px;
    }

    .site-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nav-link {
        font-size: 0.75rem;
    }

    .main-panel,
    .process-panel,
    .document-card {
        border-radius: 16px;
    }

    .cookie-text {
        font-size: 0.78rem;
    }

    .btn-cookie-accept {
        min-height: 44px;
        font-size: 0.7rem;
    }

    .data-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .data-hero {
        border-radius: 16px;
        padding: 16px 14px;
    }

    .data-card {
        border-radius: 14px;
        padding: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
/* Data processing page */
.data-hero {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.97), rgba(248, 241, 227, 0.98));
    border: 1px solid rgba(218, 205, 170, 0.95);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    padding: clamp(20px, 3.6vw, 44px);
    margin-bottom: 18px;
}

.data-hero h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.85rem, 4vw, 2.45rem);
    line-height: 1.12;
    margin-top: 14px;
    color: #222a36;
}

.data-hero p {
    margin-top: 14px;
    color: #3a465b;
    max-width: 760px;
}

.data-hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 24px;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.data-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(249, 244, 234, 0.95));
    border: 1px solid rgba(218, 205, 170, 0.88);
    border-radius: 18px;
    box-shadow: 0 14px 26px rgba(23, 26, 36, 0.08);
    padding: 18px;
}

.data-card h3 {
    font-size: 1rem;
    color: #243043;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(184, 147, 87, 0.4);
    padding-bottom: 7px;
}

.data-card p,
.data-card li {
    font-size: 0.94rem;
    color: #334056;
    line-height: 1.58;
}

.data-card ul {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 6px;
}

.data-email {
    margin: 8px 0 10px;
    font-family: 'JetBrains Mono', monospace;
    background: rgba(31, 79, 122, 0.08);
    border: 1px solid rgba(31, 79, 122, 0.2);
    padding: 8px 10px;
    border-radius: 10px;
    color: #1f4f7a;
    display: inline-flex;
}
@media (max-width: 980px) {
    .data-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .data-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .data-hero .btn-portal,
    .data-hero .nav-link {
        width: 100%;
    }

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

@media (max-width: 480px) {
    .data-hero {
        border-radius: 16px;
        padding: 16px 14px;
    }

    .data-card {
        border-radius: 14px;
        padding: 14px;
    }
}
