:root {
    --nt-bg: #f7f5f0;
    --nt-bg-alt: #ede9e0;
    --nt-bg-soft: #f3eef9;
    --nt-dark: #1c1c14;
    --nt-dark-2: #2a281f;
    --nt-green: #6aad1a;
    --nt-green-2: #7fbe2a;
    --nt-purple: #5b2d8e;
    --nt-orange: #f26a1b;
    --nt-orange-2: #ff8d3d;
    --nt-text: #26241c;
    --nt-text-muted: #6f6a5f;
    --nt-white: #ffffff;
    --nt-border: rgba(73, 62, 37, 0.12);
    --nt-shadow: 0 24px 60px rgba(51, 38, 16, 0.12);
    --nt-shadow-soft: 0 18px 36px rgba(51, 38, 16, 0.08);
    --nt-radius-xl: 32px;
    --nt-radius-lg: 24px;
    --nt-radius-md: 18px;
    --nt-max-width: 1240px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--nt-text);
    background: #ffffff;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(242, 106, 27, 0.45);
    outline-offset: 3px;
}

p {
    margin: 0;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Fraunces", Georgia, serif;
    line-height: 1.02;
    letter-spacing: -0.04em;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

.nt-shell {
    width: min(var(--nt-max-width), calc(100% - 32px));
    margin: 0 auto;
}

.nt-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(247, 245, 240, 0.84);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(73, 62, 37, 0.08);
}

.nt-header__inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.nt-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.nt-brand__logo {
    width: 46px;
    height: 46px;
    object-fit: contain;
    flex: 0 0 auto;
}

.nt-brand__logo--large {
    width: 64px;
    height: 64px;
}

.nt-brand--footer {
    color: var(--nt-white);
    font-size: 1.35rem;
}

.nt-nav {
    flex: 1 1 auto;
}

.nt-nav__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--nt-text-muted);
}

.nt-nav__list a {
    position: relative;
    transition: color 180ms ease;
}

.nt-nav__list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--nt-green), var(--nt-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.nt-nav__list a:hover,
.nt-nav__list a:focus-visible {
    color: var(--nt-dark);
}

.nt-nav__list a:hover::after,
.nt-nav__list a:focus-visible::after {
    transform: scaleX(1);
}

.nt-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    border: 1px solid var(--nt-border);
    border-radius: 16px;
    background: var(--nt-white);
    box-shadow: var(--nt-shadow-soft);
    cursor: pointer;
}

.nt-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 99px;
    background: var(--nt-dark);
    transition: transform 180ms ease, opacity 180ms ease;
}

.nt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0.95rem 1.3rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
    white-space: nowrap;
}

.nt-btn:hover {
    transform: translateY(-1px);
}

.nt-btn-primary {
    color: var(--nt-white);
    background: linear-gradient(135deg, var(--nt-orange), var(--nt-orange-2));
    box-shadow: 0 18px 30px rgba(242, 106, 27, 0.26);
}

.nt-btn-primary:hover {
    box-shadow: 0 20px 34px rgba(242, 106, 27, 0.32);
}

.nt-btn-secondary {
    color: var(--nt-dark);
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(73, 62, 37, 0.12);
}

