/* ============================================================
   hofijuda.com | Commercial Real Estate Webinar
   Pure Vanilla CSS  ·  Namespace: .hj-cre-  ·  BEM
   ============================================================ */

/* ── 1. RESET & CUSTOM PROPERTIES ─────────────────────────── */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --hj-bg:          #ffffff;
    --hj-dark:        #111111;
    --hj-mid:         #5a5a5a;
    --hj-light:       #f7f7f5;
    --hj-border:      #e4e4e0;
    --hj-footer-bg:   #111111;

    --hj-font-head:   'Georgia', 'Times New Roman', serif;
    --hj-font-body:   -apple-system, BlinkMacSystemFont, 'Segoe UI',
                      'Helvetica Neue', Arial, sans-serif;

    --hj-max:         1240px;
    --hj-px:          clamp(20px, 4vw, 64px);
    --hj-section:     clamp(64px, 8vw, 120px);

    --hj-ease:        cubic-bezier(0.25, 0.1, 0.25, 1);
    --hj-shadow:      0 2px 24px rgba(0,0,0,0.07);
    --hj-shadow-lg:   0 8px 48px rgba(0,0,0,0.12);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--hj-font-body);
    color: var(--hj-dark);
    background-color: var(--hj-bg);
    line-height: 1.65;
    overflow-x: hidden;
}

ul, ol { list-style: none; }
a      { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
address { font-style: normal; }
img, svg { display: block; }

/* ── 2. SHARED BUTTON COMPONENT ────────────────────────────── */

.hj-cre-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 15px 30px;
    font-family: var(--hj-font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition:
        background-color 0.22s var(--hj-ease),
        color            0.22s var(--hj-ease),
        border-color     0.22s var(--hj-ease);
    cursor: pointer;
    white-space: nowrap;
    border-radius: 0;
    position: relative;
}

.hj-cre-btn--primary {
    background-color: var(--hj-dark);
    color: #ffffff;
    border: 1.5px solid var(--hj-dark);
}
.hj-cre-btn--primary:hover,
.hj-cre-btn--primary:focus-visible {
    background-color: #333333;
    border-color: #333333;
    outline: none;
}

.hj-cre-btn--outline {
    background-color: transparent;
    color: var(--hj-dark);
    border: 1.5px solid var(--hj-dark);
}
.hj-cre-btn--outline:hover,
.hj-cre-btn--outline:focus-visible {
    background-color: var(--hj-dark);
    color: #ffffff;
    outline: none;
}

.hj-cre-btn--full {
    width: 100%;
    justify-content: center;
}

.hj-cre-btn--cookie {
    background-color: #ffffff;
    color: #111111;
    border: 1.5px solid #ffffff;
    padding: 10px 22px;
    font-size: 11px;
    flex-shrink: 0;
}
.hj-cre-btn--cookie:hover {
    background-color: #e0e0e0;
    border-color: #e0e0e0;
}

/* ── 3. HEADER ──────────────────────────────────────────────── */

.hj-cre-header {
    position: fixed;
    inset-block-start: 0;
    inset-inline: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid transparent;
    transition:
        border-color 0.3s var(--hj-ease),
        box-shadow   0.3s var(--hj-ease);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hj-cre-header--scrolled {
    border-color: var(--hj-border);
    box-shadow: 0 1px 16px rgba(0, 0, 0, 0.05);
}

.hj-cre-header__inner {
    max-width: var(--hj-max);
    margin-inline: auto;
    padding-inline: var(--hj-px);
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.hj-cre-header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.hj-cre-header__logo-text {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: var(--hj-dark);
    text-transform: uppercase;
}

.hj-cre-nav__list {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.hj-cre-nav__link {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.10em;
    color: var(--hj-mid);
    text-transform: uppercase;
    transition: color 0.2s var(--hj-ease);
}
.hj-cre-nav__link:hover { color: var(--hj-dark); }

.hj-cre-nav__link--cta {
    color: var(--hj-dark);
    padding: 8px 20px;
    border: 1.5px solid var(--hj-dark);
    transition: background-color 0.2s, color 0.2s;
}
.hj-cre-nav__link--cta:hover {
    background-color: var(--hj-dark);
    color: #ffffff;
}

/* ── 4. HERO ────────────────────────────────────────────────── */

.hj-cre-hero {
    padding-block-start: 68px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background-color: var(--hj-bg);
    position: relative;
}

.hj-cre-hero__content {
    max-width: var(--hj-max);
    margin-inline: auto;
    padding: clamp(48px, 7vw, 96px) var(--hj-px);
    display: flex;
    align-items: center;
    gap: clamp(40px, 6vw, 80px);
    width: 100%;
}

.hj-cre-hero__text-block {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 2;
}

.hj-cre-hero__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--hj-mid);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.hj-cre-hero__eyebrow::before {
    content: '';
    display: inline-block;
    width: 36px;
    height: 1px;
    background-color: currentColor;
    flex-shrink: 0;
}

.hj-cre-hero__title {
    font-family: var(--hj-font-head);
    font-size: clamp(40px, 6vw, 80px);
    line-height: 1.04;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--hj-dark);
    margin-bottom: 24px;
}
.hj-cre-hero__title strong { font-weight: 900; display: block; }

.hj-cre-hero__subtitle {
    font-family: var(--hj-font-head);
    font-size: clamp(17px, 2.2vw, 24px);
    font-style: italic;
    color: var(--hj-mid);
    line-height: 1.5;
    margin-bottom: 40px;
}

.hj-cre-hero__cta { margin-bottom: 14px; }

.hj-cre-hero__note {
    font-size: 12px;
    color: var(--hj-mid);
    letter-spacing: 0.04em;
    padding-left: 2px;
}

.hj-cre-hero__visual {
    flex: 0 0 auto;
    width: clamp(300px, 44vw, 520px);
    position: relative;
}

.hj-cre-hero__svg {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: var(--hj-shadow-lg);
}

.hj-cre-hero__badge {
    position: absolute;
    bottom: 28px;
    left: -28px;
    background-color: var(--hj-dark);
    color: #ffffff;
    padding: 18px 22px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    box-shadow: var(--hj-shadow-lg);
    min-width: 130px;
}

.hj-cre-hero__badge-number {
    font-family: var(--hj-font-head);
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
}

.hj-cre-hero__badge-text {
    font-size: 11px;
    line-height: 1.4;
    opacity: 0.65;
    letter-spacing: 0.03em;
}

.hj-cre-hero__scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--hj-mid);
    opacity: 0.5;
    animation: hjBob 2.2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes hjBob {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(7px); }
}

