:root {
    --nm-gold: #c28c08;
    --nm-gold-dark: #8a6200;
    --nm-gold-soft: #fff7e7;
    --nm-ink: #17202a;
    --nm-muted: #697586;
    --nm-soft: #fbfaf7;
    --nm-line: rgba(23, 32, 42, 0.1);
    --nm-gold-line: rgba(194, 140, 8, 0.24);
    --nm-shadow: 0 24px 70px rgba(23, 32, 42, 0.12);
}

* {
    letter-spacing: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--nm-ink);
    background: #fff;
}

a,
a:hover {
    text-decoration: none;
}

.nm-container {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
}

.nm-site-header {
    position: relative;
    z-index: 20;
    width: 100%;
    padding: 0;
    background: #fff;
    border-bottom: 1px solid rgba(23, 32, 42, 0.08);
    box-shadow: 0 10px 28px rgba(23, 32, 42, 0.06);
}

.nm-site-header .nm-navbar {
    min-height: auto;
    padding: 14px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.nm-brand {
    display: inline-flex;
    align-items: center;
    gap: 0;
    margin: 0;
    color: var(--nm-ink) !important;
    font-weight: 900;
    padding: 2px;
    border-radius: 18px;
    transition: background 0.22s ease;
}

.nm-brand:hover {
    background: rgba(194, 140, 8, 0.08);
}

.nm-brand-mark {
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: linear-gradient(145deg, #fffdf7, var(--nm-gold-soft));
    border: 1px solid var(--nm-gold-line);
    box-shadow: 0 12px 24px rgba(194, 140, 8, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nm-brand:hover .nm-brand-mark {
    transform: rotate(-4deg) scale(1.04);
    box-shadow: 0 16px 30px rgba(194, 140, 8, 0.24);
}

.nm-brand-mark img {
    max-width: 54px;
    max-height: 54px;
}

.nm-nav-links {
    align-items: center;
    gap: 8px;
}

.nm-site-header .nav-link {
    position: relative;
    padding: 11px 16px !important;
    border-radius: 999px;
    color: #475467 !important;
    font-size: 15px;
    font-weight: 900;
    transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nm-site-header .nav-link:hover,
.nm-site-header .nav-item.active .nav-link {
    color: #fff !important;
    background: var(--nm-gold);
    box-shadow: 0 10px 22px rgba(194, 140, 8, 0.2);
}

.nm-header-cta,
.nm-btn-primary {
    color: #fff !important;
    background: var(--nm-gold) !important;
    box-shadow: 0 16px 32px rgba(194, 140, 8, 0.25);
}

.nm-header-cta {
    min-height: 44px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 24px !important;
    border: 0 !important;
    border-radius: 16px !important;
    font-weight: 900;
    position: relative;
    overflow: hidden;
}

.nm-header-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
    transform: translateX(-120%);
    transition: transform 0.5s ease;
}

.nm-header-cta:hover::after {
    transform: translateX(120%);
}

.nm-header-cta:hover,
.nm-btn-primary:hover {
    color: #fff !important;
    background: var(--nm-gold-dark) !important;
    transform: translateY(-2px);
}

.nm-menu-toggle {
    width: 46px;
    height: 46px;
    display: inline-grid;
    place-items: center;
    gap: 4px;
    padding: 10px !important;
    border: 1px solid var(--nm-gold-line) !important;
    border-radius: 15px;
    background: var(--nm-gold-soft);
}

.nm-menu-line {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 99px;
    background: var(--nm-ink);
}

.nm-page {
    overflow: hidden;
    background: #fff;
}

.nm-hero,
.nm-inner-hero {
    position: relative;
    padding: 92px 0 90px;
    background:
        radial-gradient(circle at 15% 20%, rgba(194, 140, 8, 0.18), transparent 28%),
        radial-gradient(circle at 90% 8%, rgba(37, 99, 235, 0.08), transparent 23%),
        linear-gradient(135deg, #fff 0%, #fff8ea 52%, #f7fbff 100%);
}

.nm-inner-hero {
    padding-bottom: 80px;
    text-align: center;
}

.nm-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 60px;
    align-items: center;
}

.nm-pill {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 10px 16px;
    border: 1px solid var(--nm-gold-line);
    border-radius: 999px;
    background: #fff;
    color: var(--nm-gold-dark);
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(194, 140, 8, 0.1);
}

.nm-hero h1,
.nm-inner-hero h1 {
    max-width: 830px;
    margin: 24px 0 18px;
    color: var(--nm-ink);
    font-size: clamp(42px, 6vw, 80px);
    line-height: 0.98;
    font-weight: 900;
}

.nm-inner-hero h1 {
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(38px, 5vw, 68px);
}

.nm-hero p,
.nm-inner-hero p {
    max-width: 710px;
    color: var(--nm-muted);
    font-size: 18px;
    line-height: 1.8;
}

.nm-inner-hero p {
    margin: 0 auto;
}

.nm-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.nm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.nm-btn-ghost {
    color: var(--nm-ink);
    background: #fff;
    border: 1px solid var(--nm-line);
}

.nm-btn-ghost:hover {
    color: var(--nm-ink);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(23, 32, 42, 0.1);
}

.nm-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 36px;
}

.nm-metrics div,
.nm-service-card,
.nm-value-grid article,
.nm-contact-panel,
.nm-contact-info article,
.nm-review-card,
.nm-footer-card {
    border: 1px solid var(--nm-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(23, 32, 42, 0.07);
}

.nm-metrics div {
    padding: 18px;
}

.nm-metrics strong {
    display: block;
    color: var(--nm-ink);
    font-size: 29px;
    line-height: 1;
}

.nm-metrics span {
    display: block;
    margin-top: 7px;
    color: var(--nm-muted);
    font-weight: 800;
}

.nm-hero-visual {
    position: relative;
    min-height: 590px;
    display: grid;
    place-items: center;
}

.nm-hero-visual::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 32px;
    background: linear-gradient(145deg, var(--nm-gold-soft), #fff, #eef5ff);
    border: 1px solid var(--nm-gold-line);
    transform: rotate(-7deg);
    box-shadow: var(--nm-shadow);
    animation: nmPulse 5s ease-in-out infinite;
}

.nm-hero-visual img {
    position: relative;
    z-index: 2;
    max-height: 570px;
    width: auto;
    filter: drop-shadow(0 30px 46px rgba(23, 32, 42, 0.22));
    animation: nmFloat 4.5s ease-in-out infinite;
}

.nm-orbit-card {
    position: absolute;
    z-index: 3;
    padding: 13px 16px;
    border: 1px solid var(--nm-gold-line);
    border-radius: 999px;
    background: #fff;
    color: var(--nm-ink);
    font-weight: 900;
    box-shadow: 0 18px 38px rgba(23, 32, 42, 0.12);
}

.nm-orbit-card-one {
    left: 4px;
    top: 92px;
}

.nm-orbit-card-two {
    right: 8px;
    bottom: 120px;
}

.nm-section {
    padding: 94px 0;
}

.nm-soft-section,
.nm-split-section,
.nm-reviews-section {
    background: var(--nm-soft);
}

.nm-section-head {
    max-width: 780px;
    margin: 0 auto 44px;
    text-align: center;
}

.nm-section-head span,
.nm-mini-title,
.nm-cta-band span,
.nm-newsletter span {
    color: var(--nm-gold-dark);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.nm-section-head h2,
.nm-split-copy h2,
.nm-about-copy h2,
.nm-contact-panel h2,
.nm-cta-band h2,
.nm-newsletter h2 {
    margin: 10px 0 14px;
    color: var(--nm-ink);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    font-weight: 900;
}

.nm-section-head p,
.nm-split-copy p,
.nm-about-copy p,
.nm-cta-band p,
.nm-contact-info p {
    color: var(--nm-muted);
    font-size: 17px;
    line-height: 1.75;
}

.nm-service-grid,
.nm-value-grid,
.nm-review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.nm-service-card,
.nm-value-grid article,
.nm-review-card {
    padding: 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.nm-service-card:hover,
.nm-value-grid article:hover,
.nm-review-card:hover,
.nm-contact-info article:hover,
.nm-footer-card:hover {
    transform: translateY(-8px);
    border-color: var(--nm-gold-line);
    box-shadow: 0 28px 60px rgba(23, 32, 42, 0.12);
}

.nm-service-card img {
    width: 56px;
    height: 56px;
    padding: 12px;
    border-radius: 16px;
    background: linear-gradient(145deg, var(--nm-gold), #e8bc54);
    box-shadow: 0 14px 28px rgba(194, 140, 8, 0.2);
}

.nm-service-card h3,
.nm-value-grid h3,
.nm-timeline h3,
.nm-contact-info span,
.nm-footer-card h3 {
    margin: 20px 0 10px;
    color: var(--nm-ink);
    font-size: 21px;
    font-weight: 900;
}

.nm-service-card p,
.nm-value-grid p,
.nm-timeline p,
.nm-review-card p,
.nm-footer-card p,
.nm-footer-card a,
.nm-footer-card li {
    color: var(--nm-muted);
    line-height: 1.65;
}

.nm-split,
.nm-about-grid,
.nm-contact-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
    gap: 60px;
    align-items: center;
}

.nm-device-showcase,
.nm-about-media {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 450px;
}

.nm-device-showcase::before,
.nm-about-media::before {
    content: "";
    position: absolute;
    width: min(430px, 92%);
    aspect-ratio: 1;
    border-radius: 28px;
    background: linear-gradient(145deg, var(--nm-gold-soft), #fff, #eef5ff);
    border: 1px solid var(--nm-gold-line);
    transform: rotate(4deg);
}

.nm-device-showcase img,
.nm-about-media img {
    position: relative;
    max-width: min(88%, 390px);
    filter: drop-shadow(0 24px 34px rgba(23, 32, 42, 0.16));
}

.nm-check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.nm-check-grid div {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--nm-line);
    border-radius: 14px;
    background: #fff;
    color: var(--nm-ink);
    font-weight: 900;
}

.nm-check-grid i,
.nm-timeline span {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--nm-gold);
    box-shadow: 0 0 0 6px rgba(194, 140, 8, 0.12);
}

.nm-cta-band,
.nm-newsletter {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    padding: 42px;
    border: 1px solid var(--nm-gold-line);
    border-radius: 24px;
    background:
        radial-gradient(circle at 90% 12%, rgba(194, 140, 8, 0.16), transparent 26%),
        linear-gradient(135deg, #fff, #fff8e8 58%, #f4f8ff);
    box-shadow: var(--nm-shadow);
}

.nm-store-badge,
.nm-footer-store {
    display: inline-block;
    padding: 8px;
    border: 1px solid var(--nm-line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 16px 30px rgba(23, 32, 42, 0.08);
}

.nm-store-badge img,
.nm-footer-store img {
    display: block;
    width: 180px;
    max-width: 100%;
}

.nm-review-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.nm-review-card {
    position: relative;
    min-height: 230px;
}

.nm-review-card::before {
    content: "\201C";
    position: absolute;
    top: 10px;
    right: 20px;
    color: rgba(194, 140, 8, 0.16);
    font-size: 62px;
    font-weight: 900;
}

.nm-stars {
    color: var(--nm-gold);
    font-weight: 900;
    margin-bottom: 14px;
}

.nm-person {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid var(--nm-line);
}

.nm-person b {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--nm-gold);
    color: #fff;
}

.nm-person strong {
    color: var(--nm-ink);
}

.nm-value-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.nm-value-grid strong {
    color: var(--nm-gold);
    font-size: 28px;
    font-weight: 900;
}

.nm-timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.nm-timeline div {
    padding: 28px;
    border: 1px solid var(--nm-line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(23, 32, 42, 0.06);
}

.nm-contact-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.nm-contact-panel,
.nm-contact-info article {
    padding: 30px;
}

.nm-contact-form {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.nm-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.nm-contact-form input,
.nm-contact-form textarea,
.nm-newsletter input {
    width: 100%;
    min-height: 52px;
    padding: 13px 15px;
    border: 1px solid var(--nm-line);
    border-radius: 14px;
    background: #fff;
    color: var(--nm-ink);
}

.nm-contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.nm-contact-info {
    display: grid;
    gap: 16px;
}

.nm-contact-info span {
    display: block;
    margin: 0 0 8px;
    color: var(--nm-gold-dark);
    font-size: 13px;
    text-transform: uppercase;
}

.nm-newsletter-wrap {
    padding: 70px 0 0;
    background: #fff;
}

.nm-newsletter form {
    display: flex;
    gap: 10px;
}

.nm-newsletter button {
    min-height: 52px;
    padding: 0 22px;
    border: 0;
    border-radius: 14px;
    background: var(--nm-gold);
    color: #fff;
    font-weight: 900;
}

.nm-footer {
    padding: 70px 0 0;
    background: var(--nm-soft);
}

.nm-footer-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr 0.8fr 0.85fr;
    gap: 18px;
}

.nm-footer-card {
    padding: 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nm-footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.nm-footer-logo img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.nm-footer-logo strong {
    color: var(--nm-ink);
    font-size: 22px;
}

.nm-socials {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.nm-socials a {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--nm-gold-soft);
    color: var(--nm-gold-dark);
    font-weight: 900;
}

.nm-footer-card ul {
    padding: 0;
    margin: 0;
}

.nm-footer-card li {
    list-style: none;
    margin-bottom: 10px;
}

.nm-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 34px;
    padding: 24px 0;
    border-top: 1px solid var(--nm-line);
}

.nm-footer-bottom p {
    margin: 0;
    color: var(--nm-muted);
}

.nm-footer-bottom a {
    color: var(--nm-gold-dark);
    font-weight: 900;
}

.nm-floating-actions {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.nm-floating-whatsapp,
#movetop {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 18px;
    color: #fff;
    font-weight: 900;
    transition: transform 0.22s ease, background 0.22s ease;
}

.nm-floating-whatsapp {
    background: #19b86a;
    box-shadow: 0 16px 32px rgba(25, 184, 106, 0.26);
}

.nm-floating-whatsapp svg {
    width: 29px;
    height: 29px;
    fill: currentColor;
}

.nm-floating-whatsapp:hover {
    color: #fff;
    background: #128b50;
    transform: translateY(-4px);
}

#movetop {
    display: none;
    background: var(--nm-gold);
    font-size: 24px;
    box-shadow: 0 16px 32px rgba(194, 140, 8, 0.28);
}

#movetop span {
    display: block;
    line-height: 1;
    transform: translateY(-1px);
}

#movetop:hover {
    background: var(--nm-gold-dark);
    transform: translateY(-4px);
}

.nm-reveal,
.nm-service-card,
.nm-review-card,
.nm-value-grid article,
.nm-timeline div,
.nm-contact-info article,
.nm-footer-card {
    animation: nmReveal 0.75s ease both;
}

.nm-service-card:nth-child(2),
.nm-review-card:nth-child(2),
.nm-value-grid article:nth-child(2),
.nm-timeline div:nth-child(2) {
    animation-delay: 0.1s;
}

.nm-service-card:nth-child(3),
.nm-review-card:nth-child(3),
.nm-value-grid article:nth-child(3),
.nm-timeline div:nth-child(3) {
    animation-delay: 0.2s;
}

.nm-review-card:nth-child(4),
.nm-value-grid article:nth-child(4),
.nm-timeline div:nth-child(4) {
    animation-delay: 0.3s;
}

@keyframes nmReveal {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes nmFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes nmPulse {
    0%, 100% {
        transform: scale(1) rotate(-7deg);
    }
    50% {
        transform: scale(1.025) rotate(-5deg);
    }
}

@media (max-width: 991px) {
    .nm-site-header .navbar-collapse {
        margin-top: 14px;
        padding: 12px;
        border: 1px solid var(--nm-gold-line);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 18px 42px rgba(23, 32, 42, 0.12);
    }

    .nm-nav-links {
        align-items: stretch;
        gap: 10px;
    }

    .nm-header-cta {
        width: 100%;
    }

    .nm-hero-grid,
    .nm-split,
    .nm-about-grid,
    .nm-contact-grid,
    .nm-cta-band,
    .nm-newsletter {
        grid-template-columns: 1fr;
    }

    .nm-service-grid,
    .nm-value-grid,
    .nm-review-grid,
    .nm-timeline,
    .nm-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .nm-brand-mark {
        width: 58px;
        height: 58px;
    }

    .nm-brand-mark img {
        max-width: 46px;
        max-height: 46px;
    }

    .nm-hero,
    .nm-inner-hero {
        padding-top: 72px;
    }

    .nm-metrics,
    .nm-service-grid,
    .nm-value-grid,
    .nm-review-grid,
    .nm-timeline,
    .nm-footer-grid,
    .nm-form-row,
    .nm-check-grid {
        grid-template-columns: 1fr;
    }

    .nm-hero-visual {
        min-height: 430px;
    }

    .nm-hero-visual::before {
        width: 310px;
        height: 310px;
    }

    .nm-hero-visual img {
        max-height: 410px;
    }

    .nm-orbit-card {
        position: relative;
        inset: auto;
        margin: 8px auto;
        width: fit-content;
    }

    .nm-actions,
    .nm-newsletter form,
    .nm-footer-bottom {
        flex-direction: column;
    }

    .nm-btn,
    .nm-newsletter button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }
}
