/* ==========================================================================
   NIRVANA AYURVEDIC WELLNESS — CORE STYLESHEET
   Design System: Apple x Forest Essentials x AG1 Minimal Luxury
   ========================================================================== */

:root {
    /* Color Palette */
    --clr-primary: #2E7D32;
    --clr-primary-dark: #1B5E20;
    --clr-secondary: #99EDC3;
    --clr-accent: #E8C547;
    --clr-bg: #FFFFFF;
    --clr-text: #222222;
    --clr-text-muted: #666666;
    --clr-card: #F7FAF8;
    --clr-border: #EAEAEA;

    /* Typography */
    --font-heading: 'DM Sans', sans-serif;
    --font-body: 'Poppins', sans-serif;

    /* Spacing & Layout */
    --container-max: 1280px;
    --section-spacing: 110px;
    
    /* Effects */
    --shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 20px 50px rgba(46, 125, 50, 0.12);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

.nirvana-body {
    font-family: var(--font-body);
    background-color: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography Utility */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    color: var(--clr-text);
    letter-spacing: -0.02em;
}

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

ul {
    list-style: none;
}

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

.nrv-container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Common Section Header */
.nrv-section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px auto;
}

.nrv-section-header__tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--clr-primary);
    background: rgba(46, 125, 50, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.nrv-section-header__title {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.nrv-section-header__subtitle {
    color: var(--clr-text-muted);
    font-size: 1.1rem;
}

/* Glass & Card Components */
.glass-card {
    background: rgba(247, 250, 248, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(234, 234, 234, 0.8);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
    border-color: var(--clr-secondary);
}

/* Buttons */
.nrv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 18px 36px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    position: relative;
    overflow: hidden;
}

.nrv-btn--primary {
    background: var(--clr-primary);
    color: #FFFFFF;
    box-shadow: 0 10px 25px rgba(46, 125, 50, 0.25);
}

.nrv-btn--primary:hover {
    background: var(--clr-primary-dark);
    transform: translateY(-2px);
}

.nrv-btn--ghost {
    background: transparent;
    color: var(--clr-primary);
    border: 2px solid var(--clr-primary);
}

.nrv-btn--ghost:hover {
    background: rgba(46, 125, 50, 0.06);
}

.nrv-btn--accent {
    background: var(--clr-accent);
    color: var(--clr-text);
}

.nrv-btn--accent:hover {
    background: #dfb937;
    transform: scale(1.02);
}

.nrv-btn--large {
    padding: 22px 48px;
    font-size: 1.2rem;
    width: 100%;
}

.nrv-btn-link {
    background: none;
    border: none;
    color: var(--clr-primary);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    padding-top: 12px;
}

/* Badges */
.nrv-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 24px;
}

.nrv-badge--gold {
    background: rgba(232, 197, 71, 0.2);
    color: #9c8018;
}

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */
.nrv-hero {
    padding: 80px 0 100px 0;
    position: relative;
    overflow: hidden;
}

.nrv-hero__container {
    display: grid;
    grid-template-columns: 1.1f 0.9fr;
    align-items: center;
    gap: 64px;
}

.nrv-hero__title {
    font-size: 3.75rem;
    margin-bottom: 24px;
}

.nrv-hero__subtitle {
    font-size: 1.25rem;
    color: var(--clr-text-muted);
    margin-bottom: 40px;
    max-width: 560px;
}

.nrv-hero__stats {
    display: flex;
    gap: 40px;
    margin-bottom: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--clr-border);
}

.nrv-stat__number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--clr-primary);
    font-family: var(--font-heading);
}

.nrv-stat__unit {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-primary);
}

.nrv-stat__label {
    display: block;
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    line-height: 1.3;
}

.nrv-hero__actions {
    display: flex;
    gap: 20px;
}

.nrv-hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nrv-hero__glow {
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, var(--clr-secondary) 0%, rgba(255,255,255,0) 70%);
    opacity: 0.5;
    z-index: -1;
}

.nrv-hero__product-img {
    max-height: 560px;
    z-index: 1;
}

.nrv-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
}

