﻿.nrs-section {
    --nrs-red: #E53935;
    --nrs-red-dark: #c62828;
    --nrs-black: #1a1a1a;
    --nrs-gray: #6b6b6b;
    --nrs-light-red: #fdeaea;
    --nrs-light-bg: #F8F8F8;
    --nrs-border: #ececec;
    --nrs-max: 1240px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #ffffff;
    color: var(--nrs-black);
    padding: clamp(24px, 5vw, 50px) clamp(14px, 4vw, 34px) clamp(40px, 6vw, 70px);
    box-sizing: border-box;
    overflow-x: hidden;
}

    .nrs-section * {
        box-sizing: border-box;
    }

.nrs-wrap {
    max-width: var(--nrs-max);
    margin: 0 auto;
}

/* ---------- Animations ---------- */
@keyframes nrsFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes nrsFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes nrsFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .nrs-section * {
        animation: none !important;
        transition: none !important;
    }
}

/* ---------- HERO ---------- */
.nrs-hero {
    position: relative;
    background: linear-gradient(135deg, #fff 0%, var(--nrs-light-red) 100%);
    border-radius: 24px;
    padding: clamp(28px, 5vw, 54px) clamp(24px, 5vw, 60px);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(20px, 4vw, 40px);
    align-items: center;
}

    .nrs-hero::before {
        content: "";
        position: absolute;
        width: 320px;
        height: 320px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(229,57,53,0.10) 0%, rgba(229,57,53,0) 70%);
        top: -120px;
        left: -60px;
        pointer-events: none;
    }

.nrs-eyebrow {
    color: var(--nrs-red);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    animation: nrsFadeUp 0.6s ease forwards;
    position: relative;
    z-index: 1;
}

    .nrs-eyebrow::after {
        content: "";
        display: block;
        width: 34px;
        height: 3px;
        background: var(--nrs-red);
        margin-top: 8px;
        border-radius: 2px;
    }

.nrs-heading {
    font-size: clamp(26px, 4vw, 42px);
    line-height: 1.18;
    font-weight: 800;
    margin: 0 0 14px 0;
    animation: nrsFadeUp 0.7s ease 0.05s forwards;
    opacity: 0;
    position: relative;
    z-index: 1;
}

    .nrs-heading span {
        color: var(--nrs-red);
        display: block;
    }

.nrs-hero-text {
    color: var(--nrs-gray);
    font-size: clamp(14px, 1.6vw, 15.5px);
    line-height: 1.7;
    max-width: 46ch;
    margin: 0 0 26px 0;
    animation: nrsFadeUp 0.7s ease 0.15s forwards;
    opacity: 0;
    position: relative;
    z-index: 1;
}

.nrs-search {
    display: flex;
    gap: 10px;
    max-width: 460px;
    background: #fff;
    padding: 6px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    animation: nrsFadeUp 0.7s ease 0.25s forwards;
    opacity: 0;
    position: relative;
    z-index: 1;
}

.nrs-search-input {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 10px 0 14px;
}

    .nrs-search-input svg {
        flex: 0 0 auto;
        color: var(--nrs-gray);
    }

    .nrs-search-input input {
        border: none;
        outline: none;
        font-size: 13.5px;
        width: 100%;
        background: transparent;
        padding: 12px 0;
    }

.nrs-search-btn {
    background: var(--nrs-red);
    color: #fff;
    border: none;
    padding: 0 22px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

    .nrs-search-btn:hover {
        background: var(--nrs-red-dark);
        transform: translateY(-2px);
    }

.nrs-hero-img-wrap {
    animation: nrsFadeIn 1s ease 0.2s forwards;
    opacity: 0;
    position: relative;
    z-index: 1;
}

.nrs-hero-img {
    width: 100%;
    max-width: 620px;
    height: auto;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    margin: 0 auto;
}

/* ---------- SITEMAP GRID PANEL ---------- */
.nrs-panel {
    margin-top: clamp(26px, 4vw, 40px);
    background: var(--nrs-light-bg);
    border-radius: 22px;
    padding: clamp(24px, 4vw, 44px);
}

.nrs-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    position: relative;
}

    .nrs-row + .nrs-row {
        margin-top: 40px;
    }

.nrs-connector-h {
    position: absolute;
    top: -20px;
    left: 8.3%;
    right: 8.3%;
    height: 0;
    border-top: 2px dotted #e2a3a1;
    z-index: 0;
}

.nrs-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    opacity: 0;
    animation: nrsFadeUp 0.6s ease forwards;
}

.nrs-row:nth-child(1) .nrs-col:nth-child(1) {
    animation-delay: 0.02s;
}

.nrs-row:nth-child(1) .nrs-col:nth-child(2) {
    animation-delay: 0.08s;
}

.nrs-row:nth-child(1) .nrs-col:nth-child(3) {
    animation-delay: 0.14s;
}

.nrs-row:nth-child(1) .nrs-col:nth-child(4) {
    animation-delay: 0.2s;
}

.nrs-row:nth-child(1) .nrs-col:nth-child(5) {
    animation-delay: 0.26s;
}

.nrs-row:nth-child(1) .nrs-col:nth-child(6) {
    animation-delay: 0.32s;
}

