.home-redesign {
    --hr-primary: var(--primary, #10B981);
    --hr-primary-dark: var(--primary-800, #065F46);
    --hr-primary-soft: var(--primary-50, #ECFDF5);
    --hr-text: #0f172a;
    --hr-muted: #64748b;
    --hr-border: #e2e8f0;
    --hr-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
    background: #fff;
    color: var(--hr-text);
}

.home-redesign .container {
    max-width: 1200px;
}

.hr-hero {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
}

.hr-hero-picture {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
}

.hr-hero-picture img {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.hr-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.46) 34%, rgba(255,255,255,0.08) 62%);
    pointer-events: none;
}

.hr-hero-overlay {
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    height: 42%;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.56));
    pointer-events: none;
}

.hr-hero .container {
    position: relative;
    z-index: 2;
}

.hr-hero-content {
    width: min(720px, 100%);
    padding: 2.4rem 0 2rem;
}

.hr-hero h1 {
    margin: 0 0 0.85rem;
    color: var(--hr-text);
    font-size: clamp(2.4rem, 5vw, 4.35rem);
    line-height: 0.98;
    letter-spacing: 0;
}

.hr-hero p {
    max-width: 640px;
    margin: 0 0 1.1rem;
    color: #26364d;
    font-size: 1.05rem;
    line-height: 1.55;
}

.hr-search {
    display: grid;
    grid-template-columns: minmax(160px, 1fr) minmax(180px, 1fr) minmax(150px, auto);
    gap: 0.55rem;
    width: min(680px, 100%);
    padding: 0.55rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.16);
    border: 1px solid rgba(226, 232, 240, 0.92);
    backdrop-filter: blur(10px);
}

.hr-search label {
    min-width: 0;
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0 0.8rem;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #eef2f7;
}

.hr-search i {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    color: var(--hr-primary);
}

.hr-search select,
.hr-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    background: transparent;
    color: var(--hr-text);
    font: inherit;
    font-size: 0.9rem;
    outline: none;
}

.hr-search button,
.hr-btn-primary,
.hr-btn-secondary {
    min-height: 52px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0 1.1rem;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.hr-search button,
.hr-btn-primary {
    border: 1px solid var(--hr-primary);
    background: linear-gradient(135deg, var(--hr-primary), #059669);
    color: #fff;
    box-shadow: 0 14px 28px rgba(16, 185, 129, 0.23);
}

.hr-btn-secondary {
    border: 1px solid rgba(16, 185, 129, 0.42);
    background: #fff;
    color: var(--hr-primary-dark);
}

.hr-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.95rem;
    color: #334155;
    font-size: 0.9rem;
    font-weight: 700;
}

.hr-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
}

.hr-benefits i {
    width: 17px;
    height: 17px;
    color: var(--hr-primary);
}

.hr-section {
    padding: 2.1rem 0;
}

.hr-section.hr-soft {
    background: linear-gradient(180deg, #fff 0%, #f7fbfa 100%);
}

.hr-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.1rem;
}

.hr-section-head h2 {
    margin: 0;
    color: var(--hr-text);
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    line-height: 1.12;
}

.hr-section-head p {
    margin: 0.28rem 0 0;
    color: var(--hr-muted);
}

.hr-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--hr-primary);
    font-weight: 900;
    white-space: nowrap;
}

.hr-link i {
    width: 16px;
}