/* ── 5. ABOUT ───────────────────────────────────────────────── */

.hj-cre-about {
    padding-block: var(--hj-section);
    padding-inline: var(--hj-px);
    background-color: var(--hj-bg);
    overflow: hidden;
}

.hj-cre-about__inner {
    max-width: var(--hj-max);
    margin-inline: auto;
    display: flex;
    align-items: flex-start;
    gap: clamp(40px, 6vw, 100px);
}

.hj-cre-about__visuals {
    flex: 0 0 auto;
    width: clamp(260px, 40vw, 460px);
    position: relative;
    height: 400px;
}

.hj-cre-about__fig {
    position: absolute;
    margin: 0;
    overflow: hidden;
}
.hj-cre-about__fig svg { width: 100%; height: auto; display: block; }

.hj-cre-about__fig--top {
    top: 0;
    left: 0;
    width: 74%;
    box-shadow: var(--hj-shadow);
    z-index: 2;
}

.hj-cre-about__fig--bottom {
    bottom: 0;
    right: 0;
    width: 63%;
    box-shadow: var(--hj-shadow-lg);
    z-index: 1;
}

.hj-cre-about__fig-caption {
    position: absolute;
    bottom: 0;
    inset-inline: 0;
    background-color: rgba(17, 17, 17, 0.70);
    color: #ffffff;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 7px 11px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.hj-cre-about__text {
    flex: 1;
    min-width: 0;
    padding-top: 16px;
}

