/* ==========================================================================
   Sibstroymet homepage redesign — nm-*
   Joomla mod_lp / landing page styles
   Breakpoints: 480 / 768 / 992 / 1200
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. Design tokens
   -------------------------------------------------------------------------- */
.nm-page {
    --nm-bg: #F8FAFC;
    --nm-bg-alt: #F4F4F5;
    --nm-bg-white: #FFFFFF;
    --nm-accent: #FA7424;
    --nm-accent-hover: #E8651A;
    --nm-text: #333333;
    --nm-text-muted: #9CA3AF;
    --nm-text-body: #64748B;
    --nm-dark: #1E293B;
    --nm-black: #000000;
    --nm-industry: #0F172A;
    --nm-border: #E5E5E5;
    --nm-border-alt: #E5E7EB;
    --nm-check: #009966;
    --nm-wrap-max: 1360px;
    --nm-pad-x: 16px;
    --nm-radius-sm: 4px;
    --nm-radius-md: 8px;
    --nm-radius-lg: 12px;
    --nm-radius-xl: 20px;
    --nm-btn-h: 52px;
    --nm-shadow-icon: 0 4px 12px rgba(15, 23, 42, 0.08);
    --nm-shadow-card: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
    --nm-font: inherit, 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --nm-transition: 0.2s ease;
}

/* --------------------------------------------------------------------------
   1. Page base — .nm-page
   -------------------------------------------------------------------------- */
.nm-page {
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
    background-color: var(--nm-bg);
    color: var(--nm-text);
    font-family: var(--nm-font);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
}

.nm-page *,
.nm-page *::before,
.nm-page *::after {
    box-sizing: border-box;
}

.nm-page img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

.nm-page a {
    color: inherit;
    text-decoration: none;
}

.nm-page ul,
.nm-page ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nm-page h1,
.nm-page h2,
.nm-page h3,
.nm-page h4 {
    margin: 0;
}

.nm-page p {
    margin: 0;
}

.nm-page .nm-hero__title {
    margin-bottom: 24px;
}

.nm-page p.nm-hero__lede {
    line-height: 29.25px;
}

@media (min-width: 768px) {
    .nm-page .nm-hero__title {
        margin-bottom: 40px;
    }
}

@media (min-width: 992px) {
    .nm-page .nm-hero__title {
        margin-bottom: 60px;
    }
}

/* Section background helpers */
.nm-page .nm-section--white {
    background-color: var(--nm-bg-white);
}

.nm-page .nm-section--alt {
    background-color: var(--nm-bg-alt);
}

.nm-page .nm-section--page {
    background-color: var(--nm-bg);
}

/* --------------------------------------------------------------------------
   2. Container — .nm-wrap
   -------------------------------------------------------------------------- */
.nm-wrap {
    width: 100%;
    max-width: var(--nm-wrap-max);
    margin-right: auto;
    margin-left: auto;
    padding-right: var(--nm-pad-x);
    padding-left: var(--nm-pad-x);
}

@media (min-width: 480px) {
    .nm-page {
        --nm-pad-x: 20px;
    }
}

@media (min-width: 768px) {
    .nm-page {
        --nm-pad-x: 28px;
    }
}

@media (min-width: 992px) {
    .nm-page {
        --nm-pad-x: 40px;
    }
}

/* --------------------------------------------------------------------------
   3. Section title — .nm-title (licenses-style orange lines)
   -------------------------------------------------------------------------- */
.nm-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    margin: 0 0 32px;
    padding: 0;
    border: none;
    background: transparent;
    text-align: center;
}

.nm-title__line {
    flex: 1 1 auto;
    min-width: 24px;
    max-width: none;
    height: 3px;
    background-color: var(--nm-accent);
}

.nm-title__text {
    flex: 0 1 auto;
    min-width: 0;
    max-width: 100%;
    margin: 0;
    padding: 0 6px;
    border: none;
    background: transparent;
    color: var(--nm-text);
    font-family: inherit;
    font-size: 24px;
    font-weight: 700;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: -1px;
    text-align: center;
    text-transform: unset;
    overflow-wrap: break-word;
}

.nm-title--white .nm-title__text {
    color: #fff;
}

.nm-title--white .nm-title__line {
    background-color: var(--nm-accent);
}

.nm-title--left {
    justify-content: flex-start;
}

.nm-title--left .nm-title__line:last-child {
    flex-grow: 1;
}

.nm-title--left .nm-title__line:first-child {
    flex: 0 0 40px;
    max-width: 40px;
}

@media (min-width: 480px) {
    .nm-title {
        gap: 24px;
    }

    .nm-title__text {
        font-size: 30px;
        padding: 0 12px;
    }
}

@media (min-width: 768px) {
    .nm-title {
        gap: 36px;
        margin-bottom: 48px;
    }

    .nm-title__text {
        font-size: 40px;
        padding: 0 16px;
    }
}

@media (min-width: 992px) {
    .nm-title {
        gap: 50px;
        margin-bottom: 56px;
    }

    .nm-title__text {
        font-size: 48px;
        line-height: 1.05;
    }
}

