/* Mobile polish — homepage, auth, create-cv, member home */

@keyframes hn2FloatMobIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes hn2FloatMobBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@keyframes hn2FloatMobGlow {
    0%, 100% { box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14); }
    50% { box-shadow: 0 7px 22px rgba(109, 40, 217, 0.18); }
}

@keyframes hn2FloatMobIconPop {
    from {
        opacity: 0;
        transform: scale(0.6);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes hn2FloatMobAvatar {
    from {
        opacity: 0;
        transform: translateX(-6px) scale(0.85);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes hn2HeroPhotoMobIn {
    from {
        opacity: 0;
        transform: scale(1.04);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ─── Header — logo margin + visible action buttons on mobile ─── */
@media (max-width: 900px) {
    .hn2-header__inner {
        min-height: 64px;
        padding: 0.5rem 0.85rem;
        gap: 0.5rem;
    }

    .hn2-header__logo {
        margin-left: 0.15rem;
        flex-shrink: 0;
    }

    .hn2-header__logo img {
        max-height: 38px;
    }

    .hn2-header__actions {
        gap: 0.35rem;
        flex-shrink: 0;
    }

    .hn2-header__actions .hn2-btn--outline,
    .hn2-header__actions .hn2-btn--solid {
        display: inline-flex !important;
        padding: 0.42rem 0.65rem;
        font-size: 0.62rem;
        gap: 0.3rem;
        letter-spacing: 0.02em;
    }

    .hn2-menu-toggle {
        margin-left: 0.15rem;
    }
}

@media (max-width: 480px) {
    .hn2-header__inner {
        padding: 0.45rem 0.65rem;
    }

    .hn2-header__actions .hn2-btn--outline,
    .hn2-header__actions .hn2-btn--solid {
        padding: 0.4rem 0.55rem;
        font-size: 0.58rem;
    }
}

@media (max-width: 380px) {
    .hn2-header__actions .hn2-btn--outline,
    .hn2-header__actions .hn2-btn--solid {
        padding: 0.36rem 0.42rem;
        font-size: 0.54rem;
        gap: 0.25rem;
        letter-spacing: 0;
        white-space: nowrap;
    }

    .hn2-header__actions .hn2-btn--outline i,
    .hn2-header__actions .hn2-btn--solid i {
        font-size: 0.68rem;
    }

    .hn2-header__logo img {
        max-height: 34px;
    }
}

/* ─── Shared container & safe area ─── */
@media (max-width: 767.98px) {
    .hn2-container {
        width: min(1280px, calc(100% - 1.25rem));
    }

    body.hn3-page {
        padding-top: 64px;
    }
}

/* ─── Mobile nav CTAs (fallback inside drawer — header buttons shown instead) ─── */
.hn2-nav-mobile-cta {
    display: none !important;
}

/* ─── Homepage hero ─── */
@media (max-width: 767.98px) {
    .hn2-hero {
        min-height: 0;
        padding: 1.75rem 0 2.25rem;
    }

    .hn2-hero__grid {
        gap: 1.5rem;
    }

    .hn2-hero__visual {
        position: relative;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        padding: 0.35rem 0.15rem 0;
    }

    /* Decorative gradient frame behind photo */
    .hn2-hero__visual::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 10px);
        max-width: 360px;
        aspect-ratio: 5 / 5.4;
        max-height: 300px;
        border-radius: 1.3rem;
        background: linear-gradient(145deg, rgba(232, 185, 35, 0.45), rgba(109, 40, 217, 0.35));
        z-index: 0;
        box-shadow: 0 12px 32px rgba(109, 40, 217, 0.2);
    }

    .hn2-hero__photo-wrap {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
        overflow: visible;
        margin-bottom: 0;
    }

    /* Soft gradient over bottom of photo */
    .hn2-hero__photo-wrap::before {
        content: '';
        grid-column: 1 / -1;
        grid-row: 1;
        align-self: end;
        justify-self: stretch;
        height: 72px;
        margin-bottom: 0;
        border-radius: 0 0 1.15rem 1.15rem;
        background: linear-gradient(to top, rgba(30, 16, 51, 0.5) 0%, transparent 100%);
        z-index: 2;
        pointer-events: none;
    }

    .hn2-hero__photo {
        grid-column: 1 / -1;
        grid-row: 1;
        position: relative;
        z-index: 1;
        width: 100%;
        max-height: 300px;
        aspect-ratio: 5 / 5.4;
        object-fit: cover;
        object-position: center 20%;
        border-radius: 1.15rem;
        border: 2px solid rgba(255, 255, 255, 0.2);
        box-shadow:
            0 18px 44px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.12);
        animation: hn2HeroPhotoMobIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
    }

    /* Floats → compact trust chips below image (not overlapping) */
    .hn2-float {
        position: static !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        min-width: 0;
        max-width: none;
        padding: 0.48rem 0.52rem;
        border-radius: 0.72rem;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.75);
        opacity: 0;
        transform: translateY(10px) scale(0.98);
        animation:
            hn2FloatMobIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards,
            hn2FloatMobBob 4.5s ease-in-out infinite,
            hn2FloatMobGlow 4s ease-in-out infinite;
    }

    .hn2-float-anim,
    .hn2-float-anim--4 {
        animation:
            hn2FloatMobIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards,
            hn2FloatMobBob 4.5s ease-in-out infinite,
            hn2FloatMobGlow 4s ease-in-out infinite;
    }

    .hn2-float--verified {
        animation-delay: 0.3s, 1s, 1s;
    }

    .hn2-float--match {
        animation-delay: 0.42s, 1.15s, 1.15s;
    }

    .hn2-float--today {
        animation-delay: 0.54s, 1.3s, 1.3s;
    }

    .hn2-float--success {
        animation-delay: 0.66s, 1.45s, 1.45s;
    }

    .hn2-float__icon {
        width: 26px;
        height: 26px;
        font-size: 0.68rem;
        border-radius: 7px;
        animation: hn2FloatMobIconPop 0.45s cubic-bezier(0.34, 1.4, 0.64, 1) backwards;
    }

    .hn2-float--verified .hn2-float__icon { animation-delay: 0.45s; }
    .hn2-float--match .hn2-float__icon { animation-delay: 0.57s; }

    .hn2-float--today .hn2-float__avatars span {
        opacity: 0;
        animation: hn2FloatMobAvatar 0.4s ease forwards;
    }

    .hn2-float--today .hn2-float__avatars span:nth-child(1) { animation-delay: 0.7s; }
    .hn2-float--today .hn2-float__avatars span:nth-child(2) { animation-delay: 0.78s; }
    .hn2-float--today .hn2-float__avatars span:nth-child(3) { animation-delay: 0.86s; }
    .hn2-float--today .hn2-float__avatars span:nth-child(4) { animation-delay: 0.94s; }
    .hn2-float--today .hn2-float__avatars span:nth-child(5) { animation-delay: 1.02s; }

    .hn2-float strong {
        font-size: 0.66rem;
        line-height: 1.25;
    }

    .hn2-float span,
    .hn2-float small {
        font-size: 0.56rem;
        line-height: 1.3;
    }

    .hn2-float--verified,
    .hn2-float--match {
        display: flex !important;
        align-items: center;
        gap: 0.4rem;
    }

    .hn2-float--today {
        display: block !important;
        padding: 0.45rem 0.5rem;
    }

    .hn2-float--today .hn2-float__avatars {
        margin: 0.2rem 0 0.1rem;
    }

    .hn2-float--today .hn2-float__avatars span {
        width: 20px;
        height: 20px;
        margin-left: -6px;
    }

    .hn2-float--today .hn2-float__meta {
        font-size: 0.54rem;
    }

    .hn2-float--success {
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 0.45rem 0.5rem;
    }

    .hn2-float--success span {
        font-size: 0.62rem;
        font-weight: 700;
        color: var(--hn2-teal);
        line-height: 1.3;
    }

    .hn2-float--success small,
    .hn2-float--success .hn2-float__stars {
        display: none;
    }

    .hn2-hero__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        padding-top: 1rem;
    }

    .hn2-hero-stat {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.2rem;
        padding: 0.55rem 0.35rem;
        border-radius: 0.75rem;
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hn2-hero-stat i {
        font-size: 0.95rem;
    }

    .hn2-hero-stat strong {
        font-size: 0.82rem;
    }

    .hn2-hero-stat span {
        font-size: 0.58rem;
        line-height: 1.25;
    }

    .hn2-hero__subtitle,
    .hn2-hero__desc {
        font-size: 0.92rem;
    }

    .hn2-trustbar__item span {
        font-size: 0.58rem;
        display: inline;
    }

    .hn2-search__foot {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .hn2-search__foot-left {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 767.98px) and (prefers-reduced-motion: reduce) {
    .hn2-hero__photo,
    .hn2-float,
    .hn2-float-anim,
    .hn2-float-anim--4,
    .hn2-float__icon,
    .hn2-float--today .hn2-float__avatars span {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (max-width: 380px) {
    .hn2-hero__photo {
        max-height: 260px;
    }

    .hn2-hero__visual::before {
        max-height: 260px;
    }

    .hn2-float strong {
        font-size: 0.62rem;
    }

    .hn2-float span,
    .hn2-float small,
    .hn2-float--today .hn2-float__meta {
        font-size: 0.52rem;
    }
}

@media (max-width: 480px) {
    .hn2-search__fields {
        grid-template-columns: 1fr;
    }

    .hn2-search__field--btn {
        grid-column: span 1;
    }

    .hn2-hero__title {
        font-size: clamp(1.55rem, 8vw, 2rem);
    }

    .hn2-hero__badge {
        font-size: 0.68rem;
        padding: 0.35rem 0.65rem;
    }
}

/* ─── Auth pages (login, register, create-cv, home) ─── */
@media (max-width: 767.98px) {
    .auth-hn3-scene,
    .mh-page-scene,
    .cv-page-scene {
        padding: 1rem 0 2.5rem;
    }

    .auth-hn3-card {
        border-radius: 18px;
    }

    .auth-hn3-promo {
        padding: 1.35rem 1.15rem 1rem;
    }

    .auth-hn3-promo__title {
        font-size: 1.35rem;
        margin-bottom: 0.65rem;
    }

    .auth-hn3-promo__lead {
        font-size: 0.88rem;
        margin-bottom: 0.5rem;
    }

    .auth-hn3-promo__bn {
        display: none;
    }

    .auth-hn3-promo__stats {
        gap: 0.65rem;
        margin-bottom: 0.75rem;
    }

    .auth-hn3-promo__stats strong {
        font-size: 1.1rem;
    }

    .auth-hn3-form-panel {
        padding: 1.25rem 1rem 1.5rem;
    }

    .auth-hn3-form-head__title {
        font-size: 1.15rem;
    }

    .auth-hn3-trust {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
        font-size: 0.75rem;
    }

    .auth-hn3-submit {
        min-height: 48px;
        font-size: 0.9rem;
    }

    .auth-hn3-field-row {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .auth-hn3-promo__stats {
        display: none;
    }

    .auth-hn3-promo__steps {
        display: none;
    }

    .auth-hn3-switch {
        flex-direction: column;
        gap: 0.5rem;
    }

    .auth-hn3-switch__btn {
        width: 100%;
    }
}

/* ─── Create CV ─── */
@media (max-width: 767.98px) {
    .cv-page-wrap {
        gap: 0.65rem;
    }

    .cv-page-card {
        border-radius: 16px;
    }

    .cv-page-card__body {
        padding: 1rem 1rem 1.15rem;
    }

    .cv-page-step-head {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .cv-profile-grid {
        grid-template-columns: 1fr !important;
    }

    .mf-gender-pills {
        grid-template-columns: 1fr 1fr;
    }

    .mf-cat-chips {
        gap: 0.4rem;
    }

    .mf-cat-chip__face {
        font-size: 0.72rem;
        padding: 0.35rem 0.55rem;
    }
}

@media (max-width: 520px) {
    /* Create CV journey stays horizontal — compact sizing only */
    .cv-journey--slim .cv-journey__track {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: flex-start;
        max-width: 100%;
        gap: 0;
    }

    .cv-journey__cell {
        flex: 1 1 0;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        min-width: 0;
        width: auto;
        gap: 0.25rem;
        padding: 0;
        background: transparent;
        border: none;
    }

    .cv-journey__cell--current {
        background: transparent;
        border: none;
    }

    .cv-journey__label {
        max-width: 100%;
        text-align: center;
        font-size: 0.52rem;
    }

    .cv-journey--slim .cv-journey__connector {
        display: flex;
    }

    .cv-journey--slim .hn2-how__icon-box {
        width: 34px;
        height: 34px;
        flex-shrink: 0;
    }

    .cv-upload-drop,
    .cv-upload-drop--compact {
        min-height: 140px;
        padding: 1rem;
    }

    .cv-upload-btn--compact {
        width: 100%;
    }
}

/* ─── Member home (/home) ─── */
@media (max-width: 767.98px) {
    .mh-hero {
        margin-bottom: 1.25rem;
    }

    .mh-hero__title {
        font-size: clamp(1.45rem, 6vw, 1.85rem);
    }

    .mh-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .mh-card {
        padding: 1.1rem 1.1rem 1rem;
        border-radius: 16px;
    }

    .mh-card__title {
        font-size: 1.05rem;
    }

    .mh-card__desc {
        font-size: 0.85rem;
    }

    .mh-card__icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .mh-alert {
        font-size: 0.85rem;
        padding: 0.75rem 0.9rem;
    }

    .mh-actions {
        margin-top: 1.75rem;
    }

    .mh-btn-logout {
        width: 100%;
        justify-content: center;
        min-height: 44px;
    }

    .mh-form-card__inner {
        padding: 1.15rem 1rem;
    }

    .mh-settings__btn {
        width: 100%;
        align-self: stretch;
    }
}

@media (max-width: 480px) {
    .mh-card--cta .mh-card__desc {
        font-size: 0.82rem;
    }
}

/* ─── Homepage — How it works (mobile) ─── */
@media (max-width: 767.98px) {
    body.hn3-page .hn2-how {
        padding: 3rem 0 3.5rem;
        overflow: visible;
    }

    body.hn3-page .hn2-how__flow {
        overflow: visible;
        margin-bottom: 1.75rem;
    }

    body.hn3-page .hn2-how__flow-track {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        max-width: none;
        width: 100%;
        margin-bottom: 0;
        padding: 14px 0.25rem 0.5rem;
        overflow: visible;
        gap: 0;
    }

    body.hn3-page .hn2-how__icon-cell {
        flex: 0 0 auto;
        padding-top: 2px;
    }

    body.hn3-page .hn2-how__icon-box {
        width: 46px;
        height: 46px;
        font-size: 0.88rem;
    }

    body.hn3-page .hn2-how__icon-num {
        top: -6px;
        right: -6px;
        font-size: 0.5rem;
        width: 1rem;
        height: 1rem;
        border-width: 1.5px;
    }

    body.hn3-page .hn2-how__connector {
        flex: 0 0 18px;
        width: 18px;
        height: auto;
        min-width: 14px;
        max-width: 22px;
        flex-direction: row;
        padding: 0;
    }

    body.hn3-page .hn2-how__connector-line {
        width: 100%;
        height: 2px;
        flex: 1;
        transform: scaleX(0);
        transform-origin: left center;
    }

    body.hn3-page .hn2-how.is-animated .hn2-how__connector-line {
        animation-name: hn2ConnDraw;
    }

    body.hn3-page .hn2-how__connector-arrow {
        transform: translateX(-2px);
    }

    body.hn3-page .hn2-how.is-animated .hn2-how__connector-arrow {
        animation-name: hn2ArrowIn;
    }

    body.hn3-page .hn2-how__connector-arrow i {
        transform: rotate(0deg);
        font-size: 0.5rem;
    }

    body.hn3-page .hn2-how__summaries {
        display: none;
    }

    body.hn3-page .hn2-how__cards {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.65rem;
        margin-bottom: 2rem;
        padding: 0;
        overflow: visible;
    }

    body.hn3-page .hn2-how__card {
        flex: unset;
        width: auto;
        min-width: 0;
        scroll-snap-align: unset;
        padding: 0.8rem 0.65rem 0.65rem;
        border-radius: 0.9rem;
        overflow: visible;
    }

    body.hn3-page .hn2-how__card-list {
        font-size: 0.68rem;
        line-height: 1.45;
        gap: 0.4rem;
        margin-bottom: 0.65rem;
    }

    body.hn3-page .hn2-how__card-list li {
        gap: 0.35rem;
        margin-bottom: 0;
        min-width: 0;
        word-break: break-word;
        hyphens: auto;
    }

    body.hn3-page .hn2-how__check {
        flex-shrink: 0;
        width: 0.95rem;
        height: 0.95rem;
        font-size: 0.42rem;
    }

    body.hn3-page .hn2-how__card-foot {
        font-size: 0.62rem;
        margin-top: 0.35rem;
        padding-top: 0.4rem;
        flex-wrap: wrap;
        gap: 0.3rem;
    }

    body.hn3-page .hn2-how__cta-actions {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.65rem;
    }

    body.hn3-page .hn2-how__btn {
        width: auto;
        flex: 1 1 auto;
        min-width: min(100%, 200px);
        font-size: 0.82rem;
        padding: 0.65rem 1rem;
    }
}

@media (max-width: 380px) {
    body.hn3-page .hn2-how__icon-box {
        width: 40px;
        height: 40px;
        font-size: 0.78rem;
    }

    body.hn3-page .hn2-how__connector {
        flex: 0 0 12px;
        width: 12px;
        max-width: 14px;
    }

    body.hn3-page .hn2-how__card-list {
        font-size: 0.62rem;
    }
}

/* ─── Footer — mobile layout ─── */
@media (max-width: 767.98px) {
    body.hn3-page .hn2-footer__wa {
        padding: 1.15rem 0;
    }

    body.hn3-page .hn2-footer__wa-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    body.hn3-page .hn2-footer__wa-text {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        gap: 0.65rem;
    }

    body.hn3-page .hn2-footer__wa-copy {
        align-items: center;
        text-align: center;
    }

    body.hn3-page .hn2-footer__wa-copy span {
        max-width: 280px;
    }

    body.hn3-page .hn2-footer__wa-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        color: #fff;
        min-height: 48px;
    }

    body.hn3-page .hn2-footer__wa-btn-label {
        color: #fff;
        font-weight: 700;
    }

    body.hn3-page .hn2-footer__main {
        padding: 2.25rem 0 1.25rem;
    }

    body.hn3-page .hn2-footer__grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.75rem 1.25rem;
        text-align: left;
    }

    body.hn3-page .hn2-footer__brand {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    body.hn3-page .hn2-footer__seal-wrap {
        margin-left: auto;
        margin-right: auto;
        width: 72px;
        height: 72px;
        margin-bottom: 0.85rem;
    }

    body.hn3-page .hn2-footer__brand-head {
        justify-content: center;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    body.hn3-page .hn2-footer__brand-desc,
    body.hn3-page .hn2-footer__brand-bn {
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
    }

    body.hn3-page .hn2-footer__contact-list {
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    body.hn3-page .hn2-footer__contact-list li {
        align-items: flex-start;
        gap: 0.55rem;
    }

    body.hn3-page .hn2-footer__contact-list a,
    body.hn3-page .hn2-footer__contact-list span {
        word-break: break-word;
    }

    body.hn3-page .hn2-footer__social-glass {
        justify-content: center;
        margin: 0.25rem auto 0;
    }

    body.hn3-page .hn2-footer__col-title {
        margin-bottom: 0.75rem;
        font-size: 0.82rem;
    }

    body.hn3-page .hn2-footer__links {
        gap: 0.4rem;
    }

    body.hn3-page .hn2-footer__links a {
        font-size: 0.78rem;
        line-height: 1.4;
    }

    body.hn3-page .hn2-footer__newsletter {
        padding: 1.5rem 0;
    }

    body.hn3-page .hn2-footer__newsletter-inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 1rem;
    }

    body.hn3-page .hn2-footer__newsletter-text h4 {
        font-size: 1rem;
    }

    body.hn3-page .hn2-footer__newsletter-text p {
        font-size: 0.82rem;
    }

    body.hn3-page .hn2-footer__subscribe {
        width: 100%;
        max-width: none;
        min-width: 0;
    }

    body.hn3-page .hn2-footer__subscribe-row {
        flex-direction: column;
        border-radius: 12px;
    }

    body.hn3-page .hn2-footer__subscribe-row input {
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
        border-radius: 12px 12px 0 0;
    }

    body.hn3-page .hn2-footer__subscribe-row button {
        width: 100%;
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
        border-radius: 0 0 12px 12px;
    }

    body.hn3-page .hn2-footer__bottom {
        padding: 1.1rem 0 1.5rem;
    }

    body.hn3-page .hn2-footer__bottom p {
        font-size: 0.75rem;
        line-height: 1.55;
        padding: 0 0.5rem;
    }
}

@media (max-width: 420px) {
    body.hn3-page .hn2-footer__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    body.hn3-page .hn2-footer__col {
        padding-bottom: 0.25rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    body.hn3-page .hn2-footer__col:last-child {
        border-bottom: none;
    }
}

/* ─── Premium mobile polish ─── */
@media (max-width: 767.98px) {
    body.hn3-page .hn2-hero__badge {
        backdrop-filter: blur(8px);
    }

    body.hn3-page .hn2-search {
        border-radius: 1.15rem;
    }

    body.hn3-page .hn2-cat-card {
        border-radius: 1rem;
    }

    body.hn3-page .hn2-members__card {
        border-radius: 1rem;
    }
}

@media (max-width: 600px) {
    body.hn3-page .hn2-trustbar__item span {
        display: inline;
        font-size: 0.52rem;
    }
}