.hj-cre-about__title {
    font-family: var(--hj-font-head);
    font-size: clamp(28px, 4vw, 50px);
    line-height: 1.1;
    font-weight: 700;
    color: var(--hj-dark);
    margin-bottom: 28px;
}

.hj-cre-about__lead {
    font-size: 16px;
    line-height: 1.75;
    color: var(--hj-mid);
    margin-bottom: 28px;
}

.hj-cre-about__details {
    border-top: 1px solid var(--hj-border);
    margin-bottom: 28px;
}

.hj-cre-about__summary {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding-block: 14px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--hj-dark);
    text-transform: uppercase;
}
.hj-cre-about__summary::-webkit-details-marker { display: none; }
.hj-cre-about__summary::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    transition: transform 0.22s var(--hj-ease);
    flex-shrink: 0;
}
details[open] > .hj-cre-about__summary::after { transform: rotate(45deg); }

.hj-cre-about__list {
    padding-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.hj-cre-about__list li {
    font-size: 15px;
    color: var(--hj-mid);
    padding-left: 20px;
    position: relative;
    line-height: 1.55;
}
.hj-cre-about__list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--hj-border);
    font-weight: 300;
}

.hj-cre-about__readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--hj-dark);
    transition: gap 0.2s var(--hj-ease);
}
.hj-cre-about__readmore:hover { gap: 14px; }

/* ── 6. STRATEGIES ──────────────────────────────────────────── */

.hj-cre-strategies {
    padding-block: var(--hj-section);
    padding-inline: var(--hj-px);
    background-color: var(--hj-light);
}

.hj-cre-strategies__inner {
    max-width: var(--hj-max);
    margin-inline: auto;
}

.hj-cre-strategies__header { margin-bottom: clamp(44px, 5vw, 72px); }

.hj-cre-strategies__title {
    font-family: var(--hj-font-head);
    font-size: clamp(26px, 3.5vw, 48px);
    line-height: 1.15;
    font-weight: 700;
    color: var(--hj-dark);
    margin-bottom: 14px;
}

.hj-cre-strategies__subtitle {
    font-size: 15px;
    color: var(--hj-mid);
}

.hj-cre-strategies__list {
    display: flex;
    gap: clamp(28px, 3.5vw, 56px);
    align-items: stretch;
}

.hj-cre-strategies__item { flex: 1; min-width: 0; }

.hj-cre-strategies__card {
    height: 100%;
    padding-block: 36px;
    border-top: 1.5px solid var(--hj-dark);
}

.hj-cre-strategies__num {
    display: block;
    font-family: var(--hj-font-head);
    font-size: clamp(72px, 9vw, 120px);
    font-weight: 700;
    line-height: 0.88;
    color: var(--hj-border);
    margin-bottom: 18px;
    user-select: none;
    letter-spacing: -0.04em;
}

.hj-cre-strategies__card-title {
    font-family: var(--hj-font-head);
    font-size: clamp(17px, 1.8vw, 22px);
    font-weight: 700;
    line-height: 1.22;
    color: var(--hj-dark);
    margin-bottom: 14px;
}

.hj-cre-strategies__card-text {
    font-size: 14px;
    line-height: 1.75;
    color: var(--hj-mid);
}

/* ── 7. GALLERY ─────────────────────────────────────────────── */

.hj-cre-gallery {
    padding-block: var(--hj-section);
    padding-inline: var(--hj-px);
    background-color: var(--hj-bg);
}

.hj-cre-gallery__inner {
    max-width: var(--hj-max);
    margin-inline: auto;
}

.hj-cre-gallery__header { margin-bottom: clamp(36px, 4vw, 56px); }

.hj-cre-gallery__title {
    font-family: var(--hj-font-head);
    font-size: clamp(26px, 3vw, 44px);
    line-height: 1.15;
    font-weight: 700;
    color: var(--hj-dark);
}

.hj-cre-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 220px 220px;
    gap: 10px;
}

.hj-cre-gallery__item {
    margin: 0;
    position: relative;
    overflow: hidden;
    background-color: var(--hj-light);
}