@keyframes nt-fade-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes nt-soft-pop {
    from {
        opacity: 0;
        transform: scale(0.985);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.nt-btn--small {
    min-height: 42px;
    padding-inline: 1rem;
    font-size: 0.88rem;
}

.nt-header__cta {
    flex-shrink: 0;
}

.nt-section {
    padding: 72px 0;
}

.nt-section--compact {
    padding: 56px 0;
}

.nt-section--alt {
    background: rgba(237, 233, 224, 0.55);
}

.nt-section--dark {
    color: var(--nt-white);
    background:
        radial-gradient(circle at top left, rgba(127, 190, 42, 0.20), transparent 32%),
        radial-gradient(circle at right center, rgba(242, 106, 27, 0.16), transparent 28%),
        linear-gradient(180deg, #27261c 0%, #1c1c14 100%);
}

.nt-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: rgba(91, 45, 142, 0.09);
    color: var(--nt-purple);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nt-kicker--dark {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
}

.nt-section__heading {
    max-width: 760px;
    margin-bottom: 1.5rem;
}

.nt-section__heading--center {
    text-align: center;
    margin-inline: auto;
}

.nt-section__heading h2 {
    font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.nt-section__heading p {
    margin-top: 0.85rem;
    color: var(--nt-text-muted);
    font-size: 1.04rem;
}

.nt-section--dark .nt-section__heading p,
.nt-section--dark .nt-section__heading h2,
.nt-section--dark .nt-section__heading .nt-kicker {
    color: rgba(255, 255, 255, 0.95);
}

.nt-hero {
    position: relative;
    overflow: hidden;
    padding: 56px 0 18px;
}

.nt-hero::before,
.nt-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    z-index: -1;
}

.nt-hero::before {
    width: 24rem;
    height: 24rem;
    right: -6rem;
    top: -7rem;
    background: rgba(106, 173, 26, 0.16);
    filter: blur(8px);
}

.nt-hero::after {
    width: 16rem;
    height: 16rem;
    left: -5rem;
    bottom: -4rem;
    background: rgba(242, 106, 27, 0.10);
    filter: blur(8px);
}

.nt-hero__grid,
.nt-products,
.nt-about,
.nt-local,
.nt-cta__inner {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.nt-hero__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 1.5rem;
}

.nt-hero__content,
.nt-hero__visual,
.nt-section__heading {
    animation: nt-fade-up 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.nt-hero__visual {
    animation-delay: 120ms;
}

.nt-section__heading {
    animation-delay: 40ms;
}

.nt-hero__content h1 {
    font-size: clamp(2.7rem, 4.8vw, 4.7rem);
    max-width: 10ch;
    line-height: 0.96;
}

.nt-hero__content h1 span {
    color: var(--nt-green);
}

.nt-lead {
    margin-top: 0.9rem;
    max-width: 34rem;
    font-size: 1.13rem;
    color: var(--nt-text-muted);
}

.nt-hero__trust {
    margin-top: 1rem;
    color: var(--nt-dark);
    font-weight: 800;
}

.nt-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.6rem;
}

.nt-actions--stacked {
    flex-direction: column;
    align-items: stretch;
}

.nt-hero__visual {
    display: grid;
    gap: 1rem;
}

.nt-hero-card {
    position: relative;
    padding: 1rem;
    border-radius: var(--nt-radius-xl);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(73, 62, 37, 0.1);
    box-shadow: var(--nt-shadow);
}

.nt-hero-card__image {
    width: 100%;
    border-radius: calc(var(--nt-radius-xl) - 10px);
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: #f7f1de;
}

.nt-hero-card__overlay {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.9rem;
}

.nt-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
}

.nt-stat,
.nt-card,
.nt-note,
.nt-local__card,
.nt-about__visual blockquote {
    border: 1px solid rgba(73, 62, 37, 0.12);
    box-shadow: var(--nt-shadow-soft);
}

.nt-stat {
    padding: 0.9rem;
    border-radius: var(--nt-radius-md);
    background: rgba(255, 255, 255, 0.84);
}

.nt-stat,
.nt-card,
.nt-gallery__item,
.nt-hero-card,
.nt-products__media,
.nt-about__visual blockquote,
.nt-local__card {
    transition:
        transform 240ms ease,
        box-shadow 240ms ease,
        border-color 240ms ease,
        filter 240ms ease;
}

.nt-card:hover,
.nt-gallery__item:hover,
.nt-hero-card:hover,
.nt-products__media:hover,
.nt-local__card:hover,
.nt-about__visual blockquote:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 46px rgba(51, 38, 16, 0.14);
}

.nt-stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(51, 38, 16, 0.11);
}

.nt-scroll-animate {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--nt-scroll-delay, 0ms);
    will-change: opacity, transform;
}

.nt-scroll-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.nt-stat strong {
    display: block;
    font-size: 0.95rem;
}

.nt-stat span {
    display: block;
    margin-top: 0.35rem;
    color: var(--nt-text-muted);
    font-size: 0.88rem;
}

.nt-badge,
.nt-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0.45rem 0.82rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
}

.nt-badge {
    background: rgba(106, 173, 26, 0.14);
    color: var(--nt-green);
}

.nt-badge--soft {
    background: rgba(91, 45, 142, 0.12);
    color: var(--nt-purple);
}

.nt-chip {
    background: rgba(255, 255, 255, 0.78);
    color: var(--nt-dark);
    border: 1px solid rgba(73, 62, 37, 0.12);
}

.nt-chip--surface {
    background: rgba(255, 255, 255, 0.72);
}

