/* ==========================================================================
   NATURE CURE — HOMEPAGE STYLES
   Editorial Wellness — Asymmetric Layouts
   ========================================================================== */

.nc-homepage-main {
    padding-top: 0;
    overflow: hidden;
}

/* Container */
.nc-container {
    max-width: var(--nc-max-width);
    margin: 0 auto;
    padding: 0 var(--nc-gutter);
}

/* Common: Section eyebrow */
.nc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--nc-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--nc-honey-deep);
    margin-bottom: 20px;
}

.nc-eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--nc-honey-deep);
}

.nc-eyebrow-light { color: var(--nc-honey-light); }
.nc-eyebrow-light::before { background: var(--nc-honey-light); }

.nc-eyebrow-honey { color: var(--nc-honey-light); }
.nc-eyebrow-honey::before { background: var(--nc-honey-light); }

/* Common: Section title */
.nc-section-title {
    font-family: var(--nc-font-display) !important;
    font-size: clamp(40px, 5.5vw, 76px) !important;
    font-weight: 400 !important;
    line-height: 0.98 !important;
    letter-spacing: -0.035em !important;
    color: var(--nc-ink) !important;
    margin: 0;
}

.nc-section-title em {
    font-style: italic;
    color: var(--nc-moss);
    font-weight: 300;
}

.nc-mb-32 { margin-bottom: 32px; }

/* Common: Buttons */
.nc-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
    padding: 18px 32px !important;
    font-family: var(--nc-font-body) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    border-radius: 100px !important;
    transition: all 0.4s var(--nc-ease) !important;
    text-decoration: none !important;
    border: none !important;
    cursor: pointer;
}

.nc-btn-primary {
    background: var(--nc-forest) !important;
    color: var(--nc-cream) !important;
}

.nc-btn-primary:hover {
    background: var(--nc-ink) !important;
    transform: translateY(-2px);
    box-shadow: 0 16px 40px -10px rgba(31, 58, 44, 0.5);
}

.nc-btn-honey {
    background: var(--nc-honey) !important;
    color: var(--nc-ink) !important;
}

.nc-btn-honey:hover {
    background: var(--nc-honey-light) !important;
    transform: translateY(-2px);
    box-shadow: 0 16px 40px -10px rgba(200, 148, 26, 0.5);
}

.nc-btn-cream {
    background: var(--nc-cream) !important;
    color: var(--nc-forest) !important;
}

.nc-btn-cream:hover {
    background: var(--nc-ivory) !important;
    transform: translateY(-2px);
}

.nc-btn-text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--nc-forest);
    padding: 12px 0;
    border-bottom: 1px solid var(--nc-forest);
    transition: all 0.3s var(--nc-ease);
    text-decoration: none;
}

.nc-btn-text:hover {
    gap: 16px;
    color: var(--nc-honey-deep);
    border-color: var(--nc-honey-deep);
}

.nc-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.4s var(--nc-ease);
}

.nc-btn:hover .nc-arrow { transform: translateX(4px); }

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */

.nc-hero {
    padding: 80px var(--nc-gutter) 80px;
    max-width: var(--nc-max-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.nc-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}

.nc-hero-text { position: relative; }

.nc-hero-title {
    font-family: var(--nc-font-display) !important;
    font-weight: 400 !important;
    font-size: clamp(48px, 7.5vw, 96px) !important;
    line-height: 0.95 !important;
    letter-spacing: -0.04em !important;
    color: var(--nc-ink) !important;
    margin-bottom: 36px !important;
}

.nc-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: ncFadeUp 0.9s var(--nc-ease) forwards;
}
.nc-word:nth-child(1) { animation-delay: 0.2s; }
.nc-word:nth-child(2) { animation-delay: 0.3s; }
.nc-word:nth-child(3) { animation-delay: 0.4s; }
.nc-word:nth-child(4) { animation-delay: 0.5s; }
.nc-word:nth-child(5) { animation-delay: 0.6s; }