.hj-cre-gallery__item--featured {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.hj-cre-gallery__img-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.hj-cre-gallery__img-wrap svg {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.4s var(--hj-ease);
}
.hj-cre-gallery__item:hover .hj-cre-gallery__img-wrap svg {
    transform: scale(1.04);
}

.hj-cre-gallery__caption {
    position: absolute;
    bottom: 0;
    inset-inline: 0;
    background: linear-gradient(transparent, rgba(15, 15, 15, 0.80));
    padding: 36px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hj-cre-gallery__caption-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
}

.hj-cre-gallery__caption-sub {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.68);
    letter-spacing: 0.04em;
}

.hj-cre-gallery__footer {
    margin-top: 28px;
    display: flex;
    justify-content: flex-end;
}

/* ── 8. REGISTER SECTION ────────────────────────────────────── */

.hj-cre-register {
    padding-block: var(--hj-section);
    padding-inline: var(--hj-px);
    background-color: var(--hj-light);
}

.hj-cre-register__inner {
    max-width: var(--hj-max);
    margin-inline: auto;
    display: flex;
    align-items: flex-start;
    gap: clamp(40px, 6vw, 80px);
}

.hj-cre-register__info {
    flex: 1;
    min-width: 0;
    padding-top: 8px;
}

.hj-cre-register__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--hj-mid);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.hj-cre-register__eyebrow::before {
    content: '';
    display: inline-block;
    width: 36px;
    height: 1px;
    background-color: currentColor;
    flex-shrink: 0;
}

.hj-cre-register__title {
    font-family: var(--hj-font-head);
    font-size: clamp(28px, 3.5vw, 48px);
    line-height: 1.1;
    font-weight: 700;
    color: var(--hj-dark);
    margin-bottom: 20px;
}

.hj-cre-register__desc {
    font-size: 16px;
    line-height: 1.75;
    color: var(--hj-mid);
    margin-bottom: 30px;
}

.hj-cre-register__benefits {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 36px;
}

.hj-cre-register__benefit {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--hj-dark);
    line-height: 1.45;
}
.hj-cre-register__benefit svg { flex-shrink: 0; margin-top: 1px; }

.hj-cre-register__visual svg {
    width: 100%;
    max-width: 300px;
    height: auto;
}

/* ── 9. FORM ────────────────────────────────────────────────── */

.hj-cre-form-wrapper {
    flex: 0 0 auto;
    width: clamp(300px, 44%, 480px);
    background-color: var(--hj-bg);
    box-shadow: var(--hj-shadow-lg);
}

.hj-cre-form-wrapper__inner {
    padding: clamp(28px, 4vw, 48px);
}

.hj-cre-form-wrapper__title {
    font-family: var(--hj-font-head);
    font-size: 22px;
    font-weight: 700;
    color: var(--hj-dark);
    margin-bottom: 6px;
}

.hj-cre-form-wrapper__subtitle {
    font-size: 13px;
    color: var(--hj-mid);
    line-height: 1.5;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--hj-border);
}

.hj-cre-form { display: flex; flex-direction: column; gap: 18px; }

.hj-cre-form__field { display: flex; flex-direction: column; gap: 6px; }

.hj-cre-form__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--hj-dark);
}
.hj-cre-form__label span { color: var(--hj-mid); font-weight: 400; }