.nt-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.nt-chip-list--compact {
    gap: 0.55rem;
}

.nt-grid {
    display: grid;
    gap: 1.2rem;
}

.nt-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.nt-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.nt-card {
    overflow: hidden;
    border-radius: var(--nt-radius-lg);
    background: rgba(255, 255, 255, 0.88);
}

.nt-card h3 {
    font-size: 1.35rem;
}

.nt-card p {
    color: var(--nt-text-muted);
}

.nt-card--benefit,
.nt-card--service,
.nt-plan-card,
.nt-card--trust,
.nt-card--dark,
.nt-local__card,
.nt-gallery__item,
.nt-faq__item {
    background: rgba(255, 255, 255, 0.9);
}

.nt-card--benefit {
    padding: 0.85rem 1rem;
}

.nt-card--benefit p {
    margin-top: 0.3rem;
    font-size: 0.93rem;
}

.nt-benefits {
    gap: 0.7rem;
}

.nt-benefits-strip {
    padding-top: 18px;
    padding-bottom: 22px;
}

.nt-benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.nt-benefit-card__icon {
    width: 2.75rem;
    height: 2.75rem;
    flex: 0 0 auto;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(91, 45, 142, 0.1);
    font-size: 1.1rem;
}

.nt-card--service {
    padding: 0;
    overflow: hidden;
}

.nt-card--service .nt-text-link {
    margin-top: 1rem;
}

.nt-service-card__image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.nt-card__content {
    padding: 1rem 1.1rem 1.1rem;
}

.nt-text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--nt-purple);
    font-weight: 800;
}

.nt-text-link::after {
    content: "→";
    transition: transform 180ms ease;
}

.nt-text-link:hover::after {
    transform: translateX(3px);
}

.nt-bowl-card {
    display: grid;
}

.nt-bowl-card__image {
    width: 100%;
    aspect-ratio: 1 / 0.88;
    object-fit: cover;
    background: #f8f1dd;
}

.nt-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 0.7rem;
}

.nt-tag {
    display: inline-flex;
    padding: 0.36rem 0.7rem;
    border-radius: 999px;
    background: rgba(91, 45, 142, 0.08);
    color: var(--nt-purple);
    font-size: 0.78rem;
    font-weight: 800;
}

.nt-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 1.1rem;
}

.nt-card__footer strong {
    font-size: 1.8rem;
    color: var(--nt-dark);
}

.nt-gallery__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.nt-gallery__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nt-gallery__item {
    overflow: hidden;
    border-radius: var(--nt-radius-lg);
    animation: nt-soft-pop 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.nt-gallery__item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 320ms ease, filter 320ms ease;
}

.nt-gallery__item:hover img,
.nt-card--service:hover .nt-service-card__image,
.nt-bowl-card:hover .nt-bowl-card__image,
.nt-about__visual:hover img,
.nt-products__media:hover img,
.nt-hero-card:hover .nt-hero-card__image {
    transform: scale(1.03);
    filter: saturate(1.04) contrast(1.02);
}