.nc-hero-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--nc-moss);
}

.nc-script {
    font-family: var(--nc-font-script);
    font-size: 0.85em;
    color: var(--nc-honey-deep);
    font-weight: 600;
    transform: rotate(-2deg);
    display: inline-block;
}

.nc-hero-lead {
    font-size: clamp(16px, 1.2vw, 19px);
    line-height: 1.6;
    color: var(--nc-charcoal);
    max-width: 480px;
    margin-bottom: 40px;
    opacity: 0;
    animation: ncFadeUp 0.8s var(--nc-ease) 0.7s forwards;
}

.nc-hero-ctas {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    animation: ncFadeUp 0.8s var(--nc-ease) 0.85s forwards;
}

.nc-hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid rgba(31, 58, 44, 0.12);
    opacity: 0;
    animation: ncFadeUp 0.8s var(--nc-ease) 1s forwards;
}

.nc-stat-num {
    font-family: var(--nc-font-display);
    font-size: 36px;
    font-weight: 500;
    color: var(--nc-forest);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.nc-stat-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--nc-stone);
}

/* Hero visual — asymmetric */
.nc-hero-visual {
    position: relative;
    aspect-ratio: 4 / 5;
}

.nc-hero-image {
    position: absolute;
    inset: 0;
    border-radius: 320px 320px 32px 32px;
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(31, 58, 44, 0.25);
    opacity: 0;
    animation: ncFadeIn 1.2s var(--nc-ease) 0.4s forwards;
}

.nc-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s var(--nc-ease);
}

.nc-hero:hover .nc-hero-image img { transform: scale(1.06); }

.nc-hero-product-float {
    position: absolute;
    bottom: -40px;
    left: -60px;
    width: 240px;
    height: 240px;
    background: var(--nc-ivory);
    border-radius: 50%;
    box-shadow: 0 30px 60px -15px rgba(31, 58, 44, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    animation: ncFloatIn 1s var(--nc-ease-bounce) 1s forwards;
    z-index: 3;
}

.nc-hero-product-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: ncFloat 6s ease-in-out infinite;
}

.nc-hero-badge {
    position: absolute;
    top: 24px;
    right: -20px;
    background: var(--nc-honey);
    color: var(--nc-ink);
    padding: 16px 24px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 12px 30px -8px rgba(200, 148, 26, 0.5);
    transform: rotate(8deg);
    opacity: 0;
    animation: ncFadeIn 0.8s var(--nc-ease) 1.4s forwards;
    z-index: 3;
}

/* Decorative orbs */
.nc-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}
.nc-orb-1 {
    top: 10%; left: -5%;
    width: 400px; height: 400px;
    background: var(--nc-honey-light);
}
.nc-orb-2 {
    bottom: 0%; right: -10%;
    width: 500px; height: 500px;
    background: var(--nc-sage);
    opacity: 0.3;
}

/* ==========================================================================
   2. PHILOSOPHY
   ========================================================================== */

.nc-philosophy {
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

.nc-philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.nc-philosophy-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--nc-honey-deep);
    padding-top: 24px;
    position: sticky;
    top: 120px;
}

.nc-philosophy-label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--nc-honey-deep);
    margin-right: 12px;
    vertical-align: middle;
}

.nc-philosophy-text {
    font-family: var(--nc-font-display);
    font-size: clamp(28px, 3.6vw, 52px);
    font-weight: 400;
    line-height: 1.18;
    letter-spacing: -0.025em;
    color: var(--nc-ink);
}

.nc-philosophy-text em {
    font-style: italic;
    color: var(--nc-moss);
    font-weight: 300;
}

.nc-highlight {
    background: linear-gradient(180deg, transparent 60%, var(--nc-honey-pale) 60%);
    padding: 0 4px;
}

/* ==========================================================================
   3. PRODUCTS — BENTO GRID
   ========================================================================== */

.nc-products-section {
    padding: 80px 0 120px;
    position: relative;
    z-index: 2;
}