.hj-cre-form__input {
    width: 100%;
    padding: 13px 16px;
    font-family: var(--hj-font-body);
    font-size: 15px;
    color: var(--hj-dark);
    background-color: var(--hj-bg);
    border: 1.5px solid var(--hj-border);
    border-radius: 0;
    outline: none;
    transition: border-color 0.2s var(--hj-ease);
    -webkit-appearance: none;
    appearance: none;
}
.hj-cre-form__input::placeholder { color: #c0c0bc; }
.hj-cre-form__input:focus { border-color: var(--hj-dark); }
.hj-cre-form__input--error { border-color: #c0392b !important; }

.hj-cre-form__error {
    font-size: 11px;
    color: #c0392b;
    min-height: 15px;
    line-height: 1.4;
}

.hj-cre-form__field--checkbox { margin-top: 4px; }

.hj-cre-form__checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    cursor: pointer;
}

.hj-cre-form__checkbox {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
}

.hj-cre-form__checkbox-custom {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--hj-border);
    background-color: var(--hj-bg);
    margin-top: 1px;
    position: relative;
    transition: border-color 0.2s, background-color 0.2s;
}
.hj-cre-form__checkbox:checked + .hj-cre-form__checkbox-custom {
    background-color: var(--hj-dark);
    border-color: var(--hj-dark);
}
.hj-cre-form__checkbox:checked + .hj-cre-form__checkbox-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -58%) rotate(45deg);
    width: 5px;
    height: 9px;
    border-right: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
}
.hj-cre-form__checkbox:focus-visible + .hj-cre-form__checkbox-custom {
    outline: 2px solid var(--hj-dark);
    outline-offset: 2px;
}

.hj-cre-form__checkbox-text {
    font-size: 13px;
    line-height: 1.55;
    color: var(--hj-mid);
}

.hj-cre-form__link {
    color: var(--hj-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}

.hj-cre-form__submit {
    padding: 17px 24px;
    font-size: 12px;
    letter-spacing: 0.12em;
    margin-top: 4px;
}

.hj-cre-form__disclaimer {
    font-size: 11px;
    line-height: 1.65;
    color: #b0b0aa;
    text-align: center;
    margin-top: -4px;
}

/* ── 10. FOOTER ─────────────────────────────────────────────── */

.hj-cre-footer {
    background-color: var(--hj-footer-bg);
    color: #ffffff;
    padding-block-start: clamp(48px, 6vw, 80px);
}

.hj-cre-footer__inner {
    max-width: var(--hj-max);
    margin-inline: auto;
    padding-inline: var(--hj-px);
    padding-block-end: clamp(44px, 5vw, 68px);
    display: flex;
    gap: clamp(32px, 4vw, 60px);
    flex-wrap: wrap;
    align-items: flex-start;
}

.hj-cre-footer__brand {
    flex: 0 0 auto;
    min-width: 175px;
    max-width: 220px;
}

.hj-cre-footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.hj-cre-footer__logo-text {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: #ffffff;
    text-transform: uppercase;
}

.hj-cre-footer__tagline {
    font-size: 12px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.38);
}

.hj-cre-footer__nav           { flex: 0 0 auto; }
.hj-cre-footer__contacts       { flex: 1; min-width: 210px; }
.hj-cre-footer__legal-links    { flex: 0 0 auto; min-width: 185px; }

.hj-cre-footer__nav-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 16px;
}

.hj-cre-footer__nav-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hj-cre-footer__nav-link {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.58);
    transition: color 0.2s;
    line-height: 1.4;
}
.hj-cre-footer__nav-link:hover { color: #ffffff; }

.hj-cre-footer__contact-list { display: flex; flex-direction: column; gap: 13px; }

.hj-cre-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.55;
}
.hj-cre-footer__contact-item svg { flex-shrink: 0; margin-top: 2px; }

.hj-cre-footer__contact-link {
    color: rgba(255, 255, 255, 0.58);
    transition: color 0.2s;
}
.hj-cre-footer__contact-link:hover { color: #ffffff; }

.hj-cre-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-block: 20px;
    padding-inline: var(--hj-px);
}

.hj-cre-footer__copy {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.05em;
    max-width: var(--hj-max);
    margin-inline: auto;
}

/* ── 11. COOKIE BANNER ──────────────────────────────────────── */

.hj-cre-cookie {
    position: fixed;
    inset-block-end: 0;
    inset-inline: 0;
    z-index: 200;
    background-color: #1a1a1a;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(100%);
    transition: transform 0.4s var(--hj-ease);
}
.hj-cre-cookie--visible { transform: translateY(0); }

.hj-cre-cookie__inner {
    max-width: var(--hj-max);
    margin-inline: auto;
    padding: 16px var(--hj-px);
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hj-cre-cookie__text {
    flex: 1;
    min-width: 200px;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.68);
}