.nt-plan-card {
    padding: 1.2rem;
    animation: nt-fade-up 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.nt-plan-card--featured {
    position: relative;
    color: var(--nt-white);
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 32%),
        linear-gradient(180deg, #7134b9 0%, #4f1f7a 100%);
    transform: translateY(-8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 36px rgba(79, 31, 122, 0.24);
}

.nt-plan-card--featured p,
.nt-plan-card--featured li,
.nt-plan-card--featured .nt-badge {
    color: #ffffff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
}

.nt-plan-card--featured li {
    font-weight: 600;
    letter-spacing: 0.01em;
}

.nt-plan-card--featured h3 {
    color: var(--nt-white);
}

.nt-plan-card--featured li::before {
    color: #dfffa1;
}

.nt-plan-card--featured .nt-list li {
    color: #ffffff;
    font-weight: 600;
}

.nt-plan-card--featured .nt-list li::before {
    color: #bff25d;
}

.nt-plan-card--featured .nt-badge {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.nt-badge--dark {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.nt-list {
    display: grid;
    gap: 0.55rem;
    margin-top: 1rem;
}

.nt-list li {
    position: relative;
    padding-left: 1.15rem;
    color: var(--nt-text-muted);
}

.nt-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--nt-green);
    font-weight: 800;
}

.nt-note {
    margin-top: 1rem;
    padding: 0.95rem 1.1rem;
    border-radius: var(--nt-radius-md);
    background: rgba(255, 255, 255, 0.72);
    color: var(--nt-text-muted);
}

.nt-section__cta {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.nt-section__cta--start {
    justify-content: flex-start;
}

.nt-small-note {
    margin-top: 1rem;
    color: var(--nt-text-muted);
    font-size: 0.92rem;
}

.nt-products {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    gap: 1.4rem;
}

.nt-products__copy h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.nt-products__copy p {
    margin-top: 1rem;
    color: var(--nt-text-muted);
}

.nt-products__media {
    margin: 0;
    padding: 1rem;
    border-radius: var(--nt-radius-xl);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--nt-shadow);
}

.nt-products__media img {
    width: 100%;
    aspect-ratio: 1 / 0.88;
    object-fit: cover;
    border-radius: calc(var(--nt-radius-xl) - 10px);
}

.nt-how {
    background:
        radial-gradient(circle at top right, rgba(242, 106, 27, 0.14), transparent 28%),
        linear-gradient(180deg, rgba(39, 38, 28, 0.98), rgba(28, 28, 20, 1));
}

.nt-how .nt-section__heading h2,
.nt-how .nt-section__heading p,
.nt-how .nt-kicker {
    color: rgba(255, 255, 255, 0.96);
}

.nt-card--dark {
    padding: 1.3rem;
    border-radius: var(--nt-radius-lg);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
}

.nt-card--dark p {
    color: rgba(255, 255, 255, 0.74);
}

.nt-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--nt-orange), var(--nt-orange-2));
    color: var(--nt-white);
    font-weight: 900;
}

.nt-about {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 1.5rem;
}

.nt-about__copy h2,
.nt-local__copy h2,
.nt-cta__inner h2 {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.nt-about__copy p + p {
    margin-top: 1rem;
}

.nt-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
    margin-top: 1.5rem;
}

.nt-metrics div {
    padding: 1rem;
    border-radius: var(--nt-radius-md);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(73, 62, 37, 0.12);
    box-shadow: var(--nt-shadow-soft);
}

.nt-metrics strong {
    display: block;
    font-size: 1rem;
}

.nt-metrics span {
    display: block;
    margin-top: 0.35rem;
    color: var(--nt-text-muted);
    font-size: 0.88rem;
}

.nt-about__visual {
    display: grid;
    gap: 1rem;
}

.nt-about__visual img {
    border-radius: var(--nt-radius-xl);
    box-shadow: var(--nt-shadow);
}

.nt-about__visual blockquote {
    margin: 0;
    padding: 1.4rem;
    border-radius: var(--nt-radius-lg);
    background: rgba(91, 45, 142, 0.08);
    color: var(--nt-purple);
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.2rem;
}