.nc-section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 60px;
    gap: 40px;
    flex-wrap: wrap;
}

.nc-section-header > div:first-child { max-width: 600px; }

.nc-section-header-right {
    max-width: 320px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--nc-charcoal);
    padding-bottom: 8px;
}

.nc-bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: 16px;
}

.nc-product-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: var(--nc-ivory);
    transition: all 0.6s var(--nc-ease);
    display: flex;
    flex-direction: column;
}

.nc-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -20px rgba(31, 58, 44, 0.25);
}

.nc-product-card-img {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--nc-honey-pale) 0%, var(--nc-cream-warm) 100%);
}

.nc-product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--nc-ease);
}

.nc-product-card:hover .nc-product-card-img img { transform: scale(1.08); }

.nc-product-card-info {
    padding: 24px;
    background: var(--nc-ivory);
    border-top: 1px solid rgba(31, 58, 44, 0.06);
}

.nc-product-card-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--nc-honey-deep);
    margin-bottom: 12px;
}

.nc-product-card-name {
    font-family: var(--nc-font-display) !important;
    font-size: 28px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    letter-spacing: -0.02em;
    color: var(--nc-ink) !important;
    margin: 0 0 6px 0 !important;
}

.nc-product-card-tagline {
    font-size: 13px;
    color: var(--nc-stone);
    margin-bottom: 16px;
    line-height: 1.4;
}

.nc-product-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nc-product-card-price {
    font-family: var(--nc-font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--nc-forest);
    letter-spacing: -0.02em;
}

.nc-product-card-price small {
    font-size: 12px;
    color: var(--nc-stone);
    font-weight: 400;
    margin-left: 4px;
}

.nc-product-card-shop {
    width: 42px;
    height: 42px;
    background: var(--nc-forest);
    color: var(--nc-honey-light);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--nc-ease);
    text-decoration: none;
}

.nc-product-card:hover .nc-product-card-shop {
    background: var(--nc-honey);
    color: var(--nc-ink);
    transform: rotate(-45deg);
}

.nc-product-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--nc-ivory);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--nc-rust);
    z-index: 2;
}

.nc-tag-green { color: var(--nc-moss); }
.nc-tag-honey { background: var(--nc-honey); color: var(--nc-ink); }

/* Bento layout */
.nc-bento-feature { grid-column: span 3; grid-row: span 2; flex-direction: row; }
.nc-bento-half { grid-column: span 3; grid-row: span 1; }
.nc-bento-third { grid-column: span 2; grid-row: span 1; }
.nc-bento-wide { grid-column: span 4; grid-row: span 1; flex-direction: row; }

.nc-bento-feature .nc-product-card-img,
.nc-bento-wide .nc-product-card-img { flex: 1; }

.nc-bento-feature .nc-product-card-info {
    flex: 1;
    border-top: none;
    border-left: 1px solid rgba(31, 58, 44, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 36px;
}

.nc-bento-feature .nc-product-card-name { font-size: 40px !important; }

.nc-bento-wide .nc-product-card-info {
    flex: 1;
    border-top: none;
    border-left: 1px solid rgba(31, 58, 44, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px;
}

/* ==========================================================================
   4. PROMO BAND
   ========================================================================== */

.nc-promo-band {
    margin: 0 var(--nc-gutter) 120px;
    background: var(--nc-forest);
    border-radius: 32px;
    padding: 80px clamp(32px, 5vw, 80px);
    color: var(--nc-cream);
    position: relative;
    overflow: hidden;
}

.nc-promo-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(232, 181, 71, 0.18) 0%, transparent 60%);
    pointer-events: none;
}

.nc-promo-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.nc-promo-title {
    font-family: var(--nc-font-display) !important;
    font-size: clamp(40px, 5.5vw, 76px) !important;
    font-weight: 400 !important;
    line-height: 0.98 !important;
    letter-spacing: -0.035em !important;
    color: var(--nc-cream) !important;
    margin: 0 0 24px 0 !important;
}