.hr-scroll-row {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hr-scroll-row::-webkit-scrollbar {
    display: none;
}

.hr-category-row {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 0.85rem;
}

.hr-category-card {
    min-width: 0;
    display: grid;
    gap: 0.55rem;
    justify-items: center;
    padding: 0.7rem 0.55rem 0.85rem;
    border-radius: 13px;
    background: #fff;
    border: 1px solid #edf2f7;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.05);
    text-align: center;
}

.hr-category-card img {
    width: 100%;
    aspect-ratio: 1.35 / 1;
    object-fit: cover;
    border-radius: 10px;
}

.hr-category-card strong {
    min-height: 2.5em;
    color: var(--hr-text);
    font-size: 0.82rem;
    line-height: 1.25;
}

.hr-company-carousel,
.hr-district-carousel {
    position: relative;
}

.hr-company-row {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    padding: 0.1rem 0.1rem 0.75rem;
}

.hr-carousel-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 42px;
    height: 42px;
    border: 1px solid #d8e7df;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--hr-primary);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.14);
    cursor: pointer;
    transform: translateY(-50%);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.hr-carousel-arrow:hover {
    transform: translateY(-50%) scale(1.04);
}

.hr-carousel-arrow:disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

.hr-carousel-arrow i {
    width: 21px;
    height: 21px;
}

.hr-carousel-prev {
    left: -12px;
}

.hr-carousel-next {
    right: -12px;
}

.hr-company-card {
    position: relative;
    flex: 0 0 calc((100% - 3rem) / 4);
    scroll-snap-align: start;
    overflow: hidden;
    border-radius: 13px;
    background: #fff;
    border: 1px solid #e8eef4;
    box-shadow: var(--hr-shadow);
}

.hr-company-image {
    display: block;
    overflow: hidden;
    background: #e2e8f0;
}

.hr-company-image img {
    width: 100%;
    aspect-ratio: 1.85 / 1;
    display: block;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.hr-company-card:hover .hr-company-image img {
    transform: scale(1.035);
}

.hr-favorite {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--hr-primary);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
    cursor: pointer;
}

.hr-favorite i {
    width: 18px;
}

.hr-favorite.active i,
.hr-favorite .filled {
    fill: currentColor;
}

.hr-company-body {
    padding: 0.85rem;
}

.hr-company-body h3 {
    margin: 0 0 0.45rem;
    color: var(--hr-text);
    font-size: 1rem;
    line-height: 1.28;
    min-height: 2.56em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hr-company-body p {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0 0 0.45rem;
    color: var(--hr-muted);
    font-size: 0.86rem;
}

.hr-company-body p i {
    width: 15px;
    height: 15px;
}

.hr-company-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.hr-company-tags span {
    max-width: 100%;
    padding: 0.34rem 0.56rem;
    border-radius: 999px;
    background: #f1f5f9;
    color: #334155;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hr-district-row {
    display: flex;
    gap: 0.8rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    padding: 0.1rem 0.1rem 0.7rem;
}

.hr-district-card {
    flex: 0 0 104px;
    scroll-snap-align: start;
    display: grid;
    justify-items: center;
    gap: 0.45rem;
    color: var(--hr-text);
    font-weight: 800;
    font-size: 0.86rem;
}

.hr-district-card img {
    width: 100%;
    aspect-ratio: 1.2 / 1;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.hr-why-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(310px, 0.75fr);
    gap: 1.2rem;
    align-items: stretch;
}

.hr-why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
}

.hr-why-grid article {
    display: grid;
    gap: 0.35rem;
    padding: 1rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #eef2f7;
}

.hr-why-grid i {
    width: 38px;
    height: 38px;
    padding: 0.58rem;
    border-radius: 999px;
    background: var(--hr-primary-soft);
    color: var(--hr-primary);
}

.hr-why-grid strong {
    color: var(--hr-text);
    font-size: 0.92rem;
}

.hr-why-grid span {
    color: var(--hr-muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

.hr-business-cta {
    padding: 1.45rem;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--hr-primary-soft), #fff);
    border: 1px solid #d9f3ea;
}

.hr-business-cta h2 {
    margin: 0 0 0.6rem;
    font-size: 1.35rem;
    line-height: 1.15;
}

.hr-business-cta p {
    margin: 0 0 1rem;
    color: var(--hr-muted);
}

.hr-business-cta div {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.hr-guide-section {
    padding-top: 0;
}

.hr-guide-panel {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
    gap: 1.2rem;
    align-items: center;
    padding: 1.35rem;
    border-radius: 18px;
    background: linear-gradient(135deg, #fff 0%, var(--hr-primary-soft) 100%);
    border: 1px solid #d9f3ea;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
}

.hr-guide-copy span {
    display: inline-flex;
    margin-bottom: 0.55rem;
    color: var(--hr-primary-dark);
    font-size: 0.78rem;
    font-weight: 900;
}

.hr-guide-copy h2 {
    margin: 0;
    color: var(--hr-text);
    font-size: clamp(1.35rem, 2.2vw, 1.85rem);
    line-height: 1.15;
}

.hr-guide-copy p {
    margin: 0.75rem 0 0;
    color: var(--hr-muted);
    line-height: 1.6;
}

.hr-guide-event-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
}

.hr-guide-event-card {
    min-width: 0;
    display: flex;
}

.hr-guide-event-card button {
    width: 100%;
    min-height: 156px;
    height: 100%;
    display: grid;
    align-content: start;
    gap: 0.55rem;
    padding: 1rem;
    border: 1px solid #dbe7e2;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    color: inherit;
    text-align: left;
    font: inherit;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.05);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.hr-guide-event-card button:hover {
    transform: translateY(-2px);
    border-color: rgba(16, 185, 129, 0.34);
    box-shadow: 0 18px 34px rgba(16, 185, 129, 0.1);
}

.hr-guide-event-card i {
    width: 28px;
    height: 28px;
    color: var(--hr-primary);
}

.hr-guide-event-card strong {
    color: var(--hr-text);
    font-size: 1rem;
}

.hr-guide-event-card span {
    color: var(--hr-muted);
    font-size: 0.82rem;
    line-height: 1.35;
}

.hr-placeholder {
    min-height: 112px;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 1.2rem;
    border-radius: 16px;
    background: #fff;
    border: 1px dashed #cbd5e1;
    color: var(--hr-muted);
}

.hr-placeholder i {
    width: 30px;
    height: 30px;
    color: var(--hr-primary);
}

.hr-google-reviews {
    display: grid;
    gap: 1rem;
}

.hr-google-summary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 0.9rem;
    padding: 0.95rem 1rem;
    border: 1px solid #d9f3ea;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff 0%, var(--hr-primary-soft) 100%);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}

.hr-google-summary span {
    color: var(--hr-primary-dark);
    font-size: 0.78rem;
    font-weight: 900;
}

.hr-google-summary strong {
    color: var(--hr-text);
    font-size: 1.08rem;
    font-weight: 900;
}

.hr-google-summary strong em {
    color: #f5b301;
    font-style: normal;
    letter-spacing: 0;
}

.hr-google-summary small {
    color: var(--hr-muted);
    font-size: 0.88rem;
    font-weight: 700;
}

.hr-google-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.65rem 0.95rem;
    border: 1px solid #cdeee2;
    border-radius: 999px;
    background: #fff;
    color: var(--hr-primary-dark);
    font-size: 0.88rem;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.hr-google-review-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.hr-google-review-card {
    position: relative;
    min-width: 0;
    min-height: 254px;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1.05rem;
    border: 1px solid #dfe8e4;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.hr-google-review-open {
    position: absolute;
    inset: 0;
    z-index: 2;
    border: 0;
    border-radius: inherit;
    background: transparent;
    cursor: pointer;
}

.hr-google-review-stars {
    color: #f5b301;
    font-size: 0.95rem;
    letter-spacing: 0;
}

.hr-google-review-card p {
    margin: 0;
    color: var(--hr-text);
    font-size: 0.94rem;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hr-google-review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
}

.hr-google-review-author img,
.hr-google-review-avatar {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 50%;
}

.hr-google-review-author img {
    display: block;
    object-fit: cover;
    background: var(--hr-primary-soft);
}

.hr-google-review-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--hr-primary-soft);
    color: var(--hr-primary-dark);
    font-weight: 900;
}

.hr-google-review-author div {
    min-width: 0;
}

.hr-google-review-author strong,
.hr-google-review-author span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hr-google-review-author strong {
    color: var(--hr-text);
    font-size: 0.92rem;
}

.hr-google-review-author span {
    color: var(--hr-muted);
    font-size: 0.8rem;
}

.hr-google-review-modal[hidden] {
    display: none;
}

.hr-google-review-modal {
    position: fixed;
    inset: 0;
    z-index: 1600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.hr-google-review-modal-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(6px);
    cursor: pointer;
}

.hr-google-review-dialog {
    position: relative;
    z-index: 1;
    width: min(540px, calc(100vw - 2rem));
    max-height: min(78vh, 720px);
    overflow-y: auto;
    padding: 1.25rem;
    border: 1px solid #dfe8e4;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.28);
}

.hr-google-review-close {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    width: 38px;
    height: 38px;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    background: #fff;
    color: var(--hr-text);
    font: inherit;
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
}

.hr-google-review-modal-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-right: 3rem;
}