.nrv-floating-card--left {
    top: 20%;
    left: -20px;
}

.nrv-floating-card--right {
    bottom: 15%;
    right: -10px;
}

.nrv-floating-card__icon {
    font-size: 1.8rem;
}

.nrv-floating-card strong {
    display: block;
    font-size: 0.9rem;
}

.nrv-floating-card span {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
}

/* ==========================================================================
   2. TRUST BADGES
   ========================================================================== */
.nrv-trust {
    padding: 40px 0;
}

.nrv-trust__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.nrv-trust__item {
    padding: 20px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.nrv-trust__icon {
    font-size: 1.75rem;
}

.nrv-trust__text {
    font-size: 0.85rem;
    font-weight: 600;
}

/* ==========================================================================
   3. WHY CHOOSE US
   ========================================================================== */
.nrv-why {
    padding: var(--section-spacing) 0;
}

.nrv-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.nrv-card--premium {
    padding: 48px 36px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
}

.nrv-card--premium:hover {
    background: #FFFFFF;
    box-shadow: var(--shadow-hover);
    border-color: var(--clr-secondary);
}

.nrv-card__icon-wrap {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.nrv-card__title {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.nrv-card__text {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   4. BENEFITS
   ========================================================================== */
.nrv-benefits {
    padding: var(--section-spacing) 0;
    background: linear-gradient(180deg, var(--clr-bg) 0%, #FAFCFB 100%);
}

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

.nrv-benefit-card {
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.nrv-benefit-card__icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.nrv-benefit-card__title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.nrv-benefit-card__desc {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

/* ==========================================================================
   5. INGREDIENTS
   ========================================================================== */
.nrv-ingredients {
    padding: var(--section-spacing) 0;
}

.nrv-ingredients__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.nrv-ingredient-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.nrv-ingredient-card--highlight {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 24px;
    align-items: center;
    background: #FFFFFF;
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--clr-secondary);
}

.nrv-ingredient-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--clr-primary);
    color: #FFF;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}

.nrv-ingredient-card__img-wrap {
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 1;
}

.nrv-ingredient-card__img-wrap--small {
    margin-bottom: 20px;
}

.nrv-ingredient-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.nrv-ingredient-card:hover img {
    transform: scale(1.08);
}

.nrv-ingredient-card__title {
    font-size: 1.35rem;
    margin-bottom: 4px;
}

.nrv-ingredient-card__latin {
    display: block;
    font-size: 0.85rem;
    color: var(--clr-primary);
    font-style: italic;
    margin-bottom: 14px;
}

.nrv-ingredient-card__short {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
}

.nrv-ingredient-card__details {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed var(--clr-border);
    font-size: 0.88rem;
    color: var(--clr-text);
}

/* ==========================================================================
   6. FORMULA SYNERGY INFOGRAPHIC
   ========================================================================== */
.nrv-synergy {
    padding: var(--section-spacing) 0;
}

.nrv-synergy__canvas {
    position: relative;
    max-width: 800px;
    height: 500px;
    margin: 0 auto;
}

.nrv-synergy__svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.nrv-synergy__path {
    fill: none;
    stroke: var(--clr-secondary);
    stroke-width: 3;
    stroke-dasharray: 6;
    animation: dashLine 20s linear infinite;
}

.nrv-synergy__node {
    position: absolute;
    z-index: 2;
    padding: 20px;
    width: 200px;
    text-align: center;
    cursor: pointer;
}

.nrv-synergy__node--center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: var(--clr-primary);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 0 40px rgba(46, 125, 50, 0.4);
}

.nrv-synergy__node--tl { top: 20px; left: 20px; }
.nrv-synergy__node--bl { bottom: 20px; left: 20px; }
.nrv-synergy__node--tr { top: 20px; right: 20px; }
.nrv-synergy__node--br { bottom: 20px; right: 20px; }

.nrv-synergy__node p {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    margin-top: 6px;
}

/* ==========================================================================
   7. HOW IT WORKS
   ========================================================================== */
.nrv-how {
    padding: var(--section-spacing) 0;
}

.nrv-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.nrv-steps__line {
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--clr-border);
    z-index: 0;
}

.nrv-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.nrv-step__circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 2px solid var(--clr-primary);
    color: var(--clr-primary);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    box-shadow: var(--shadow-soft);
}

.nrv-step__title {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.nrv-step__desc {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}

/* ==========================================================================
   8. 30/60/90 DAY JOURNEY
   ========================================================================== */
.nrv-journey {
    padding: var(--section-spacing) 0;
}

.nrv-journey__timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.nrv-journey__card {
    padding: 40px 32px;
    border-top: 4px solid var(--clr-border);
}

.nrv-journey__card--active {
    border-top-color: var(--clr-primary);
    transform: scale(1.04);
}

.nrv-journey__period {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--clr-primary);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.nrv-journey__phase {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.nrv-journey__list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: var(--clr-text-muted);
}

.nrv-journey__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--clr-primary);
    font-weight: 700;
}

/* ==========================================================================
   9. BEFORE VS AFTER SLIDER
   ========================================================================== */
.nrv-comparison {
    padding: var(--section-spacing) 0;
}

.nrv-slider-container {
    position: relative;
    max-width: 960px;
    height: 540px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    user-select: none;
}

.nrv-slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.nrv-slider-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nrv-slider-img--before {
    width: 50%;
    overflow: hidden;
}

.nrv-slider-img--before img {
    width: 960px;
    max-width: none;
}

.nrv-slider-label {
    position: absolute;
    bottom: 24px;
    padding: 8px 16px;
    background: rgba(0,0,0,0.7);
    color: #FFF;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 4px;
}

.nrv-slider-label--left { left: 24px; }
.nrv-slider-label--right { right: 24px; }

.nrv-slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 40px;
    height: 100%;
    transform: translateX(-50%);
    cursor: ew-resize;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.nrv-slider-handle__line {
    width: 2px;
    flex-grow: 1;
    background: #FFFFFF;
}

.nrv-slider-handle__btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #FFFFFF;
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* ==========================================================================
   10. DOSAGE ROUTINE
   ========================================================================== */
.nrv-dosage {
    padding: var(--section-spacing) 0;
}

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

.nrv-dosage__card {
    padding: 36px 28px;
}

.nrv-dosage__icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.nrv-dosage__card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.nrv-dosage__card p {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}

/* ==========================================================================
   11. WHO SHOULD USE / AVOID
   ========================================================================== */
.nrv-candidates {
    padding: 60px 0 var(--section-spacing) 0;
}

.nrv-candidates__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.nrv-candidates__box {
    padding: 48px;
}

.nrv-candidates__box--use { border-left: 6px solid var(--clr-primary); }
.nrv-candidates__box--avoid { border-left: 6px solid #D32F2F; }

.nrv-candidates__heading {
    font-size: 1.5rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nrv-candidates__list li {
    margin-bottom: 16px;
    font-size: 1rem;
    color: var(--clr-text-muted);
    position: relative;
    padding-left: 24px;
}

.nrv-candidates__box--use .nrv-candidates__list li::before {
    content: "•";
    color: var(--clr-primary);
    position: absolute;
    left: 8px;
    font-weight: 800;
}

.nrv-candidates__box--avoid .nrv-candidates__list li::before {
    content: "•";
    color: #D32F2F;
    position: absolute;
    left: 8px;
    font-weight: 800;
}

/* ==========================================================================
   12. SPECIFICATIONS TABLE
   ========================================================================== */
.nrv-specs {
    padding: var(--section-spacing) 0;
}

.nrv-specs__wrapper {
    max-width: 860px;
    margin: 0 auto;
    overflow: hidden;
}

.nrv-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.nrv-table th, .nrv-table td {
    padding: 22px 32px;
    border-bottom: 1px solid var(--clr-border);
}

.nrv-table tr:last-child th, .nrv-table tr:last-child td {
    border-bottom: none;
}

.nrv-table th {
    width: 40%;
    font-weight: 600;
    color: var(--clr-text);
}

.nrv-table td {
    color: var(--clr-text-muted);
}

/* ==========================================================================
   13. REVIEWS SLIDER
   ========================================================================== */
.nrv-reviews {
    padding: var(--section-spacing) 0;
    overflow: hidden;
}

.nrv-reviews-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.nrv-reviews-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 24px;
}

.nrv-review-card {
    min-width: 480px;
    padding: 40px;
}

.nrv-review-card__stars {
    color: var(--clr-accent);
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.nrv-review-card__quote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--clr-text);
    margin-bottom: 24px;
}

.nrv-review-card__author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nrv-verified {
    color: var(--clr-primary);
    font-size: 0.8rem;
    font-weight: 600;
}

.nrv-reviews-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
}