.nc-promo-title em {
    font-style: italic;
    color: var(--nc-honey-light);
    font-weight: 300;
}

.nc-promo-desc {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(250, 246, 236, 0.8);
    margin-bottom: 36px;
    max-width: 480px;
}

/* ==========================================================================
   5. STORY / FOUNDER
   ========================================================================== */

.nc-story-section {
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

.nc-story-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: center;
}

.nc-story-visual {
    position: relative;
    aspect-ratio: 4 / 5;
}

.nc-story-image {
    position: absolute;
    inset: 0;
    border-radius: 200px 200px 24px 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(31, 58, 44, 0.3);
}

.nc-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: saturate(1.05) contrast(1.02);
}

.nc-story-decor {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: var(--nc-honey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nc-ink);
    font-family: var(--nc-font-display);
    font-style: italic;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
    padding: 30px;
    box-shadow: 0 20px 40px -10px rgba(200, 148, 26, 0.4);
    animation: ncRotate 30s linear infinite;
}

.nc-story-content { padding-right: 20px; }

.nc-story-quote {
    font-family: var(--nc-font-display);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(24px, 2.4vw, 32px);
    line-height: 1.35;
    letter-spacing: -0.015em;
    color: var(--nc-charcoal);
    margin-bottom: 32px;
}

.nc-story-quote::before {
    content: '"';
    font-size: 80px;
    line-height: 0;
    color: var(--nc-honey);
    margin-right: 8px;
    vertical-align: -20px;
}

.nc-story-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.nc-author-line {
    width: 40px;
    height: 1px;
    background: var(--nc-whisper);
}

.nc-author-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--nc-ink);
    font-family: var(--nc-font-body);
}

.nc-author-title {
    font-size: 12px;
    color: var(--nc-stone);
}

.nc-story-promises {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 28px;
    background: var(--nc-cream-warm);
    border-radius: 20px;
    border: 1px solid rgba(31, 58, 44, 0.08);
}

.nc-promise {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--nc-charcoal);
    font-weight: 500;
}

.nc-promise-check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: var(--nc-forest);
    color: var(--nc-honey-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nc-promise-check svg { width: 11px; height: 11px; }

/* ==========================================================================
   6. PILLARS (Four Sacred Elements)
   ========================================================================== */

.nc-pillars-section {
    padding: 120px var(--nc-gutter);
    background: linear-gradient(180deg, var(--nc-cream) 0%, var(--nc-cream-warm) 100%);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.nc-pillars-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--nc-honey-light) 0%, transparent 70%);
    opacity: 0.3;
    filter: blur(80px);
}

.nc-pillars-section .nc-container {
    position: relative;
}

.nc-pillars-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 80px;
}

.nc-pillars-header .nc-eyebrow {
    display: inline-flex;
}

.nc-pillars-intro {
    margin-top: 24px;
    font-size: 16px;
    color: var(--nc-charcoal);
    line-height: 1.6;
}

.nc-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.nc-pillar {
    text-align: center;
    padding: 40px 24px;
    background: var(--nc-ivory);
    border-radius: 24px;
    border: 1px solid rgba(31, 58, 44, 0.06);
    transition: all 0.5s var(--nc-ease);
    position: relative;
    overflow: hidden;
}

.nc-pillar:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -20px rgba(31, 58, 44, 0.2);
    border-color: var(--nc-honey);
}

.nc-pillar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, var(--nc-honey-pale) 200%);
    opacity: 0;
    transition: opacity 0.5s var(--nc-ease);
}

.nc-pillar:hover::before { opacity: 0.4; }

.nc-pillar > * { position: relative; z-index: 1; }

.nc-pillar-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--nc-forest);
    color: var(--nc-honey-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s var(--nc-ease-bounce);
}

.nc-pillar:hover .nc-pillar-icon {
    background: var(--nc-honey);
    color: var(--nc-ink);
    transform: rotate(8deg) scale(1.05);
}

.nc-pillar-icon svg { width: 38px; height: 38px; }