@media (min-width: 1200px) {
    .nm-title {
        margin-bottom: 60px;
    }

    .nm-title__text {
        font-size: 60px;
        line-height: 72px;
        letter-spacing: -1.2px;
    }
}

@media (max-width: 480px) {
    .nm-title {
        gap: 10px;
        margin-bottom: 24px;
    }

    .nm-title__line {
        min-width: 12px;
        flex: 1 1 12px;
    }

    .nm-facts--icons .nm-facts__icon,
    .nm-facts--icons .nm-facts__icon img {
        width: 44px;
        height: 44px;
    }

    .nm-hero__actions {
        flex-direction: column;
    }

    .nm-hero__actions .nm-btn {
        width: 100%;
    }

    .nm-section-cta {
        margin-top: 24px;
    }

    .nm-btn--cta {
        max-width: 100%;
    }
}

/* --------------------------------------------------------------------------
   4. Buttons — .nm-btn
   -------------------------------------------------------------------------- */
.nm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-height: var(--nm-btn-h);
    padding: 16px 28px;
    border: 1px solid transparent;
    border-radius: 0;
    font-family: inherit;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    white-space: nowrap;
    cursor: pointer;
    transition:
        background-color var(--nm-transition),
        border-color var(--nm-transition),
        color var(--nm-transition),
        box-shadow var(--nm-transition);
}

.nm-btn:hover,
.nm-btn:focus {
    text-decoration: none;
    outline: none;
}

.nm-page a.nm-btn--dark,
.nm-btn--dark {
    background-color: var(--nm-dark) !important;
    border-color: var(--nm-dark) !important;
    color: #fff !important;
}

.nm-page a.nm-btn--dark:hover,
.nm-page a.nm-btn--dark:focus,
.nm-btn--dark:hover,
.nm-btn--dark:focus {
    background-color: #0F172A !important;
    border-color: #0F172A !important;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
}

.nm-page a.nm-btn--orange,
.nm-btn--orange {
    background-color: var(--nm-accent) !important;
    border-color: var(--nm-accent) !important;
    color: #fff !important;
    font-weight: 700;
}

.nm-page a.nm-btn--orange:hover,
.nm-page a.nm-btn--orange:focus,
.nm-btn--orange:hover,
.nm-btn--orange:focus {
    background-color: var(--nm-accent-hover) !important;
    border-color: var(--nm-accent-hover) !important;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(250, 116, 36, 0.28);
}

.nm-page a.nm-btn--outline,
.nm-btn--outline {
    background-color: #fff !important;
    border-color: var(--nm-border-alt) !important;
    color: var(--nm-text) !important;
}

.nm-page a.nm-btn--outline:hover,
.nm-page a.nm-btn--outline:focus,
.nm-btn--outline:hover,
.nm-btn--outline:focus {
    background-color: #fff !important;
    border-color: #CBD5E1 !important;
    color: var(--nm-text) !important;
}

.nm-page a.nm-btn--black,
.nm-btn--black {
    background-color: var(--nm-black) !important;
    border-color: var(--nm-black) !important;
    color: #fff !important;
}

.nm-page a.nm-btn--black:hover,
.nm-page a.nm-btn--black:focus,
.nm-btn--black:hover,
.nm-btn--black:focus {
    background-color: #1a1a1a !important;
    border-color: #1a1a1a !important;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.nm-btn--hero {
    font-weight: 400;
    border-radius: 0;
}

.nm-btn--sm {
    min-height: 47px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 0;
    text-transform: lowercase;
    color: #fff !important;
}

.nm-btn--block {
    display: flex;
    width: 100%;
}

.nm-btn--cta {
    width: 100%;
    max-width: 474px;
    min-height: 54px;
    margin-right: auto;
    margin-left: auto;
    font-weight: 700;
}

@media (min-width: 480px) {
    .nm-btn {
        padding: 16px 32px;
        font-size: 16px;
    }
}

/* --------------------------------------------------------------------------
   Shared: facts row (hero / intro)
   -------------------------------------------------------------------------- */
.nm-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nm-facts__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px;
    min-width: 0;
    background-color: var(--nm-bg-alt);
    border-radius: 0;
}

.nm-facts__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: var(--nm-radius-md);
    background-color: #fff;
    box-shadow: var(--nm-shadow-icon);
}

