/* ═══════════════════════════════════════════════════════
   NüHome Theme — Warm/Orange Palette
   Replica de nuhome.cl con sistema de bloques
   Palette: #faf6f0 (bg), #ea580c (accent), #1c1208 (text)
   Fonts: Outfit (heading), DM Sans (body), JetBrains Mono (mono)
   ═══════════════════════════════════════════════════════ */

:root {
    /* Backgrounds */
    --nh-bg:            #faf6f0;
    --nh-bg2:           #f2ebe0;
    --nh-card:          #ffffff;
    --nh-card-elevated: #fffdf9;

    /* Accent */
    --nh-accent:        #ea580c;
    --nh-accent-hover:  #c2410c;
    --nh-accent-light:  rgba(234, 88, 12, 0.1);
    --nh-accent-glow:   rgba(234, 88, 12, 0.15);

    /* Text */
    --nh-text:          #1c1208;
    --nh-text2:         #6b5240;
    --nh-text-muted:    #8b7355;
    --nh-text-dim:      #a69882;

    /* Semantic */
    --nh-green:         #16a34a;
    --nh-green-light:   rgba(22, 163, 74, 0.1);
    --nh-gold:          #D4AF37;
    --nh-gold-light:    rgba(212, 175, 55, 0.1);
    --nh-blue:          #2563eb;
    --nh-red:           #dc2626;

    /* Borders */
    --nh-border:        rgba(28, 18, 8, 0.08);
    --nh-border-hover:  rgba(28, 18, 8, 0.15);
    --nh-border-accent: rgba(234, 88, 12, 0.3);

    /* Radius */
    --nh-radius:        10px;
    --nh-radius-card:   16px;
    --nh-radius-lg:     20px;
    --nh-radius-pill:   9999px;

    /* Fonts */
    --nh-font-heading:  'Outfit', sans-serif;
    --nh-font-body:     'DM Sans', sans-serif;
    --nh-font-mono:     'JetBrains Mono', monospace;

    /* Layout */
    --nh-max-width:     1200px;
    --nh-header-height: 72px;
    --nh-transition:    cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset & Base ────────────────────────────────────── */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body.nuhome-landing {
    background: var(--nh-bg);
    color: var(--nh-text);
    font-family: var(--nh-font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: var(--nh-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover { color: var(--nh-accent-hover); }

/* ── Announce Bar ────────────────────────────────────── */

.nh-announce {
    background: var(--nh-accent);
    color: #fff;
    text-align: center;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 100;
}

.nh-announce__countdown {
    display: inline-flex;
    gap: 6px;
    margin-left: 12px;
    font-family: var(--nh-font-mono);
    font-size: 12px;
    font-weight: 700;
}

.nh-announce a { color: #fff; text-decoration: underline; }

/* ── Header ──────────────────────────────────────────── */

.nh-header {
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgba(250, 246, 240, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--nh-border);
    transition: box-shadow 0.3s ease;
}

.nh-header.scrolled {
    box-shadow: 0 2px 20px rgba(28, 18, 8, 0.08);
}

.nh-header__inner {
    max-width: var(--nh-max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: var(--nh-header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nh-header__logo img {
    height: 40px;
    width: auto;
}

.nh-header__logo-text {
    font-family: var(--nh-font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--nh-text);
    letter-spacing: -0.02em;
}

.nh-header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nh-header__nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--nh-text2);
    transition: color 0.2s;
}
.nh-header__nav a:hover { color: var(--nh-accent); }

.nh-header__cart {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--nh-text);
    cursor: pointer;
}

.nh-header__cart-count {
    background: var(--nh-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nh-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}
.nh-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--nh-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ── Sections Common ─────────────────────────────────── */

.nh-section {
    max-width: var(--nh-max-width);
    margin: 0 auto;
    padding: 80px 24px;
}

.nh-section--full {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.nh-section--bg2 {
    background: var(--nh-bg2);
    max-width: none;
    padding-left: 24px;
    padding-right: 24px;
}

.nh-section__inner {
    max-width: var(--nh-max-width);
    margin: 0 auto;
}

.nh-section__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--nh-accent-light);
    color: var(--nh-accent);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--nh-radius-pill);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nh-section__title {
    font-family: var(--nh-font-heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--nh-text);
    text-align: left;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.nh-section__title--center { text-align: center; }

.nh-section__subtitle {
    font-size: 17px;
    color: var(--nh-text2);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.nh-section__subtitle--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* ── Hero Section ────────────────────────────────────── */

.nh-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--nh-bg);
}

.nh-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.nh-hero__bg img,
.nh-hero__bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nh-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(250,246,240,0.92) 0%, rgba(250,246,240,0.7) 50%, rgba(250,246,240,0.4) 100%);
    z-index: 1;
}

.nh-hero__content {
    position: relative;
    z-index: 2;
    max-width: var(--nh-max-width);
    margin: 0 auto;
    padding: 120px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.nh-hero__text {
    animation: nh-fadeUp 0.8s var(--nh-transition) both;
}

.nh-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--nh-green-light);
    color: var(--nh-green);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--nh-radius-pill);
    margin-bottom: 20px;
}

.nh-hero__headline {
    font-family: var(--nh-font-heading);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: var(--nh-text);
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.nh-hero__headline .accent {
    color: var(--nh-accent);
}

.nh-hero__desc {
    font-size: 18px;
    color: var(--nh-text2);
    line-height: 1.7;
    margin-bottom: 24px;
}

.nh-hero__price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}

.nh-hero__price-current {
    font-family: var(--nh-font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--nh-accent);
}

.nh-hero__price-original {
    font-size: 18px;
    color: var(--nh-text-dim);
    text-decoration: line-through;
}

.nh-hero__specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
}