.nc-pillar-num {
    position: absolute;
    top: 20px;
    left: 24px;
    font-family: var(--nc-font-display);
    font-style: italic;
    font-size: 14px;
    color: var(--nc-whisper);
}

.nc-pillar-name {
    font-family: var(--nc-font-display) !important;
    font-size: 24px !important;
    font-weight: 500 !important;
    letter-spacing: -0.02em;
    color: var(--nc-ink) !important;
    margin: 0 0 8px 0 !important;
}

.nc-pillar-tagline {
    font-family: var(--nc-font-script);
    font-size: 18px;
    color: var(--nc-honey-deep);
    margin-bottom: 16px;
}

.nc-pillar-desc {
    font-size: 13px;
    line-height: 1.55;
    color: var(--nc-stone);
}

/* ==========================================================================
   7. GUARANTEE
   ========================================================================== */

.nc-guarantee {
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

.nc-guarantee-card {
    background: var(--nc-ink);
    border-radius: 32px;
    padding: 80px clamp(32px, 5vw, 80px);
    color: var(--nc-cream);
    position: relative;
    overflow: hidden;
}

.nc-guarantee-card::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--nc-honey-deep) 0%, transparent 70%);
    opacity: 0.4;
}

.nc-guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

.nc-guarantee-stamp {
    width: 280px;
    height: 280px;
    margin: 0 auto;
    border: 2px solid var(--nc-honey);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--nc-honey-light);
    text-align: center;
    position: relative;
    animation: ncRotate 60s linear infinite;
}

.nc-guarantee-stamp::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px dashed rgba(232, 181, 71, 0.4);
    border-radius: 50%;
}

.nc-stamp-num {
    font-family: var(--nc-font-display);
    font-size: 64px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--nc-honey-light);
}

.nc-stamp-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 4px;
    color: var(--nc-honey-light);
}

.nc-stamp-bottom {
    position: absolute;
    bottom: 30px;
    font-family: var(--nc-font-script);
    font-size: 18px;
    color: var(--nc-honey-light);
}

.nc-guarantee-title {
    font-family: var(--nc-font-display) !important;
    font-size: clamp(36px, 4.5vw, 60px) !important;
    font-weight: 400 !important;
    line-height: 1.05 !important;
    letter-spacing: -0.03em !important;
    color: var(--nc-cream) !important;
    margin: 0 0 24px 0 !important;
}

.nc-guarantee-title em {
    font-style: italic;
    color: var(--nc-honey-light);
    font-weight: 300;
}

.nc-guarantee-desc {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(250, 246, 236, 0.75);
    margin-bottom: 32px;
    max-width: 480px;
}

/* ==========================================================================
   8. DUAL BAND (Newsletter + Distributor)
   ========================================================================== */

.nc-dual-band {
    padding: 0 0 120px;
    position: relative;
    z-index: 2;
}

.nc-dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.nc-dual-card {
    padding: 60px 48px;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
}

.nc-dual-newsletter {
    background: linear-gradient(135deg, var(--nc-honey-pale) 0%, var(--nc-cream-warm) 100%);
    color: var(--nc-ink);
}

.nc-dual-distributor {
    background: var(--nc-moss);
    color: var(--nc-cream);
}

.nc-dual-card h3 {
    font-family: var(--nc-font-display) !important;
    font-size: clamp(28px, 3vw, 40px) !important;
    font-weight: 400 !important;
    line-height: 1.05 !important;
    letter-spacing: -0.025em !important;
    margin: 0 0 20px 0 !important;
    color: inherit !important;
}

.nc-dual-card h3 em { font-style: italic; }
.nc-dual-newsletter h3 em { color: var(--nc-honey-deep); }
.nc-dual-distributor h3 em { color: var(--nc-honey-light); }

.nc-dual-card p {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 28px;
    opacity: 0.85;
}