.nt-about__visual blockquote span {
    display: block;
    margin-top: 0.75rem;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    color: var(--nt-text-muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.nt-card--trust {
    padding: 1.05rem;
}

.nt-card--trust p {
    margin-top: 0.5rem;
}

.nt-local {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
}

.nt-local__copy p {
    margin-top: 1rem;
    max-width: 34rem;
    color: var(--nt-text-muted);
}

.nt-local__card {
    padding: 1rem;
    border-radius: var(--nt-radius-xl);
    background: rgba(255, 255, 255, 0.88);
}

.nt-local__card img {
    width: 100%;
    aspect-ratio: 1 / 0.82;
    object-fit: cover;
    border-radius: calc(var(--nt-radius-xl) - 10px);
}

.nt-local__card strong {
    display: block;
    margin-top: 0.9rem;
    font-size: 1rem;
}

.nt-local__card p {
    margin-top: 0.35rem;
    color: var(--nt-text-muted);
}

.nt-faq__list {
    display: grid;
    gap: 0.9rem;
}

.nt-faq__item {
    border-radius: var(--nt-radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
}

.nt-faq__button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 1.25rem;
    border: 0;
    background: transparent;
    color: var(--nt-text);
    font: inherit;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.nt-faq__icon {
    flex: 0 0 auto;
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(91, 45, 142, 0.08);
    color: var(--nt-purple);
    font-size: 1.1rem;
    transition: transform 180ms ease, background-color 180ms ease;
}

.nt-faq__item.is-open .nt-faq__icon {
    transform: rotate(45deg);
    background: rgba(242, 106, 27, 0.14);
    color: var(--nt-orange);
}

.nt-faq__panel {
    padding: 0 1.25rem 1.2rem;
    color: var(--nt-text-muted);
}

.nt-cta {
    padding: 92px 0;
}

.nt-cta.nt-section--dark {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 28%),
        linear-gradient(135deg, #5b2d8e, #432062);
}

.nt-cta__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.5rem;
    padding: 1.7rem 1.8rem;
    border-radius: calc(var(--nt-radius-xl) + 4px);
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 28%),
        linear-gradient(135deg, #5b2d8e, #452066);
    box-shadow: var(--nt-shadow);
}

.nt-cta__inner p {
    margin-top: 0.85rem;
    max-width: 36rem;
    color: rgba(255, 255, 255, 0.76);
}

.nt-footer {
    padding: 2.5rem 0 1.25rem;
    color: rgba(255, 255, 255, 0.82);
    background:
        radial-gradient(circle at top left, rgba(127, 190, 42, 0.12), transparent 24%),
        linear-gradient(180deg, #232117 0%, #1c1c14 100%);
}

.nt-footer__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.9fr 0.9fr;
    gap: 2rem;
    align-items: start;
}

.nt-brand--footer .nt-brand__logo {
    width: 148px;
    height: 64px;
}

.nt-footer h3 {
    margin-bottom: 0.9rem;
    color: var(--nt-white);
    font-size: 1.25rem;
}

.nt-footer__copy,
.nt-footer__note {
    max-width: 28rem;
}

.nt-footer__copy {
    margin-top: 1rem;
}

.nt-footer__note {
    margin-top: 0.55rem;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.93rem;
}

.nt-footer__list {
    display: grid;
    gap: 0.65rem;
}

.nt-footer__list a {
    color: var(--nt-white);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.4);
    text-underline-offset: 3px;
}

.nt-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.8rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
}

.nt-footer__credit a {
    color: #8fd68a;
    font-weight: 700;
    text-decoration: none;
}

.nt-footer__credit a:hover,
.nt-footer__credit a:focus-visible {
    color: #b6e3b1;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.nt-whatsapp-float {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 45;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.15rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #24d366, #1ebc58);
    color: var(--nt-white);
    font-weight: 900;
    box-shadow: 0 18px 34px rgba(36, 211, 102, 0.34);
}

@media (max-width: 1120px) {
    .nt-grid--4,
    .nt-gallery__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nt-hero__grid,
    .nt-products,
    .nt-about,
    .nt-local,
    .nt-cta__inner,
    .nt-footer__grid {
        grid-template-columns: 1fr;
    }

    .nt-cta__inner {
        padding: 1.6rem;
    }
}

@media (max-width: 960px) {
    .nt-header__inner {
        min-height: 78px;
    }

    .nt-menu-toggle {
        display: inline-flex;
        flex-direction: column;
        gap: 4px;
    }

    .nt-nav {
        position: absolute;
        top: calc(100% + 0.65rem);
        left: 1rem;
        right: 1rem;
        padding: 1rem;
        border-radius: var(--nt-radius-lg);
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(73, 62, 37, 0.12);
        box-shadow: var(--nt-shadow);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .nt-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nt-nav__list {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 1rem;
    }

    .nt-header__cta {
        display: none;
    }

    .nt-stats,
    .nt-metrics {
        grid-template-columns: 1fr;
    }

    .nt-grid--3,
    .nt-grid--4 {
        grid-template-columns: 1fr;
    }

    .nt-plan-card--featured {
        transform: none;
    }

    .nt-whatsapp-float {
        display: inline-flex;
    }
}

@media (max-width: 720px) {
    .nt-shell {
        width: min(var(--nt-max-width), calc(100% - 24px));
    }

    .nt-section {
        padding: 68px 0;
    }

    .nt-section--compact {
        padding: 48px 0;
    }

    .nt-hero {
        padding-top: 56px;
    }

    .nt-hero__content h1 {
        max-width: none;
    }

    .nt-card__footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .nt-actions,
    .nt-footer__bottom {
        flex-direction: column;
    }

    .nt-btn {
        width: 100%;
    }

    .nt-faq__button {
        align-items: flex-start;
    }

    .nt-benefit-card {
        flex-direction: row;
    }

    .nt-gallery__grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation: none !important;
        transition: none !important;
    }

    .nt-scroll-animate {
        opacity: 1;
        transform: none;
    }
}