.nrv-reviews-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--clr-border);
    background: #FFFFFF;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.nrv-reviews-btn:hover {
    background: var(--clr-primary);
    color: #FFFFFF;
    border-color: var(--clr-primary);
}

/* ==========================================================================
   14. UGC MASONRY GALLERY
   ========================================================================== */
.nrv-ugc {
    padding: var(--section-spacing) 0;
}

.nrv-ugc__masonry {
    columns: 3;
    column-gap: 24px;
}

.nrv-ugc__item {
    margin-bottom: 24px;
    break-inside: avoid;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

.nrv-ugc__item img {
    width: 100%;
    transition: transform 0.6s ease;
}

.nrv-ugc__item:hover img {
    transform: scale(1.06);
}

/* ==========================================================================
   15. FAQ ACCORDION
   ========================================================================== */
.nrv-faq {
    padding: var(--section-spacing) 0;
}

.nrv-accordion {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nrv-accordion__item {
    overflow: hidden;
}

.nrv-accordion__trigger {
    width: 100%;
    padding: 26px 32px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--clr-text);
}

.nrv-accordion__icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.nrv-accordion__trigger[aria-expanded="true"] .nrv-accordion__icon {
    transform: rotate(45deg);
}

.nrv-accordion__panel {
    padding: 0 32px 26px 32px;
    color: var(--clr-text-muted);
    line-height: 1.7;
}

/* ==========================================================================
   16. SPECIAL OFFER
   ========================================================================== */
.nrv-offer {
    padding: var(--section-spacing) 0;
}

.nrv-offer__card {
    max-width: 960px;
    margin: 0 auto;
    padding: 64px;
    text-align: center;
    background: #FFFFFF;
    border: 2px solid var(--clr-secondary);
    box-shadow: 0 25px 60px rgba(46, 125, 50, 0.1);
}

.nrv-offer__title {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.nrv-countdown {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: var(--clr-card);
    padding: 16px 32px;
    border-radius: 50px;
    margin-bottom: 48px;
}

.nrv-countdown__unit strong {
    font-size: 1.8rem;
    color: var(--clr-primary);
    font-family: var(--font-heading);
}

.nrv-countdown__unit span {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
}

.nrv-bundles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
    text-align: left;
}

.nrv-bundle {
    position: relative;
    border: 2px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 24px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.nrv-bundle.active {
    border-color: var(--clr-primary);
    background: rgba(46, 125, 50, 0.04);
}

.nrv-bundle input {
    position: absolute;
    opacity: 0;
}

.nrv-bundle__tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--clr-accent);
    color: var(--clr-text);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.nrv-bundle__info strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.nrv-bundle__info span {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

.nrv-bundle__pricing {
    margin-top: 16px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.nrv-price--old {
    text-decoration: line-through;
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

.nrv-price--current {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--clr-primary);
}

.nrv-guarantee {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

/* ==========================================================================
   17. FINAL CTA
   ========================================================================== */
.nrv-final-cta {
    padding: 60px 0 120px 0;
}

.nrv-final-cta__box {
    background: var(--clr-primary);
    color: #FFFFFF;
    border-radius: var(--radius-lg);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: radial-gradient(circle at 80% 20%, rgba(153, 237, 195, 0.2) 0%, transparent 60%);
}

.nrv-final-cta__content h2 {
    color: #FFFFFF;
    font-size: 3rem;
    margin-bottom: 16px;
}

.nrv-final-cta__content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 40px auto;
}