.nc-newsletter-form {
    display: flex;
    gap: 8px;
    background: var(--nc-ivory);
    padding: 6px;
    border-radius: 100px;
    border: 1px solid rgba(31, 58, 44, 0.1);
}

.nc-newsletter-form input {
    flex: 1;
    border: none !important;
    background: transparent !important;
    padding: 14px 20px !important;
    font-family: inherit !important;
    font-size: 14px !important;
    color: var(--nc-ink) !important;
    outline: none !important;
    border-radius: 0 !important;
}

.nc-newsletter-form button {
    background: var(--nc-forest) !important;
    color: var(--nc-cream) !important;
    padding: 14px 28px !important;
    border-radius: 100px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
    border: none !important;
    cursor: pointer;
    transition: background 0.3s;
}

.nc-newsletter-form button:hover { background: var(--nc-ink) !important; }

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes ncFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes ncFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes ncFloatIn {
    from { opacity: 0; transform: scale(0.8) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes ncFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(2deg); }
}

@keyframes ncRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Scroll Reveal */
.nc-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s var(--nc-ease);
}

.nc-reveal.nc-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE — TABLET
   ========================================================================== */

@media (max-width: 1024px) {
    .nc-hero-grid { grid-template-columns: 1fr; gap: 60px; }
    .nc-hero-visual { max-width: 500px; margin: 0 auto; }
    .nc-hero-stats { gap: 32px; }
    
    .nc-philosophy-grid { grid-template-columns: 1fr; gap: 32px; }
    .nc-philosophy-label { position: static; }
    
    .nc-promo-grid { grid-template-columns: 1fr; gap: 40px; }
    
    .nc-story-grid { grid-template-columns: 1fr; gap: 60px; }
    .nc-story-content { padding-right: 0; }
    
    .nc-pillars-grid { grid-template-columns: repeat(2, 1fr); }
    
    .nc-guarantee-grid { grid-template-columns: 1fr; gap: 40px; }
    
    .nc-dual-grid { grid-template-columns: 1fr; }
    
    /* Bento simpler on tablet */
    .nc-bento { grid-template-columns: repeat(2, 1fr); }
    .nc-bento-feature, .nc-bento-half, .nc-bento-third, .nc-bento-wide {
        grid-column: span 1;
        grid-row: span 1;
        flex-direction: column;
    }
    .nc-bento-feature .nc-product-card-info,
    .nc-bento-wide .nc-product-card-info {
        border-left: none;
        border-top: 1px solid rgba(31, 58, 44, 0.06);
    }
    .nc-bento-feature .nc-product-card-name { font-size: 28px !important; }
}

/* ==========================================================================
   RESPONSIVE — MOBILE
   ========================================================================== */

@media (max-width: 640px) {
    .nc-hero { padding-top: 60px; padding-bottom: 60px; }
    .nc-hero-product-float { width: 160px; height: 160px; left: -20px; bottom: -30px; }
    .nc-hero-badge { padding: 12px 18px; font-size: 10px; right: -10px; }
    .nc-hero-stats { flex-wrap: wrap; gap: 24px; }
    .nc-stat-num { font-size: 28px; }
    
    .nc-promo-band { padding: 56px 24px; margin: 0 16px 80px; }
    
    .nc-pillars-grid { grid-template-columns: 1fr; gap: 16px; }
    .nc-pillars-section { padding: 80px var(--nc-gutter); }
    
    .nc-guarantee-card { padding: 56px 24px; }
    .nc-guarantee-stamp { width: 220px; height: 220px; }
    .nc-stamp-num { font-size: 48px; }
    
    .nc-dual-card { padding: 48px 28px; }
    .nc-newsletter-form { flex-direction: column; border-radius: 16px; padding: 8px; }
    .nc-newsletter-form button { border-radius: 12px !important; }
    
    .nc-story-promises { grid-template-columns: 1fr; }
    .nc-story-decor { width: 140px; height: 140px; font-size: 14px; bottom: -20px; right: -20px; padding: 20px; }
    
    .nc-bento { grid-template-columns: 1fr; }
}