.nrs-card {
    width: 100%;
    background: #fff;
    border: 1px solid var(--nrs-border);
    border-radius: 16px;
    padding: 20px 14px;
    text-align: center;
    box-shadow: 0 8px 22px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .nrs-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 16px 32px rgba(0,0,0,0.08);
    }

.nrs-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--nrs-light-red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px auto;
    transition: transform 0.3s ease, background 0.3s ease;
}

.nrs-card:hover .nrs-icon-circle {
    background: var(--nrs-red);
    transform: scale(1.08);
}

    .nrs-card:hover .nrs-icon-circle svg path,
    .nrs-card:hover .nrs-icon-circle svg rect,
    .nrs-card:hover .nrs-icon-circle svg circle {
        stroke: #fff;
    }

.nrs-card h4 {
    font-size: 14px;
    font-weight: 800;
    margin: 0 0 6px 0;
}

.nrs-card p {
    font-size: 11.5px;
    color: var(--nrs-gray);
    line-height: 1.55;
    margin: 0;
}

.nrs-vline {
    width: 0;
    height: 22px;
    border-left: 2px dotted #e2a3a1;
    position: relative;
}

    .nrs-vline::after {
        content: "";
        position: absolute;
        bottom: -3px;
        left: 50%;
        transform: translateX(-50%);
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--nrs-red);
    }

.nrs-children {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nrs-child {
    background: #fff;
    border: 1px solid var(--nrs-border);
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 11.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

    .nrs-child::before {
        content: "";
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--nrs-red);
        flex: 0 0 auto;
    }

    .nrs-child:hover {
        transform: translateX(3px);
        border-color: rgba(229,57,53,0.35);
        background: var(--nrs-light-red);
    }

/* ---------- HELP SECTION ---------- */
.nrs-help {
    margin-top: clamp(30px, 5vw, 50px);
    background: var(--nrs-light-red);
    border-radius: 22px;
    padding: clamp(26px, 4vw, 44px);
    display: grid;
    grid-template-columns: auto 1.2fr 1fr;
    align-items: center;
    gap: clamp(20px, 3vw, 36px);
    opacity: 0;
    animation: nrsFadeUp 0.7s ease forwards;
}

.nrs-help-icon {
    animation: nrsFloat 5s ease-in-out infinite;
}

.nrs-help-text h3 {
    font-size: clamp(19px, 2.4vw, 24px);
    font-weight: 800;
    margin: 0 0 6px 0;
    position: relative;
    padding-bottom: 10px;
}

    .nrs-help-text h3::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 34px;
        height: 3px;
        background: var(--nrs-red);
    }

.nrs-help-text p {
    font-size: 13.5px;
    color: var(--nrs-gray);
    margin: 14px 0 20px 0;
    line-height: 1.65;
    max-width: 40ch;
}

.nrs-help-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--nrs-red);
    color: #fff;
    border: none;
    padding: 14px 26px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 9px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(229,57,53,0.28);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

    .nrs-help-btn:hover {
        background: var(--nrs-red-dark);
        transform: translateY(-3px);
        box-shadow: 0 14px 26px rgba(229,57,53,0.36);
    }

.nrs-feature-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.nrs-feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.nrs-feature-icon {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(0,0,0,0.05);
}

.nrs-feature strong {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 2px;
}

.nrs-feature span {
    font-size: 12px;
    color: var(--nrs-gray);
    line-height: 1.5;
}

/* ---------- BOTTOM INFO BAR ---------- */
.nrs-info-bar {
    margin-top: clamp(20px, 3vw, 28px);
    background: #fff;
    border: 1px solid var(--nrs-border);
    border-radius: 14px;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    opacity: 0;
    animation: nrsFadeUp 0.6s ease 0.1s forwards;
}

.nrs-info-icon {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--nrs-light-red);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nrs-info-bar p {
    margin: 0;
    font-size: 12.5px;
    color: var(--nrs-gray);
}

.nrs-info-bar strong {
    color: var(--nrs-red);
    font-weight: 700;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .nrs-row {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 30px;
    }

    .nrs-connector-h {
        display: none;
    }
}

@media (max-width: 980px) {
    .nrs-hero {
        grid-template-columns: 1fr;
    }

    .nrs-hero-img-wrap {
        order: -1;
    }

    .nrs-help {
        grid-template-columns: auto 1fr;
    }

        .nrs-help .nrs-feature-list {
            grid-column: 1 / -1;
            flex-direction: row;
            flex-wrap: wrap;
            margin-top: 10px;
        }

    .nrs-feature {
        flex: 1 1 220px;
    }
}

@media (max-width: 640px) {
    .nrs-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .nrs-help {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .nrs-help-icon {
        margin: 0 auto;
    }

    .nrs-help-text p {
        max-width: none;
    }

    .nrs-feature {
        text-align: left;
    }

    .nrs-info-bar {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .nrs-row {
        grid-template-columns: 1fr;
    }

    .nrs-heading {
        font-size: 22px;
    }

    .nrs-search {
        flex-direction: column;
    }

    .nrs-search-btn {
        padding: 12px 0;
    }
}