.hj-cre-cookie__link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ── 12. THANKS PAGE ────────────────────────────────────────── */

.hj-cre-thanks {
    min-height: calc(100vh - 68px - 260px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(60px, 8vw, 120px) var(--hj-px);
    background-color: var(--hj-bg);
}

.hj-cre-thanks__inner {
    max-width: 560px;
    margin-inline: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.hj-cre-thanks__icon { flex-shrink: 0; }

.hj-cre-thanks__title {
    font-family: var(--hj-font-head);
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--hj-dark);
    letter-spacing: -0.01em;
}

.hj-cre-thanks__text {
    font-size: 16px;
    line-height: 1.75;
    color: var(--hj-mid);
    max-width: 420px;
}

.hj-cre-thanks__btn {
    margin-top: 12px;
    padding: 18px 40px;
    font-size: 13px;
    letter-spacing: 0.10em;
}

/* ── 13. LEGAL PAGES ────────────────────────────────────────── */

.hj-cre-legal {
    padding-block: clamp(48px, 6vw, 80px);
    padding-inline: var(--hj-px);
    background-color: var(--hj-bg);
}

.hj-cre-legal__inner {
    max-width: 780px;
    margin-inline: auto;
}

.hj-cre-legal__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--hj-mid);
    margin-bottom: 40px;
    transition: color 0.2s;
}
.hj-cre-legal__back:hover { color: var(--hj-dark); }

.hj-cre-legal__title {
    font-family: var(--hj-font-head);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: var(--hj-dark);
    margin-bottom: 8px;
    line-height: 1.1;
}

.hj-cre-legal__date {
    font-size: 13px;
    color: var(--hj-mid);
    margin-bottom: 44px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--hj-border);
}

.hj-cre-legal__body { display: flex; flex-direction: column; gap: 32px; }

.hj-cre-legal__section-title {
    font-family: var(--hj-font-head);
    font-size: 20px;
    font-weight: 700;
    color: var(--hj-dark);
    margin-bottom: 12px;
}

.hj-cre-legal__body p,
.hj-cre-legal__body li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--hj-mid);
}

.hj-cre-legal__body ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 20px;
    list-style: disc;
}
.hj-cre-legal__body ul li { padding-left: 6px; }

/* ── 14. RESPONSIVE ─────────────────────────────────────────── */

@media (max-width: 1024px) {
    .hj-cre-hero__visual          { width: 360px; }
    .hj-cre-strategies__list      { flex-direction: column; gap: 0; }
    .hj-cre-strategies__card      { padding-block: 26px; }
    .hj-cre-gallery__grid          {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 220px 180px 180px;
    }
    .hj-cre-gallery__item--featured {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }
}

@media (max-width: 768px) {
    .hj-cre-nav__item:not(:last-child) { display: none; }

    .hj-cre-hero__content   { flex-direction: column-reverse; gap: 32px; }
    .hj-cre-hero__visual    { width: 100%; }
    .hj-cre-hero__badge     { left: 0; bottom: -8px; }

    .hj-cre-about__inner    { flex-direction: column; }
    .hj-cre-about__visuals  { width: 100%; height: 260px; }

    .hj-cre-register__inner { flex-direction: column; }
    .hj-cre-form-wrapper    { width: 100%; }

    .hj-cre-gallery__grid   { grid-template-columns: 1fr; grid-template-rows: auto; }
    .hj-cre-gallery__item        { min-height: 200px; }
    .hj-cre-gallery__item--featured { grid-column: 1; grid-row: auto; min-height: 260px; }

    .hj-cre-footer__inner   { flex-direction: column; gap: 32px; }
}

@media (max-width: 480px) {
    .hj-cre-hero__badge {
        position: static;
        display: inline-flex;
        flex-direction: row;
        align-items: center;
        gap: 14px;
        margin-top: 20px;
    }
    .hj-cre-cookie__inner { flex-direction: column; align-items: flex-start; }
}

/* ── 15. ACCESSIBILITY ──────────────────────────────────────── */

:focus-visible {
    outline: 2px solid var(--hj-dark);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}