.hr-google-review-modal-avatar {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--hr-primary-soft);
    color: var(--hr-primary-dark);
    font-weight: 900;
    overflow: hidden;
}

.hr-google-review-modal-avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hr-google-review-modal-author strong,
.hr-google-review-modal-author span {
    display: block;
}

.hr-google-review-modal-author strong {
    color: var(--hr-text);
    font-size: 1rem;
}

.hr-google-review-modal-author span {
    color: var(--hr-muted);
    font-size: 0.86rem;
}

.hr-google-review-modal-stars {
    margin-top: 1rem;
    color: #f5b301;
    font-size: 1.05rem;
    letter-spacing: 0;
}

.hr-google-review-dialog p {
    margin: 0.85rem 0 0;
    color: var(--hr-text);
    font-size: 1rem;
    line-height: 1.75;
}

.hr-blog-band {
    display: grid;
    grid-template-columns: 0.95fr 1.55fr;
    gap: 1.2rem;
    align-items: center;
    padding: 1.25rem;
    border-radius: 20px;
    background: linear-gradient(90deg, #fff 0%, var(--hr-primary-soft) 100%);
    border: 1px solid #e2f4ed;
}

.hr-blog-band > div:first-child span {
    color: var(--hr-primary-dark);
    font-weight: 900;
}

.hr-blog-band h2 {
    max-width: 420px;
    margin: 0.3rem 0 1rem;
    font-size: 1.35rem;
    line-height: 1.18;
}

.hr-blog-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.hr-blog-card {
    overflow: hidden;
    border-radius: 13px;
    background: #fff;
    border: 1px solid #e6edf3;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.05);
}

.hr-blog-card img {
    width: 100%;
    aspect-ratio: 1.75 / 1;
    object-fit: cover;
    display: block;
}

.hr-blog-card strong {
    display: block;
    padding: 0.7rem;
    color: var(--hr-text);
    font-size: 0.86rem;
    line-height: 1.3;
}

.hr-mobile-bottom {
    display: none;
}

@media (max-width: 1024px) {
    .hr-hero {
        min-height: 620px;
        align-items: end;
        background-position: center bottom;
    }

    .hr-hero-picture img {
        height: 100%;
        object-fit: cover;
        object-position: 78% center;
        transform: none;
    }

    .hr-hero::before {
        background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.18) 34%, rgba(255,255,255,0.86) 70%, #fff 100%);
    }

    .hr-hero-content {
        padding-top: 12.5rem;
    }

    .hr-hero h1,
    .hr-hero p {
        color: #fff8ee;
        text-shadow: 0 2px 16px rgba(9, 18, 34, 0.42);
    }

    .hr-hero p {
        display: none;
    }

    .hr-hero h1 {
        margin-top: 3.1rem;
        margin-bottom: 1.05rem;
    }

    .hr-search {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .hr-benefits {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.7rem;
        justify-items: center;
        text-align: center;
    }

    .hr-category-row,
    .hr-company-row,
    .hr-district-row {
        display: flex;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: x mandatory;
        padding: 0.1rem 0.1rem 0.7rem;
    }

    .hr-category-card {
        flex: 0 0 112px;
        scroll-snap-align: start;
    }

    .hr-company-card {
        flex: 0 0 min(82vw, 320px);
        scroll-snap-align: start;
    }

    .hr-carousel-arrow {
        display: none;
    }

    .hr-district-card {
        flex: 0 0 94px;
        scroll-snap-align: start;
    }

    .hr-why-layout,
    .hr-guide-panel,
    .hr-blog-band {
        grid-template-columns: 1fr;
    }

    .hr-google-review-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .hr-guide-event-row {
        display: flex;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: x mandatory;
        padding: 0.1rem 0.1rem 0.7rem;
    }

    .hr-guide-event-card {
        flex: 0 0 min(72vw, 250px);
        scroll-snap-align: start;
    }

    .hr-google-review-row {
        display: flex;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: x mandatory;
        padding: 0.1rem 0.95rem 0.8rem 0.1rem;
    }

    .hr-google-review-card {
        flex: 0 0 min(86vw, 340px);
        scroll-snap-align: start;
    }
}

@media (max-width: 640px) {
    .home-redesign {
        padding-bottom: 86px;
    }

    .home-redesign .container {
        padding-inline: 1rem;
    }

    #anasayfa-kategoriler,
    #anasayfa-ilceler {
        scroll-margin-top: 86px;
    }

    .hr-hero h1 {
        font-size: 2.25rem;
    }

    .hr-hero {
        min-height: 620px;
        background-position: center bottom;
    }

    .hr-hero-picture img {
        height: 100%;
        object-fit: cover;
        object-position: 80% center;
        transform: none;
    }

    .hr-hero p {
        font-size: 0.98rem;
    }

    .hr-section {
        padding: 1.45rem 0;
    }

    .hr-guide-section {
        padding-top: 0;
    }

    .hr-guide-panel {
        margin-inline: -0.05rem;
        padding: 1rem;
        border-radius: 16px;
    }

    .hr-guide-copy p {
        font-size: 0.92rem;
    }

    .hr-guide-event-card {
        flex-basis: min(78vw, 260px);
    }

    .hr-guide-event-card button {
        min-height: 142px;
    }

    .hr-section-head {
        align-items: start;
        margin-bottom: 0.9rem;
    }

    .hr-link {
        font-size: 0.82rem;
    }

    .hr-why-grid,
    .hr-blog-row {
        grid-template-columns: 1fr;
    }

    .hr-blog-row {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .hr-blog-row::-webkit-scrollbar {
        display: none;
    }

    .hr-blog-card {
        flex: 0 0 76vw;
        scroll-snap-align: start;
    }

    .hr-mobile-bottom {
        position: fixed;
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.75rem;
        z-index: 1200;
        min-height: 64px;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        align-items: center;
        gap: 0.2rem;
        padding: 0.35rem;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid #e2e8f0;
        box-shadow: 0 20px 60px rgba(15, 23, 42, 0.18);
        backdrop-filter: blur(12px);
        opacity: 0;
        pointer-events: none;
        transform: translateY(calc(100% + 1rem));
        transition: opacity 0.22s ease, transform 0.22s ease;
    }

    .hr-mobile-bottom.is-visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .hr-mobile-bottom a,
    .hr-mobile-bottom button {
        min-width: 0;
        border: 0;
        background: transparent;
        color: #475569;
        display: grid;
        justify-items: center;
        gap: 0.2rem;
        font: inherit;
        font-size: 0.68rem;
        font-weight: 800;
        cursor: pointer;
    }

    .hr-mobile-bottom i {
        width: 20px;
        height: 20px;
    }

    .hr-mobile-bottom .hr-mobile-offer {
        width: 56px;
        height: 56px;
        justify-self: center;
        margin-top: -0.85rem;
        border-radius: 999px;
        background: linear-gradient(135deg, var(--hr-primary), #059669);
        color: #fff;
        box-shadow: 0 14px 30px rgba(16, 185, 129, 0.3);
        align-content: center;
        gap: 0.12rem;
        line-height: 1.05;
    }

    .hr-mobile-bottom .hr-mobile-offer i {
        width: 21px;
        height: 21px;
        stroke-width: 2.4;
    }

    .hr-mobile-bottom .hr-mobile-offer span {
        max-width: 44px;
        white-space: normal;
    }
}