.nh-hero__spec {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--nh-text2);
}

.nh-hero__spec-icon {
    width: 32px;
    height: 32px;
    background: var(--nh-accent-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.nh-hero__media {
    animation: nh-fadeUp 0.8s var(--nh-transition) 0.12s both;
}

.nh-hero__media img {
    border-radius: var(--nh-radius-lg);
    box-shadow: 0 20px 60px rgba(28, 18, 8, 0.12);
}

/* ── Buttons ─────────────────────────────────────────── */

.nh-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--nh-font-heading);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--nh-radius);
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--nh-transition);
    text-decoration: none;
    letter-spacing: 0.3px;
}

.nh-btn--accent {
    background: var(--nh-accent);
    color: #fff;
    box-shadow: 0 4px 16px rgba(234, 88, 12, 0.25);
}
.nh-btn--accent:hover {
    background: var(--nh-accent-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(234, 88, 12, 0.35);
}
.nh-btn--accent:active {
    transform: translateY(0);
}

.nh-btn--outline {
    background: transparent;
    color: var(--nh-text);
    border: 1.5px solid var(--nh-border-hover);
}
.nh-btn--outline:hover {
    border-color: var(--nh-accent);
    color: var(--nh-accent);
}

.nh-btn--lg {
    padding: 18px 40px;
    font-size: 17px;
}

.nh-btn--full {
    width: 100%;
    justify-content: center;
}

/* ── Prizes Grid ─────────────────────────────────────── */

.nh-prizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.nh-prize-card {
    background: var(--nh-card);
    border: 1px solid var(--nh-border);
    border-radius: var(--nh-radius-card);
    overflow: hidden;
    transition: transform 0.3s var(--nh-transition), box-shadow 0.3s ease;
}
.nh-prize-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(28, 18, 8, 0.08);
}

.nh-prize-card--main {
    border-color: var(--nh-border-accent);
    box-shadow: 0 4px 20px rgba(234, 88, 12, 0.08);
}

.nh-prize-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--nh-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--nh-radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nh-prize-card__img {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.nh-prize-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--nh-transition);
}
.nh-prize-card:hover .nh-prize-card__img img {
    transform: scale(1.03);
}

.nh-prize-card__body {
    padding: 20px;
}

.nh-prize-card__title {
    font-family: var(--nh-font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--nh-text);
    margin-bottom: 6px;
}

.nh-prize-card__desc {
    font-size: 14px;
    color: var(--nh-text2);
    margin-bottom: 12px;
    line-height: 1.5;
}

.nh-prize-card__status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--nh-radius-pill);
}

.nh-prize-card__status--won {
    background: var(--nh-green-light);
    color: var(--nh-green);
}

.nh-prize-card__status--pending {
    background: var(--nh-accent-light);
    color: var(--nh-accent);
}

.nh-prize-card__winner {
    font-size: 13px;
    color: var(--nh-text-muted);
    margin-top: 8px;
}

/* ── Winners Gallery ─────────────────────────────────── */

.nh-winners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.nh-winner-card {
    background: var(--nh-card);
    border: 1px solid var(--nh-border);
    border-radius: var(--nh-radius-card);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: border-color 0.3s ease;
}
.nh-winner-card:hover { border-color: var(--nh-border-accent); }

.nh-winner-card__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--nh-accent-light);
}

.nh-winner-card__info { flex: 1; }

.nh-winner-card__name {
    font-family: var(--nh-font-heading);
    font-weight: 600;
    font-size: 16px;
    color: var(--nh-text);
}

.nh-winner-card__prize {
    font-size: 14px;
    color: var(--nh-accent);
    font-weight: 500;
}

.nh-winner-card__detail {
    font-size: 13px;
    color: var(--nh-text-muted);
    margin-top: 4px;
}