.nm-facts__icon img {
    display: block;
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* SVG из Figma уже содержат белую плитку 52×52 */
.nm-facts--icons .nm-facts__icon {
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.nm-facts--icons .nm-facts__icon img {
    width: 52px;
    height: 52px;
}

.nm-facts__text {
    margin: 0;
    color: var(--nm-text);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.35;
    overflow-wrap: anywhere;
    word-break: normal;
}

.nm-facts__value {
    display: block;
    margin-bottom: 2px;
    color: var(--nm-text);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

@media (min-width: 480px) {
    .nm-facts {
        gap: 12px;
    }

    .nm-facts__item {
        padding: 16px;
    }

    .nm-facts__text {
        font-size: 13px;
    }
}

@media (min-width: 768px) {
    .nm-facts {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (min-width: 992px) {
    .nm-facts {
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }

    .nm-facts__item {
        padding: 32px;
        gap: 8px;
    }
}

@media (min-width: 1200px) {
    .nm-facts {
        gap: 24px;
    }
}

/* 4-item variant */
.nm-facts--4 {
    grid-template-columns: 1fr 1fr;
}

@media (min-width: 768px) {
    .nm-facts--4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* --------------------------------------------------------------------------
   Shared: checklist with green checks
   -------------------------------------------------------------------------- */
.nm-checklist {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nm-checklist__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #333333;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}

.nm-checklist__item::before {
    content: '';
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    margin-top: 4px;
    border-radius: 0;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.7188 4.28125C13.9062 4.48958 14 4.72917 14 5C14 5.27083 13.9062 5.51042 13.7188 5.71875L5.71875 13.7188C5.51042 13.9062 5.27083 14 5 14C4.72917 14 4.48958 13.9062 4.28125 13.7188L0.28125 9.71875C0.09375 9.51042 0 9.27083 0 9C0 8.72917 0.09375 8.48958 0.28125 8.28125C0.489583 8.09375 0.729167 8 1 8C1.27083 8 1.51042 8.09375 1.71875 8.28125L5 11.5938L12.2812 4.28125C12.4896 4.09375 12.7292 4 13 4C13.2708 4 13.5104 4.09375 13.7188 4.28125Z' fill='%23009966'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px 14px;
}

@media (min-width: 768px) {
    .nm-checklist--cols {
        grid-template-columns: 1fr 1fr;
        gap: 16px 32px;
    }

    .nm-checklist__item {
        font-size: 16px;
    }
}

/* --------------------------------------------------------------------------
   Shared: card grid (services / products)
   -------------------------------------------------------------------------- */
.nm-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 0 0 32px;
}

.nm-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 0;
}

.nm-card__image {
    display: block;
    width: 100%;
    height: 200px;
    flex-shrink: 0;
    overflow: hidden;
}

.nm-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.nm-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 32px;
    min-height: 0;
}

.nm-card__title {
    margin: 0;
    flex-shrink: 0;
    color: var(--nm-text);
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
}

.nm-page a.nm-card__title-link,
.nm-card__title-link {
    color: inherit;
    text-decoration: none;
    transition: color var(--nm-transition);
}

.nm-page a.nm-card__title-link:hover,
.nm-page a.nm-card__title-link:focus,
.nm-card__title-link:hover,
.nm-card__title-link:focus {
    color: #FA7424;
    text-decoration: none;
}

.nm-services .nm-card__title,
.nm-products .nm-card__title {
    min-height: 0;
    height: auto;
}

.nm-card__text {
    margin: 0;
    flex: 0 1 auto;
    color: #333333;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}

.nm-card .nm-btn--sm,
.nm-card__btn {
    width: 235px;
    max-width: 235px;
    margin-top: auto;
    align-self: flex-start;
    color: #fff !important;
}

.nm-services,
.nm-products {
    background-color: var(--nm-bg) !important;
}

.nm-services .nm-card,
.nm-products .nm-card {
    background-color: #fff;
    border: 1px solid #E5E5E5;
    height: auto;
}

@media (min-width: 992px) {
    .nm-services .nm-card__image,
    .nm-products .nm-card__image {
        height: 256px;
    }
}

.nm-cards__cta {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

@media (min-width: 480px) {
    .nm-card__image {
        height: 220px;
    }

    .nm-card__body {
        padding: 28px;
    }
}

@media (min-width: 768px) {
    .nm-cards {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .nm-card__image {
        height: 240px;
    }

    .nm-card__body {
        padding: 32px;
    }

    .nm-card__title {
        font-size: 20px;
    }

    .nm-card__text {
        font-size: 16px;
    }
}

@media (min-width: 992px) {
    .nm-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .nm-card__image {
        height: 256px;
    }
}

@media (min-width: 1200px) {
    .nm-cards {
        gap: 24px;
    }
}

/* --------------------------------------------------------------------------
   5. Hero — .nm-hero
   -------------------------------------------------------------------------- */
.nm-hero {
    padding: 32px 0 40px;
    background-color: var(--nm-bg-alt);
}

.nm-hero--alt,
.nm-hero.nm-section--alt {
    background-color: var(--nm-bg-alt);
}

.nm-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.nm-hero__content {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
}

.nm-hero__title {
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: 100%;
    color: var(--nm-text);
    font-size: clamp(26px, 8vw, 32px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    text-transform: uppercase;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.nm-hero__word,
.nm-hero__city {
    display: inline-block;
    max-width: 100%;
    white-space: nowrap;
}

.nm-hero__city {
    color: var(--nm-accent);
}

.nm-hero__lede {
    margin: 0 0 24px;
    max-width: 670px;
    color: #333333;
    font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: 0;
}

.nm-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.nm-hero__actions .nm-btn {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    white-space: normal;
}

.nm-hero__media {
    position: relative;
    z-index: 0;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    border-radius: 0;
    aspect-ratio: 580 / 471;
    background-color: var(--nm-bg-alt);
}

.nm-hero__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.nm-hero__facts {
    margin-top: 24px;
}

@media (min-width: 480px) {
    .nm-hero {
        padding: 40px 0 48px;
    }

    .nm-hero__title {
        font-size: 34px;
        letter-spacing: -1.4px;
    }

    .nm-hero__lede {
        font-size: 17px;
        line-height: 26px;
    }

    .nm-hero__actions {
        gap: 16px;
    }

    .nm-hero__actions .nm-btn {
        flex: 0 1 auto;
        white-space: nowrap;
    }
}

@media (min-width: 768px) {
    .nm-hero {
        padding: 48px 0 56px;
    }

    .nm-hero__title {
        font-size: 42px;
        letter-spacing: -2px;
        line-height: 1.1;
    }

    .nm-hero__lede {
        margin-bottom: 30px;
        font-size: 18px;
        line-height: 29.25px;
    }

    .nm-hero__facts {
        margin-top: 40px;
    }
}

@media (min-width: 992px) {
    .nm-hero {
        padding: 56px 0 64px;
    }

    .nm-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 42%);
        gap: 40px;
        align-items: stretch;
    }

    .nm-hero__content {
        display: flex;
        flex-direction: column;
        max-width: 720px;
        min-height: 471px;
        height: 100%;
        min-width: 0;
    }

    .nm-hero__title {
        font-size: 44px;
        letter-spacing: -2px;
        line-height: 1.05;
    }

    .nm-hero__actions {
        margin-top: auto;
    }

    .nm-hero__media {
        width: 100%;
        max-width: 580px;
        height: 471px;
        aspect-ratio: auto;
        justify-self: end;
    }

    .nm-hero__media img {
        width: 100%;
        height: 471px;
        object-fit: cover;
        object-position: center;
    }
}

@media (min-width: 1200px) {
    .nm-hero {
        padding: 64px 0 72px;
    }

    .nm-hero__grid {
        grid-template-columns: minmax(0, 1fr) 580px;
        gap: 56px;
    }

    .nm-hero__title {
        font-size: 56px;
        line-height: 60px;
    }

    .nm-hero__media {
        width: 580px;
        max-width: 580px;
    }

    .nm-hero__media img {
        width: 580px;
    }

    .nm-hero__content {
        gap: 0;
    }
}

/* Узкие экраны: длинные слова h1 не обрезаются */
@media (max-width: 399px) {
    .nm-hero__title {
        font-size: 24px;
        letter-spacing: -0.8px;
    }

    .nm-hero__word,
    .nm-hero__city {
        white-space: normal;
    }

    .nm-facts {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .nm-facts__item {
        padding: 12px 14px;
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

    .nm-facts--icons .nm-facts__icon,
    .nm-facts--icons .nm-facts__icon img {
        width: 40px;
        height: 40px;
    }
}

/* --------------------------------------------------------------------------
   6. Intro — .nm-intro
   -------------------------------------------------------------------------- */
.nm-intro {
    padding: 48px 0 56px;
    background-color: var(--nm-bg);
    text-align: left;
}

.nm-intro__body {
    margin: 0 0 60px;
    max-width: 100%;
    color: var(--nm-text);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
}

.nm-intro .nm-facts {
    text-align: left;
}

@media (min-width: 768px) {
    .nm-intro {
        padding: 60px 0 64px;
    }

    .nm-intro__body {
        margin-bottom: 60px;
        font-size: 18px;
        line-height: 20px;
    }
}

@media (min-width: 992px) {
    .nm-intro {
        padding: 72px 0 80px;
    }

    .nm-intro__body {
        margin-bottom: 60px;
        font-size: 19px;
        line-height: 20px;
    }
}

@media (min-width: 1200px) {
    .nm-intro {
        padding: 80px 0;
    }
}

/* --------------------------------------------------------------------------
   7. Services — .nm-services
   -------------------------------------------------------------------------- */
.nm-services {
    padding: 48px 0 56px;
    background-color: var(--nm-bg);
}

.nm-services .nm-cards {
    margin-bottom: 32px;
}

.nm-services__cta {
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

@media (min-width: 768px) {
    .nm-services {
        padding: 60px 0 72px;
    }
}

@media (min-width: 992px) {
    .nm-services {
        padding: 72px 0 88px;
    }

    .nm-services .nm-cards {
        margin-bottom: 40px;
    }
}

@media (min-width: 1200px) {
    .nm-services {
        padding: 80px 0 96px;
    }
}

/* --------------------------------------------------------------------------
   8. Capabilities — .nm-capabilities
   -------------------------------------------------------------------------- */
.nm-capabilities {
    padding: 48px 0 56px;
    background-color: var(--nm-bg);
}

.nm-capabilities__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px 70px;
    align-items: start;
}

.nm-capabilities__left {
    display: flex;
    flex-direction: column;
    gap: 38px;
}

.nm-capabilities__aside {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    min-width: 0;
}

.nm-capabilities__text {
    margin: 0;
    color: #333333;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}

.nm-capabilities__aside .nm-capabilities__lead {
    display: block;
    margin: 0;
    color: #333333;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
}

.nm-capabilities__aside .nm-checklist {
    width: 100%;
}

.nm-quality__list-title {
    margin: 0;
    color: #333333;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
}

.nm-intro__body p + p {
    margin-top: 16px;
}

.nm-projects.nm-section--alt {
    padding: 48px 0 56px;
}

.nm-page .proizvodstvo-projects__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .nm-page .proizvodstvo-projects__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .nm-page .proizvodstvo-projects__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .nm-capabilities {
        padding: 60px 0 72px;
    }

    .nm-capabilities__grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 40px 48px;
        align-items: start;
    }
}

@media (min-width: 992px) {
    .nm-capabilities {
        padding: 72px 0 88px;
    }

    .nm-capabilities__grid {
        grid-template-columns: minmax(0, 670px) minmax(0, 1fr);
        gap: 48px 70px;
        align-items: start;
    }
}

@media (min-width: 1200px) {
    .nm-capabilities {
        padding: 80px 0 96px;
    }
}

/* --------------------------------------------------------------------------
   9. Products — .nm-products
   -------------------------------------------------------------------------- */
.nm-products {
    padding: 48px 0 56px;
    background-color: var(--nm-bg);
}

.nm-products .nm-card__text {
    /* shorter product blurbs still fill card evenly */
    min-height: 0;
}

.nm-products__cta {
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

@media (min-width: 768px) {
    .nm-products {
        padding: 60px 0 72px;
    }
}

@media (min-width: 992px) {
    .nm-products {
        padding: 72px 0 88px;
    }
}

@media (min-width: 1200px) {
    .nm-products {
        padding: 80px 0 96px;
    }
}

/* --------------------------------------------------------------------------
   10. Industries — .nm-industries (+ proizvodstvo overrides)
   -------------------------------------------------------------------------- */
.nm-industries {
    padding: 48px 0 56px;
    background-color: var(--nm-bg-white);
}

.nm-industries__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.nm-industries__card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
    min-height: 240px;
    padding: 32px;
    overflow: hidden;
    border: none;
    border-bottom: 32px solid var(--nm-industry);
    border-radius: 0;
    background-color: var(--nm-industry);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: cover;
}

.nm-industries__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.92) 0%,
        rgba(15, 23, 42, 0.75) 55%,
        rgba(15, 23, 42, 0.55) 100%
    );
    pointer-events: none;
}

.nm-industries__card > * {
    position: relative;
    z-index: 1;
}

.nm-industries__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.nm-industries__icon img {
    display: block;
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.nm-industries__title {
    margin: 0 0 16px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
}

.nm-industries__text {
    margin: 0;
    color: var(--nm-text-muted);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

@media (min-width: 768px) {
    .nm-industries {
        padding: 60px 0 72px;
    }

    .nm-industries__grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (min-width: 992px) {
    .nm-industries {
        padding: 72px 0 88px;
    }

    .nm-industries__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1200px) {
    .nm-industries {
        padding: 80px 0 96px;
    }
}

/* Reused production industries block inside nm-page */
.nm-page .proizvodstvo-industries {
    padding: 48px 0 56px;
    background-color: var(--nm-bg-white);
    border-bottom: none;
}

.nm-page .proizvodstvo-industries__head {
    margin-bottom: 32px;
}

.nm-page .proizvodstvo-industries__subtitle {
    display: none;
}

.nm-page .proizvodstvo-industries__title {
    /* Prefer .nm-title in markup; fallback if plain h2 remains */
    font-size: 28px;
    letter-spacing: -1.2px;
    color: var(--nm-text);
}

.nm-page .proizvodstvo-industries__card {
    min-height: 240px;
    height: auto;
    padding: 32px;
    border: none;
    border-bottom: 32px solid var(--nm-industry);
    border-radius: 0;
    background-color: var(--nm-industry);
}

.nm-page .proizvodstvo-industries__card-visual {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    border-radius: var(--nm-radius-sm);
    background-color: #333;
}

.nm-page .proizvodstvo-industries__card-icon {
    width: 28px;
    height: 28px;
    margin: auto;
}

.nm-page .proizvodstvo-industries__card-title {
    color: #fff;
    font-size: 20px;
    line-height: 28px;
}

.nm-page .proizvodstvo-industries__card-text {
    color: var(--nm-text-muted);
}

@media (min-width: 768px) {
    .nm-page .proizvodstvo-industries {
        padding: 60px 0 72px;
    }

    .nm-page .proizvodstvo-industries__head {
        margin-bottom: 40px;
    }

    .nm-page .proizvodstvo-industries__grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (min-width: 992px) {
    .nm-page .proizvodstvo-industries {
        padding: 72px 0 88px;
    }

    .nm-page .proizvodstvo-industries__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .nm-page .proizvodstvo-industries__title {
        font-size: 48px;
    }
}

@media (min-width: 1200px) {
    .nm-page .proizvodstvo-industries {
        padding: 80px 0 96px;
    }
}

/* --------------------------------------------------------------------------
   11. Map — .nm-map (+ proizvodstvo-map overrides)
   -------------------------------------------------------------------------- */
.nm-map {
    padding: 48px 0 56px;
    background-color: var(--nm-bg);
}

.nm-map__intro {
    margin: -16px auto 32px;
    max-width: 720px;
    color: var(--nm-text-body);
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}

.nm-map__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch;
}

.nm-map__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.nm-map__text {
    margin: 0;
    color: #333333;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}

.nm-map__media {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.nm-map__media img,
.nm-map__media iframe {
    display: block;
    width: 100%;
    min-height: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    object-fit: contain;
}

.nm-map__legend {
    margin-top: auto;
    padding: 24px 28px;
    background: #fff;
    border: 1px solid var(--nm-border-alt);
    border-radius: 0;
    box-shadow: var(--nm-shadow-card);
}

.nm-map__legend-title {
    margin: 0 0 16px;
    padding: 0;
    color: var(--nm-text);
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.35px;
    text-transform: uppercase;
}

.nm-map__legend-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nm-map__legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--nm-text);
    font-size: 16px;
    line-height: 20px;
}

.nm-map__legend-item::before {
    content: '';
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    border-radius: 9999px;
    background: #FF541C;
}

.nm-map__legend-item--dark::before {
    background: #0F172A;
}

.nm-map__legend-item--gray::before {
    background: #64748B;
}

.nm-map__media {
    display: flex;
    align-items: stretch;
    height: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    overflow: hidden;
}

.nm-map__media img {
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    object-fit: contain;
    width: 100%;
    height: auto;
    min-height: 0;
}

.nm-projects-intro {
    margin: 0 auto 30px !important;
    max-width: 760px;
    color: #333333;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
}

.nm-section-cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.nm-page a.nm-link-accent,
.nm-link-accent {
    color: #FA7424 !important;
    text-decoration: none;
}

.nm-page a.nm-link-accent:hover,
.nm-page a.nm-link-accent:focus,
.nm-link-accent:hover,
.nm-link-accent:focus {
    color: #FA7424 !important;
    text-decoration: underline;
}

@media (min-width: 768px) {
    .nm-map {
        padding: 60px 0 72px;
    }

    .nm-map__intro {
        margin-bottom: 40px;
        font-size: 17px;
    }

    .nm-map__media img,
    .nm-map__media iframe {
        min-height: 0;
    }
}

@media (min-width: 992px) {
    .nm-map {
        padding: 72px 0 88px;
    }

    .nm-map__layout {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        gap: 40px;
        align-items: stretch;
    }

    .nm-map__intro {
        text-align: left;
        margin-left: 0;
        max-width: none;
    }
}

@media (min-width: 1200px) {
    .nm-map {
        padding: 80px 0 96px;
    }

    .nm-map__layout {
        gap: 56px;
    }
}

/* Reused production map */
.nm-page .proizvodstvo-map {
    padding: 48px 0 56px;
    background-color: var(--nm-bg);
}

.nm-page .proizvodstvo-map__head {
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
    padding: 0;
    border: none;
    text-align: center;
}

.nm-page .proizvodstvo-map__title {
    width: 100%;
    font-size: 28px;
    letter-spacing: -1.2px;
    color: var(--nm-text);
    text-align: center;
}

.nm-page .proizvodstvo-map__head-aside {
    display: none;
}

.nm-page .proizvodstvo-map__intro {
    margin: 0 auto 32px;
    max-width: 760px;
    color: var(--nm-text-body);
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}

.nm-page .proizvodstvo-map__layout {
    gap: 24px;
}

@media (min-width: 768px) {
    .nm-page .proizvodstvo-map {
        padding: 60px 0 72px;
    }

    .nm-page .proizvodstvo-map__intro {
        margin-bottom: 40px;
        font-size: 17px;
    }
}

@media (min-width: 992px) {
    .nm-page .proizvodstvo-map {
        padding: 72px 0 88px;
    }

    .nm-page .proizvodstvo-map__title {
        font-size: 48px;
    }

    .nm-page .proizvodstvo-map__layout {
        grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
        gap: 40px;
    }

    .nm-page .proizvodstvo-map__intro {
        text-align: left;
        margin-left: 0;
        max-width: none;
    }
}

@media (min-width: 1200px) {
    .nm-page .proizvodstvo-map {
        padding: 80px 0 96px;
    }
}

/* --------------------------------------------------------------------------
   12. Projects — .nm-page .proizvodstvo-projects
   -------------------------------------------------------------------------- */
.nm-page .proizvodstvo-projects {
    padding: 48px 0 56px;
    background-color: var(--nm-bg-alt);
}

.nm-page .proizvodstvo-projects .nm-title,
.nm-page .proizvodstvo-projects .proizvodstvo-section-head {
    margin-bottom: 16px;
}

.nm-page .proizvodstvo-projects__intro,
.nm-page .proizvodstvo-projects .nm-section-intro {
    margin: 0 auto 32px;
    max-width: 760px;
    color: var(--nm-text-body);
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}

.nm-page .proizvodstvo-projects__card {
    border-color: var(--nm-border-alt);
    background: #fff;
    box-shadow: none !important;
    overflow: hidden;
}

/* Beat global .page_product-slide { width:195px !important } if class returns */
.nm-page .proizvodstvo-projects__image,
.nm-page a.proizvodstvo-projects__image,
.nm-page a.proizvodstvo-projects__image.page_product-slide {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    height: 200px !important;
    margin: 0 !important;
    overflow: hidden;
    box-shadow: none !important;
    filter: none !important;
    background: none !important;
    object-fit: cover;
}

.nm-page .proizvodstvo-projects__image img,
.nm-page a.proizvodstvo-projects__image img {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center;
    border-radius: 0;
    box-shadow: none !important;
}

.nm-page .proizvodstvo-projects__body {
    padding: 24px;
}

@media (min-width: 768px) {
    .nm-page .proizvodstvo-projects,
    .nm-projects.nm-section--alt {
        padding: 60px 0 72px;
    }

    .nm-page .proizvodstvo-projects__intro,
    .nm-page .proizvodstvo-projects .nm-section-intro,
    .nm-projects-intro {
        margin-bottom: 40px !important;
        font-size: 17px;
    }

    .nm-page .proizvodstvo-projects__grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .nm-page .proizvodstvo-projects__image,
    .nm-page a.proizvodstvo-projects__image,
    .nm-page a.proizvodstvo-projects__image.page_product-slide {
        height: 240px !important;
    }

    .nm-page .proizvodstvo-projects__body {
        padding: 32px 32px 40px;
    }
}

@media (min-width: 992px) {
    .nm-page .proizvodstvo-projects,
    .nm-projects.nm-section--alt {
        padding: 72px 0 96px;
    }

    .nm-page .proizvodstvo-projects__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 34px;
    }

    .nm-page .proizvodstvo-projects__image,
    .nm-page a.proizvodstvo-projects__image,
    .nm-page a.proizvodstvo-projects__image.page_product-slide {
        height: 256px !important;
    }
}

@media (min-width: 1200px) {
    .nm-page .proizvodstvo-projects,
    .nm-projects.nm-section--alt {
        padding: 80px 0 96px;
    }
}

/* --------------------------------------------------------------------------
   13. Workflow — .nm-workflow
   -------------------------------------------------------------------------- */
.nm-workflow {
    padding: 48px 0 56px;
    background-color: var(--nm-bg-white);
}

.nm-workflow__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.nm-workflow__card {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px;
    background-color: #333333;
    border-radius: 0;
    color: #fff;
    min-height: 0;
}

.nm-workflow__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background-color: #fff;
    box-shadow: none;
}

.nm-workflow__icon img {
    display: none;
}

.nm-workflow__num {
    position: static;
    display: block;
    width: auto;
    height: auto;
    margin: 0;
    border-radius: 0;
    background: transparent;
    color: #FA7424;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
}

.nm-workflow__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
}

.nm-workflow__title {
    margin: 0;
    color: #FA7424;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
}

.nm-workflow__text {
    margin: 0;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
}

@media (min-width: 768px) {
    .nm-workflow {
        padding: 60px 0;
    }

    .nm-workflow__grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (min-width: 992px) {
    .nm-workflow {
        padding: 60px 0;
    }

    .nm-workflow__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1200px) {
    .nm-workflow {
        padding: 60px 0;
    }

    .nm-workflow__grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }

    .nm-workflow__card {
        padding: 20px;
        min-height: 286px;
    }
}

/* --------------------------------------------------------------------------
   14. Quality — .nm-quality (flat 2-col, no card)
   -------------------------------------------------------------------------- */
.nm-quality {
    padding: 48px 0 56px;
    background-color: var(--nm-bg);
}

.nm-quality__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}

.nm-quality__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    min-width: 0;
}

.nm-quality__text,
.nm-quality__note {
    margin: 0;
    color: #333333;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}

.nm-quality__aside {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    min-width: 0;
}

.nm-quality__aside .nm-checklist {
    width: 100%;
    max-width: 448px;
    gap: 12px;
}

.nm-quality__aside .nm-checklist__item {
    color: #333333;
    font-size: 16px;
    line-height: 20px;
}

@media (min-width: 768px) {
    .nm-quality {
        padding: 60px 0;
    }
}

@media (min-width: 992px) {
    .nm-quality {
        padding: 60px 0;
    }

    .nm-quality__grid {
        grid-template-columns: minmax(0, 617fr) minmax(0, 669fr);
        column-gap: 74px;
        row-gap: 32px;
        align-items: stretch;
    }

    .nm-quality__content {
        min-height: 231px;
        gap: 111px;
    }
}

@media (min-width: 1200px) {
    .nm-quality {
        padding: 60px 0;
    }
}

/* --------------------------------------------------------------------------
   15. About — .nm-about
   -------------------------------------------------------------------------- */
.nm-about {
    padding: 48px 0 56px;
    background-color: var(--nm-bg-white);
}

.nm-about__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.nm-about__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.nm-about__text {
    margin: 0;
    color: #333333;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}

.nm-about__text p + p {
    margin-top: 14px;
}

.nm-about__highlight {
    margin: 0;
    padding: 32px;
    border: 1px solid #FA7424;
    border-radius: 4px;
    color: #333333;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    background-color: #FFFFFF;
}

.nm-about__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.nm-about__media {
    position: relative;
    width: 100%;
    min-height: 260px;
    overflow: hidden;
    border-radius: 0;
    background-color: var(--nm-bg-alt);
    aspect-ratio: 670 / 386;
}

.nm-page .nm-about__actions .nm-btn--black {
    color: #fff !important;
}

.nm-page img {
    border-radius: 0;
}

.nm-page .proizvodstvo-btn,
.nm-page .proizvodstvo-btn--project,
.nm-page .proizvodstvo-btn--submit {
    border-radius: 0 !important;
    color: #fff !important;
}

.nm-page .proizvodstvo-projects__card,
.nm-page .proizvodstvo-projects__image,
.nm-page .proizvodstvo-feedback__box,
.nm-page .nm-industries__card {
    border-radius: 0;
}

.nm-page .nm-title__text {
    text-transform: unset !important;
}

.nm-page a.nm-btn.nm-btn--sm,
.nm-page a.nm-btn.nm-btn--orange,
.nm-page a.nm-btn.nm-btn--cta {
    color: #fff !important;
}

.nm-about__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .nm-about {
        padding: 60px 0;
    }

    .nm-about__media {
        min-height: 360px;
    }
}

@media (min-width: 992px) {
    .nm-about {
        padding: 60px 0;
    }

    .nm-about__grid {
        grid-template-columns: minmax(0, 670fr) minmax(0, 670fr);
        gap: 20px;
        align-items: center;
    }

    .nm-about__text,
    .nm-about__highlight {
        font-size: 16px;
        line-height: 20px;
    }
}

@media (min-width: 1200px) {
    .nm-about {
        padding: 60px 0;
    }
}

/* --------------------------------------------------------------------------
   16. Licenses / FAQ / Form — nm-page scoped production tweaks
   -------------------------------------------------------------------------- */

/* Section spacing shared */
.nm-page .proizvodstvo-licenses,
.nm-page .proizvodstvo-feedback,
.nm-form {
    padding: 48px 0 56px;
}

.nm-page .proizvodstvo-licenses {
    background-color: var(--nm-bg-white);
}

.nm-page .proizvodstvo-licenses .title_block,
.nm-page .proizvodstvo-licenses .nm-title {
    margin-bottom: 32px;
    padding-top: 0;
    padding-bottom: 0;
}

.nm-page .proizvodstvo-licenses .page_product-slider {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

/* FAQ — та же разметка/классы, что на /proizvodstvo-metallokonstrukciy/ (без accordion) */
.nm-page .proizvodstvo-faq {
    padding: 48px 0 56px !important;
    background: #fff;
    border-bottom: 1px solid #E5E7EB;
}

.nm-page .proizvodstvo-faq .proizvodstvo-figma-wrap--faq {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
}

.nm-page .proizvodstvo-faq__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nm-page .proizvodstvo-faq__item {
    display: block;
    margin: 0;
    padding: 24px;
    border: 1px solid #E5E7EB;
    background: #F4F4F5;
    border-radius: 0;
}

.nm-page .proizvodstvo-faq__question {
    display: block;
    margin: 0 0 8px !important;
    color: #0F172A;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0.45px;
    text-transform: uppercase;
}

.nm-page .proizvodstvo-faq__question::before,
.nm-page .proizvodstvo-faq__question::after {
    content: none !important;
    display: none !important;
}

.nm-page .proizvodstvo-faq__answer {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #64748B !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 20px !important;
    text-transform: none !important;
}


/* Form / feedback */
.nm-form,
.nm-page .proizvodstvo-feedback {
    background-color: var(--nm-bg);
}

.nm-page .proizvodstvo-feedback__box {
    border: 1px solid var(--nm-border-alt);
    border-radius: var(--nm-radius-md);
    background: #fff;
    box-shadow: var(--nm-shadow-card);
}

.nm-page .proizvodstvo-feedback__promo-title {
    color: var(--nm-text);
}

.nm-page .proizvodstvo-btn {
    background: var(--nm-accent);
    border-radius: var(--nm-radius-sm);
}

.nm-page .proizvodstvo-btn:hover {
    background: var(--nm-accent-hover);
}

.nm-page .proizvodstvo-feedback__input:focus,
.nm-page .proizvodstvo-feedback__textarea:focus {
    border-color: var(--nm-accent);
}

@media (min-width: 768px) {
    .nm-page .proizvodstvo-licenses,
    .nm-page .proizvodstvo-feedback,
    .nm-page .proizvodstvo-faq,
    .nm-form {
        padding: 60px 0 72px !important;
    }
}

@media (min-width: 992px) {
    .nm-page .proizvodstvo-licenses,
    .nm-page .proizvodstvo-feedback,
    .nm-page .proizvodstvo-faq,
    .nm-form {
        padding: 72px 0 88px !important;
    }
}

@media (min-width: 1200px) {
    .nm-page .proizvodstvo-licenses,
    .nm-page .proizvodstvo-feedback,
    .nm-page .proizvodstvo-faq,
    .nm-form {
        padding: 80px 0 96px !important;
    }
}

/* --------------------------------------------------------------------------
   Utility / section intro
   -------------------------------------------------------------------------- */
.nm-section-intro {
    margin: -8px auto 32px;
    max-width: 760px;
    color: var(--nm-text-body);
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}

@media (min-width: 768px) {
    .nm-section-intro {
        margin-bottom: 40px;
        font-size: 17px;
    }
}

.nm-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    .nm-page *,
    .nm-page *::before,
    .nm-page *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}