.nh-winner-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: var(--nh-green);
    background: var(--nh-green-light);
    padding: 3px 8px;
    border-radius: var(--nh-radius-pill);
    margin-top: 8px;
    text-transform: uppercase;
}

/* ── Features / Includes Grid ────────────────────────── */

.nh-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}

.nh-feature-card {
    background: var(--nh-card);
    border: 1px solid var(--nh-border);
    border-radius: var(--nh-radius-card);
    padding: 24px;
    text-align: left;
    transition: border-color 0.3s ease, transform 0.3s var(--nh-transition);
}
.nh-feature-card:hover {
    border-color: var(--nh-border-accent);
    transform: translateY(-2px);
}

.nh-feature-card__icon {
    width: 48px;
    height: 48px;
    background: var(--nh-accent-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.nh-feature-card__title {
    font-family: var(--nh-font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--nh-text);
    margin-bottom: 6px;
}

.nh-feature-card__text {
    font-size: 14px;
    color: var(--nh-text2);
    line-height: 1.5;
}

/* ── Steps ───────────────────────────────────────────── */

.nh-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    counter-reset: step;
}

.nh-step {
    background: var(--nh-card);
    border: 1px solid var(--nh-border);
    border-radius: var(--nh-radius-card);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    counter-increment: step;
}

.nh-step::before {
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--nh-accent);
    color: #fff;
    font-family: var(--nh-font-heading);
    font-size: 18px;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 16px;
}

.nh-step__title {
    font-family: var(--nh-font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--nh-text);
    margin-bottom: 8px;
}

.nh-step__text {
    font-size: 14px;
    color: var(--nh-text2);
    line-height: 1.6;
}

/* ── Trust / Why Participate ─────────────────────────── */

.nh-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.nh-trust-card {
    background: var(--nh-card);
    border: 1px solid var(--nh-border);
    border-radius: var(--nh-radius-card);
    padding: 28px 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: border-color 0.3s ease;
}
.nh-trust-card:hover { border-color: var(--nh-border-accent); }

.nh-trust-card__icon {
    width: 44px;
    height: 44px;
    background: var(--nh-accent-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.nh-trust-card__title {
    font-family: var(--nh-font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--nh-text);
    margin-bottom: 4px;
}

.nh-trust-card__text {
    font-size: 14px;
    color: var(--nh-text2);
    line-height: 1.5;
}

/* ── Transparency ────────────────────────────────────── */

.nh-transparency-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.nh-transparency-card {
    background: var(--nh-card);
    border: 1px solid var(--nh-border);
    border-radius: var(--nh-radius-card);
    padding: 32px 24px;
    text-align: center;
}

.nh-transparency-card__icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.nh-transparency-card__title {
    font-family: var(--nh-font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--nh-text);
    margin-bottom: 8px;
}

.nh-transparency-card__text {
    font-size: 14px;
    color: var(--nh-text2);
    line-height: 1.6;
}

/* ── Gallery ─────────────────────────────────────────── */

.nh-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}

.nh-gallery__item {
    border-radius: var(--nh-radius-card);
    overflow: hidden;
    border: 1px solid var(--nh-border);
    cursor: pointer;
    transition: transform 0.4s var(--nh-transition), border-color 0.3s;
}
.nh-gallery__item:hover {
    transform: scale(1.02);
    border-color: var(--nh-border-accent);
}

.nh-gallery__item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.6s var(--nh-transition);
}
.nh-gallery__item:hover img {
    transform: scale(1.05);
}

/* ── FAQ ─────────────────────────────────────────────── */

.nh-faq-list {
    max-width: 720px;
}

.nh-faq-item {
    border-bottom: 1px solid var(--nh-border);
}

.nh-faq-item__q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--nh-font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--nh-text);
    transition: color 0.2s;
}
.nh-faq-item__q:hover { color: var(--nh-accent); }

.nh-faq-item__arrow {
    font-size: 20px;
    color: var(--nh-text-muted);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.nh-faq-item.open .nh-faq-item__arrow {
    transform: rotate(180deg);
}

.nh-faq-item__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--nh-transition), padding 0.3s ease;
}

.nh-faq-item.open .nh-faq-item__a {
    max-height: 500px;
    padding-bottom: 20px;
}

.nh-faq-item__a p {
    font-size: 15px;
    color: var(--nh-text2);
    line-height: 1.7;
}

/* ── Countdown ───────────────────────────────────────── */

.nh-countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
}

.nh-countdown__unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--nh-card);
    border: 1px solid var(--nh-border);
    border-radius: var(--nh-radius-card);
    padding: 20px 24px;
    min-width: 90px;
}

.nh-countdown__number {
    font-family: var(--nh-font-mono);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--nh-accent);
    line-height: 1;
}

.nh-countdown__label {
    font-size: 11px;
    color: var(--nh-text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
}

.nh-countdown__sep {
    font-family: var(--nh-font-mono);
    font-size: 32px;
    color: var(--nh-text-dim);
    padding-bottom: 20px;
}

/* ── Progress Bar ────────────────────────────────────── */

.nh-progress-wrap {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
}

.nh-progress {
    width: 100%;
    height: 8px;
    background: var(--nh-bg2);
    border-radius: var(--nh-radius-pill);
    overflow: hidden;
}

.nh-progress__bar {
    height: 100%;
    background: linear-gradient(90deg, var(--nh-accent-hover), var(--nh-accent));
    border-radius: var(--nh-radius-pill);
    transition: width 1s var(--nh-transition);
}

.nh-progress__text {
    font-size: 13px;
    color: var(--nh-text-muted);
    margin-top: 8px;
}

/* ── Value Comparison ────────────────────────────────── */

.nh-value-compare {
    display: flex;
    align-items: center;
    gap: 32px;
    background: var(--nh-card);
    border: 1px solid var(--nh-border-accent);
    border-radius: var(--nh-radius-lg);
    padding: 32px;
    max-width: 500px;
}

.nh-value-compare__item { text-align: center; flex: 1; }

.nh-value-compare__label {
    font-size: 12px;
    color: var(--nh-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.nh-value-compare__amount {
    font-family: var(--nh-font-heading);
    font-weight: 800;
}

.nh-value-compare__amount--big {
    font-size: 24px;
    color: var(--nh-text);
}

.nh-value-compare__amount--accent {
    font-size: 32px;
    color: var(--nh-accent);
}

.nh-value-compare__vs {
    font-family: var(--nh-font-heading);
    font-size: 14px;
    color: var(--nh-text-dim);
    font-weight: 600;
}

/* ── CTA Section ─────────────────────────────────────── */

.nh-cta-section {
    text-align: center;
    padding: 100px 24px;
    background: var(--nh-bg2);
    max-width: none;
}

.nh-cta-section .nh-section__title { text-align: center; }

.nh-cta__subtitle {
    font-size: 17px;
    color: var(--nh-text2);
    margin-bottom: 32px;
}

/* ── Footer ──────────────────────────────────────────── */

.nh-footer {
    background: var(--nh-text);
    color: #fff;
    padding: 64px 24px 32px;
}

.nh-footer__inner {
    max-width: var(--nh-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
}

.nh-footer__logo {
    font-family: var(--nh-font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.nh-footer__desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.nh-footer__title {
    font-family: var(--nh-font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.nh-footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nh-footer__links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}
.nh-footer__links a:hover { color: #fff; }

.nh-footer__social {
    display: flex;
    gap: 12px;
}

.nh-footer__social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: background 0.2s;
}
.nh-footer__social a:hover {
    background: var(--nh-accent);
}

.nh-footer__bottom {
    max-width: var(--nh-max-width);
    margin: 32px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ── Clover Animation (decorative) ───────────────────── */

.nh-clovers {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.nh-clover {
    position: absolute;
    font-size: 20px;
    opacity: 0;
    animation: nh-cloverFall linear infinite;
}

@keyframes nh-cloverFall {
    0%   { opacity: 0; transform: translateY(-10vh) rotate(0deg); }
    10%  { opacity: 0.3; }
    90%  { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(110vh) rotate(720deg); }
}

/* ── Animations ──────────────────────────────────────── */

@keyframes nh-fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.nh-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--nh-transition), transform 0.6s var(--nh-transition);
}
.nh-reveal.nh-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ──────────────────────────────────────── */

@media (max-width: 968px) {
    .nh-hero__content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 100px;
    }
    .nh-hero__specs {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 32px;
    }
    .nh-hero__media { order: -1; }
    .nh-footer__inner { grid-template-columns: 1fr; gap: 32px; }
    .nh-transparency-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nh-section { padding: 56px 16px; }
    .nh-burger { display: flex; }
    .nh-header__nav {
        display: none;
        position: absolute;
        top: var(--nh-header-height);
        left: 0;
        right: 0;
        background: var(--nh-bg);
        border-bottom: 1px solid var(--nh-border);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
    }
    .nh-header__nav.open { display: flex; }
    .nh-countdown__unit { min-width: 64px; padding: 14px 12px; }
    .nh-countdown__sep { font-size: 24px; }
    .nh-gallery { grid-template-columns: 1fr 1fr; }
    .nh-value-compare { flex-direction: column; gap: 16px; }
    .nh-footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
    .nh-gallery { grid-template-columns: 1fr; }
    .nh-prizes-grid { grid-template-columns: 1fr; }
    .nh-hero__specs { grid-template-columns: 1fr; }
}
