/* ============================================================
   NerveCalm — Self-Contained Framework Base
   Replaces Bootstrap + Mobirise theme + dropdown CSS.
   Everything below this line, plus the BRAND OVERRIDES that
   follow, is the ONLY CSS this site needs.
   ============================================================ */

/* ─── 1. RESET / NORMALIZE ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1f2937;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 1rem 0;
    color: #1f2937;
}
p { margin: 0 0 1rem 0; }
ul, ol { margin: 0 0 1rem 0; padding-left: 1.25rem; }
a { color: #0e7490; text-decoration: none; transition: color 0.2s; }
a:hover { color: #0c5e6e; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─── 2. CONTAINER ─────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

/* ─── 3. GRID (Bootstrap-compatible row + col classes) ─────── */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}
[class*="col-"] {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    width: 100%;
}

/* Mobile-first column widths (col-12 = full width by default) */
.col-12 { flex: 0 0 100%; max-width: 100%; }
.col-6  { flex: 0 0 50%;  max-width: 50%;  }

/* Medium breakpoint (≥768px) */
@media (min-width: 768px) {
    .col-md-3  { flex: 0 0 25%;        max-width: 25%; }
    .col-md-4  { flex: 0 0 33.3333%;   max-width: 33.3333%; }
    .col-md-5  { flex: 0 0 41.6667%;   max-width: 41.6667%; }
    .col-md-6  { flex: 0 0 50%;        max-width: 50%; }
    .col-md-7  { flex: 0 0 58.3333%;   max-width: 58.3333%; }
    .col-md-8  { flex: 0 0 66.6667%;   max-width: 66.6667%; }
    .col-md-12 { flex: 0 0 100%;       max-width: 100%; }
    .order-md-1 { order: 1; }
    .order-md-2 { order: 2; }
}

/* Large breakpoint (≥992px) */
@media (min-width: 992px) {
    .col-lg-8  { flex: 0 0 66.6667%; max-width: 66.6667%; }
    .col-lg-10 { flex: 0 0 83.3333%; max-width: 83.3333%; }
    .col-lg-12 { flex: 0 0 100%;     max-width: 100%; }
}

/* Flexbox utilities */
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.align-items-center { align-items: center; }
.align-items-stretch { align-items: stretch; }
.d-flex { display: flex; }
.d-block { display: block; }
.d-none { display: none; }

/* ─── 4. SPACING UTILITIES ─────────────────────────────────── */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }

/* Text alignment */
.text-center { text-align: center !important; }
.text-left   { text-align: left !important;   }
.text-right  { text-align: right !important;  }
.align-center { text-align: center; }
.text-black { color: #1f2937 !important; }
.text-white { color: #ffffff !important; }

/* ─── 5. DISPLAY TYPOGRAPHY (Mobirise classes) ─────────────── */
.display-1 { font-size: 3.25rem; font-weight: 800; line-height: 1.15; }
.display-2 { font-size: 2.5rem;  font-weight: 800; line-height: 1.2;  }
.display-3 { font-size: 2rem;    font-weight: 700; line-height: 1.25; }
.display-4 { font-size: 1.1rem;  font-weight: 500; line-height: 1.5;  }
.display-5 { font-size: 1rem;    font-weight: 500; line-height: 1.55; }
.display-7 { font-size: 1.05rem; font-weight: 400; line-height: 1.65; }

@media (max-width: 768px) {
    .display-1 { font-size: 2.25rem; }
    .display-2 { font-size: 1.75rem; }
    .display-3 { font-size: 1.5rem; }
}

.mbr-bold { font-weight: 700; }
.mbr-fonts-style { font-family: 'Inter', 'Manrope', sans-serif; }
.mbr-section-title { font-family: 'Manrope', 'Inter', sans-serif; font-weight: 800; }
.mbr-text { font-family: 'Inter', sans-serif; }

/* ─── 6. BASE BUTTON ───────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-appearance: none;
}
.btn:hover { text-decoration: none; }

/* ─── 7. NAVBAR (self-contained, no Bootstrap JS needed) ───── */
.navbar {
    width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(14, 116, 144, 0.08);
    padding: 0.75rem 0;
}
.navbar-fixed-top {
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.navbar-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.navbar-brand .navbar-caption,
.navbar-brand a {
    color: #0e7490;
    font-weight: 800;
    font-size: 1.5rem;
    font-family: 'Manrope', 'Inter', sans-serif;
    text-decoration: none;
    letter-spacing: -0.5px;
}

/* Mobile hamburger button */
.navbar-toggler {
    display: none;
    background: transparent;
    border: 1px solid rgba(14, 116, 144, 0.3);
    border-radius: 6px;
    padding: 0.4rem 0.6rem;
    cursor: pointer;
}
.navbar-toggler .hamburger {
    display: flex;
    flex-direction: column;
    width: 24px;
    height: 18px;
    justify-content: space-between;
}
.navbar-toggler .hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: #0e7490;
    border-radius: 2px;
}

/* Navbar collapse / list */
.navbar-collapse {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
    gap: 1.5rem;
}
.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
    align-items: center;
}
.navbar-nav .nav-item { list-style: none; }
.navbar-nav .nav-link {
    color: #1f2937;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    padding: 0.35rem 0;
    transition: color 0.2s;
}
.navbar-nav .nav-link:hover { color: #0e7490; }

.navbar-buttons {
    display: inline-flex;
    align-items: center;
}

/* Mobile breakpoint — collapse nav */
@media (max-width: 991px) {
    .navbar-toggler { display: inline-flex; order: 2; }
    .navbar-buttons { order: 3; }
    .navbar-brand { order: 1; flex: 1; }
    .navbar-collapse {
        display: none;
        flex: 1 0 100%;
        order: 4;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(14, 116, 144, 0.1);
    }
    .navbar-collapse.show { display: flex; flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0.25rem;
    }
    .navbar-nav .nav-link {
        padding: 0.6rem 0;
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.04);
    }
}

/* ─── 8. SECTION DEFAULTS ──────────────────────────────────── */
section { padding: 0; }
.menu, .menu2 { padding: 0; }
.content4, .content5, .content8, .content16, .header10, .header11, .features3, .features6, .features19, .gallery3, .image3 {
    padding: 3rem 0;
}

/* ─── 9. PARALLAX FALLBACK (no jarallax = static bg) ───────── */
.mbr-parallax-background { background-attachment: scroll !important; }

/* ─── 10. LINK ALIGNMENT FIX (was underlined raw) ──────────── */
.navbar-nav .nav-link, .navbar-brand a, .navbar-brand .navbar-caption {
    text-decoration: none;
}

/* ============================================================
   END OF SELF-CONTAINED FRAMEWORK BASE
   BRAND-SPECIFIC OVERRIDES FOLLOW BELOW
   ============================================================ */

/* ============================================================
   NerveCalm — Color Override (Calming Teal Palette)
   Overrides FemiCore base CSS (mbr-additional.css) without modification.
   Primary:   #0e7490  (deep teal — section bgs, H1 accents)
   Medium:    #14b8a6  (medium teal — icons, accents, ribbons)
   Dark:      #0c5e6e  (hover states)
   CTA:       #facc15  (yellow — unchanged, converts best)
   Wash:      #f0fdfa  (soft mint background tint)
   ============================================================ */

/* ----- BRAND COLOR VARIABLES ----- */
:root {
    --nc-primary: #0e7490;
    --nc-medium: #14b8a6;
    --nc-dark: #0c5e6e;
    --nc-cta: #facc15;
    --nc-cta-hover: #eab308;
    --nc-wash: #f0fdfa;
    --nc-text: #1f2937;
    --nc-text-light: #6b7280;
}

/* ============================================================
   SECTION BACKGROUNDS — was FemiCore pink #f58284, now deep teal
   ============================================================ */
.cid-tJaf2fkO51,
.cid-tJfKujCdgL,
.cid-tJfQHO0f5l,
.cid-vk6b6I5WtK,
.cid-uw0ZDfEAgR,
.cid-tJfTbFY2bB,
.cid-tJfOe1KHmS,
.cid-uu1IOTfyEu {
    background-color: var(--nc-primary) !important;
    background-image: linear-gradient(135deg, var(--nc-primary) 0%, var(--nc-dark) 100%) !important;
}

/* H1/H2 inside teal section headings — keep white */
.cid-tJaf2fkO51 h1, .cid-tJaf2fkO51 h2, .cid-tJaf2fkO51 .mbr-section-title,
.cid-tJfKujCdgL h1, .cid-tJfKujCdgL h2, .cid-tJfKujCdgL .mbr-section-title,
.cid-tJfQHO0f5l h1, .cid-tJfQHO0f5l h2, .cid-tJfQHO0f5l .mbr-section-title,
.cid-vk6b6I5WtK h1, .cid-vk6b6I5WtK h2, .cid-vk6b6I5WtK .mbr-section-title,
.cid-uw0ZDfEAgR h1, .cid-uw0ZDfEAgR h2, .cid-uw0ZDfEAgR .mbr-section-title,
.cid-tJfTbFY2bB h1, .cid-tJfTbFY2bB h2, .cid-tJfTbFY2bB .mbr-section-title,
.cid-tJfOe1KHmS h1, .cid-tJfOe1KHmS h2, .cid-tJfOe1KHmS .mbr-section-title,
.cid-uu1IOTfyEu h1, .cid-uu1IOTfyEu h2, .cid-uu1IOTfyEu .mbr-section-title {
    color: #ffffff !important;
}

/* ============================================================
   HEADING ACCENTS — was FemiCore green #007818
   ============================================================ */
h1.mbr-section-title, h2.mbr-section-title, .display-1, .display-2 {
    color: var(--nc-primary);
}

.cid-uJSDOmUcbI h1,
.cid-tJa5RDV0f1 h1,
.cid-tJajkNoSCp h1,
.cid-tJfCTzEpgO h1,
.cid-vk6eSDlZfw h1 {
    color: var(--nc-primary) !important;
}

/* Strong/emphasis inside hero, content sections */
strong, b {
    color: var(--nc-primary);
}

.cid-v5tcswg6BK strong,
.cid-uZIBCyAc0e strong,
.cid-v683RxfLLT strong,
.cid-tJfEBZE7yS strong,
.cid-vk6b8seL8U strong,
.cid-vk6eUNGoR4 strong,
.cid-v68aBiRy3K strong {
    color: var(--nc-primary);
}

/* ============================================================
   ICON BOXES + BULLET CIRCLES — was FemiCore green #22aa3d
   ============================================================ */
.iconbox, .icon-box,
.cid-uTScAroNyK .mbr-iconfont,
.cid-v68aBiRy3K .mbr-iconfont,
.cid-vk60DdX8ta .mbr-iconfont {
    color: var(--nc-medium) !important;
}

.cid-uTScAroNyK .features-icon-wrapper,
.cid-uTScAroNyK .card-img,
.cid-uTScAroNyK .ico-wrap {
    background-color: var(--nc-medium) !important;
    color: #ffffff !important;
}

/* Benefit checklist green dots */
.cid-v68aBiRy3K li::before,
.cid-v68aBiRy3K .list-group-item::before {
    background-color: var(--nc-medium) !important;
    color: #ffffff !important;
}

/* ============================================================
   BUTTONS — preserve yellow CTA, brand outline for secondary
   ============================================================ */
.btn-warning, .btn-warning:active {
    background-color: var(--nc-cta) !important;
    border-color: var(--nc-cta) !important;
    color: #1f2937 !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(250, 204, 21, 0.35);
    transition: all 0.2s ease;
}

.btn-warning:hover, .btn-warning:focus {
    background-color: var(--nc-cta-hover) !important;
    border-color: var(--nc-cta-hover) !important;
    color: #1f2937 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(250, 204, 21, 0.5);
}

.btn-primary, .btn-primary:active {
    background-color: var(--nc-primary) !important;
    border-color: var(--nc-primary) !important;
    color: #ffffff !important;
}

.btn-primary:hover {
    background-color: var(--nc-dark) !important;
    border-color: var(--nc-dark) !important;
}

.btn-success {
    background-color: var(--nc-medium) !important;
    border-color: var(--nc-medium) !important;
    color: #ffffff !important;
}

.btn-success:hover {
    background-color: var(--nc-primary) !important;
    border-color: var(--nc-primary) !important;
}

/* ============================================================
   LINKS — brand teal
   ============================================================ */
a, a:visited {
    color: var(--nc-primary);
    transition: color 0.2s ease;
}

a:hover {
    color: var(--nc-dark);
    text-decoration: none;
}

.text-danger {
    color: var(--nc-primary) !important;
}

.text-danger:hover {
    color: var(--nc-dark) !important;
}

/* ============================================================
   NAVBAR — clean white with teal accents
   ============================================================ */
.cid-tJkiqjPUPv {
    background-color: #ffffff !important;
    box-shadow: 0 2px 8px rgba(14, 116, 144, 0.08);
}

.cid-tJkiqjPUPv .nav-link {
    color: var(--nc-text) !important;
    font-weight: 500;
}

.cid-tJkiqjPUPv .nav-link:hover,
.cid-tJkiqjPUPv .nav-link:focus {
    color: var(--nc-primary) !important;
}

.cid-tJkiqjPUPv .navbar-brand .navbar-caption {
    color: var(--nc-primary) !important;
    font-weight: 700;
}

/* ============================================================
   HERO SECTION — soft mint wash background
   ============================================================ */
.cid-v5tcswg6BK {
    background-color: var(--nc-wash) !important;
    background-image: linear-gradient(180deg, #ffffff 0%, var(--nc-wash) 100%) !important;
}

.cid-v5tcswg6BK h1, .cid-v5tcswg6BK h2, .cid-v5tcswg6BK .mbr-section-title {
    color: var(--nc-primary) !important;
    font-size: 1.65rem !important;
    line-height: 1.25 !important;
    font-weight: 800 !important;
    margin-bottom: 1rem !important;
}

@media (min-width: 992px) {
    .cid-v5tcswg6BK h1, .cid-v5tcswg6BK h2, .cid-v5tcswg6BK .mbr-section-title {
        font-size: 1.95rem !important;
    }
}

@media (max-width: 575px) {
    .cid-v5tcswg6BK h1, .cid-v5tcswg6BK h2, .cid-v5tcswg6BK .mbr-section-title {
        font-size: 1.35rem !important;
    }
}

/* Star rating row under hero CTA */
.nc-rating {
    color: #f59e0b;
    font-size: 1.25rem;
    letter-spacing: 2px;
    margin-top: 1rem;
}

.nc-rating .nc-rating-text {
    color: var(--nc-text);
    font-size: 0.95rem;
    margin-left: 0.5rem;
}

/* ============================================================
   PRICING CARDS — 6-bottle centered, scaled 1.05x, ribbon
   ============================================================ */
.cid-tZiaeS1VRY {
    background-color: var(--nc-wash) !important;
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.nc-price-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.nc-price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(14, 116, 144, 0.15);
}

.nc-price-card.featured {
    transform: scale(1.05);
    border: 3px solid var(--nc-primary);
    box-shadow: 0 12px 36px rgba(14, 116, 144, 0.25);
    z-index: 2;
}

.nc-price-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.nc-price-header {
    background: var(--nc-primary);
    color: #ffffff;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin: -2.5rem -0.5rem 1.5rem -0.5rem;
}

.nc-price-card.featured .nc-price-header {
    background: linear-gradient(135deg, var(--nc-primary) 0%, var(--nc-medium) 100%);
}

.nc-ribbon {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #facc15 0%, #f59e0b 100%);
    color: #1f2937;
    padding: 0.4rem 1.5rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(250, 204, 21, 0.4);
    white-space: nowrap;
}

.nc-price-image {
    max-width: 80%;
    height: auto;
    margin: 1rem auto;
}

.nc-price-card.featured .nc-price-image {
    max-width: 90%;
}

.nc-supply {
    font-size: 1rem;
    color: var(--nc-text-light);
    font-weight: 600;
    margin: 0.5rem 0;
}

.nc-price-big {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--nc-primary);
    line-height: 1;
    margin: 0.5rem 0;
}

.nc-price-card.featured .nc-price-big {
    font-size: 3.25rem;
}

.nc-price-suffix {
    font-size: 1rem;
    color: var(--nc-text-light);
    font-weight: 500;
}

.nc-price-strike {
    color: #9ca3af;
    text-decoration: line-through;
    font-size: 1rem;
}

.nc-price-total {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--nc-text);
    margin: 1rem 0;
}

.nc-perks {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    text-align: left;
    font-size: 0.92rem;
    color: var(--nc-text);
}

.nc-perks li {
    padding: 0.35rem 0;
    padding-left: 1.6rem;
    position: relative;
}

.nc-perks li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--nc-medium);
    font-weight: 700;
    font-size: 1.1rem;
}

.nc-buy-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--nc-cta);
    color: #1f2937 !important;
    border: none;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(250, 204, 21, 0.35);
    margin-top: 0.5rem;
}

.nc-buy-btn:hover {
    background: var(--nc-cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(250, 204, 21, 0.5);
    color: #1f2937 !important;
}

/* ============================================================
   REVIEW CARDS
   ============================================================ */
.nc-reviews-section {
    background-color: var(--nc-wash);
    padding: 3rem 0 4rem 0;
}

.nc-review-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 1.75rem;
    box-shadow: 0 4px 16px rgba(14, 116, 144, 0.08);
    height: 100%;
    transition: all 0.2s ease;
}

.nc-review-card:hover {
    box-shadow: 0 8px 24px rgba(14, 116, 144, 0.15);
    transform: translateY(-2px);
}

.nc-review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.nc-review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 3px solid var(--nc-medium);
}

.nc-review-name {
    font-weight: 700;
    color: var(--nc-text);
    font-size: 1rem;
    margin: 0;
}

.nc-review-meta {
    font-size: 0.82rem;
    color: var(--nc-text-light);
    margin: 0;
}

.nc-review-stars {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.nc-review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--nc-text);
    margin-bottom: 0.75rem;
}

.nc-verified {
    display: inline-block;
    background: var(--nc-medium);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================================
   TRUST BADGES (gallery3) — Premium Look
   ============================================================ */
.cid-vk60DdX8ta {
    background-color: #ffffff !important;
    padding: 3rem 0 3.5rem 0;
}

.nc-trust-badge {
    text-align: center;
    padding: 1.5rem 0.75rem;
    transition: transform 0.25s ease;
}

.nc-trust-badge:hover {
    transform: translateY(-6px);
}

.nc-trust-badge-icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 1.1rem auto;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 25%, rgba(255,255,255,0.35) 0%, transparent 55%),
        linear-gradient(135deg, var(--nc-medium) 0%, var(--nc-primary) 55%, var(--nc-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 900;
    font-size: 0.95rem;
    line-height: 1.15;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow:
        0 8px 24px rgba(14, 116, 144, 0.28),
        inset 0 -3px 8px rgba(0, 0, 0, 0.18),
        inset 0 3px 6px rgba(255, 255, 255, 0.25),
        0 0 0 3px #ffffff,
        0 0 0 5px rgba(20, 184, 166, 0.5);
    text-align: center;
    padding: 0.6rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.nc-trust-badge:hover .nc-trust-badge-icon {
    box-shadow:
        0 14px 32px rgba(14, 116, 144, 0.38),
        inset 0 -3px 8px rgba(0, 0, 0, 0.18),
        inset 0 3px 6px rgba(255, 255, 255, 0.3),
        0 0 0 3px #ffffff,
        0 0 0 6px rgba(20, 184, 166, 0.75);
}

@media (max-width: 575px) {
    .nc-trust-badge-icon {
        width: 90px;
        height: 90px;
        font-size: 0.82rem;
    }
}

.nc-trust-badge-title {
    font-weight: 700;
    color: var(--nc-primary);
    font-size: 1rem;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nc-trust-badge-text {
    font-size: 0.88rem;
    color: var(--nc-text-light);
    line-height: 1.4;
}

/* ============================================================
   "WHAT IS" — LEFT-ALIGNED IMAGE + TOPIC BLOCKS
   ============================================================ */
.cid-uZIBCyAc0e, .cid-v683RxfLLT {
    background-color: #ffffff !important;
    padding: 2.5rem 0 !important;
}

.cid-uZIBCyAc0e .mbr-text,
.cid-uZIBCyAc0e h1, .cid-uZIBCyAc0e h2, .cid-uZIBCyAc0e h3,
.cid-v683RxfLLT .mbr-text,
.cid-v683RxfLLT h1, .cid-v683RxfLLT h2, .cid-v683RxfLLT h3 {
    text-align: left !important;
}

.nc-topic-block {
    margin-bottom: 1.5rem;
}

.nc-topic-block h3 {
    color: var(--nc-primary);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.nc-topic-block p {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--nc-text);
    margin: 0;
}

/* ============================================================
   HOW IT WORKS — paragraph step format
   ============================================================ */
.cid-tJfEBZE7yS {
    background-color: var(--nc-wash) !important;
    padding: 3rem 0 !important;
}

.nc-step {
    margin-bottom: 1.4rem;
    padding-left: 0;
}

.nc-step-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--nc-primary);
    margin-bottom: 0.4rem;
}

.nc-step-body {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--nc-text);
    margin: 0;
}

/* ============================================================
   CONTRAINDICATIONS, DIFFERENTIATORS — paragraph cards
   ============================================================ */
.cid-vk6b8seL8U {
    background-color: #ffffff !important;
    padding: 2.5rem 0 !important;
}

.cid-vk6eUNGoR4 {
    background-color: var(--nc-wash) !important;
    padding: 3rem 0 !important;
}

.nc-contra-item, .nc-diff-item {
    margin-bottom: 1.2rem;
    padding: 1rem 1.25rem;
    background: #ffffff;
    border-left: 4px solid var(--nc-medium);
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.nc-contra-item strong, .nc-diff-item strong {
    display: block;
    color: var(--nc-primary);
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.nc-contra-item p, .nc-diff-item p {
    margin: 0;
    font-size: 0.97rem;
    line-height: 1.55;
    color: var(--nc-text);
}

/* ============================================================
   INGREDIENTS — 5 deep blocks
   ============================================================ */
.cid-uTScAroNyK {
    background-color: #ffffff !important;
    padding: 3rem 0 !important;
}

.nc-ingredient-card {
    background: var(--nc-wash);
    border-radius: 14px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    border-left: 5px solid var(--nc-primary);
    box-shadow: 0 2px 12px rgba(14, 116, 144, 0.06);
}

.nc-ingredient-header {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
    gap: 0.75rem;
}

.nc-ingredient-emoji {
    font-size: 2rem;
}

.nc-ingredient-name {
    color: var(--nc-primary);
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0;
}

.nc-ingredient-dose {
    background: var(--nc-medium);
    color: #ffffff;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nc-ingredient-tagline {
    font-style: italic;
    color: var(--nc-text-light);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.nc-ingredient-body {
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--nc-text);
    margin-bottom: 0.6rem;
}

.nc-ingredient-key {
    font-size: 0.95rem;
    color: var(--nc-dark);
    padding-top: 0.6rem;
    border-top: 1px dashed rgba(14, 116, 144, 0.2);
    margin: 0;
}

.nc-ingredient-key strong {
    color: var(--nc-primary);
}

.nc-other-ingredients {
    font-size: 0.9rem;
    color: var(--nc-text-light);
    font-style: italic;
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--nc-wash);
    border-radius: 8px;
}

/* ============================================================
   BONUSES SECTION
   ============================================================ */
.nc-bonus-grid-section {
    background-color: #ffffff;
    padding: 3rem 0;
}

.nc-bonus-card {
    background: var(--nc-wash);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    border: 2px solid var(--nc-medium);
    box-shadow: 0 4px 16px rgba(14, 116, 144, 0.08);
}

.nc-bonus-tag {
    display: inline-block;
    background: var(--nc-cta);
    color: #1f2937;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.nc-bonus-image {
    max-width: 220px;
    height: auto;
    margin: 0 auto 1.25rem auto;
    display: block;
}

.nc-bonus-title {
    color: var(--nc-primary);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
}

.nc-bonus-retail {
    color: var(--nc-text-light);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.nc-bonus-retail span {
    text-decoration: line-through;
    color: #9ca3af;
}

.nc-bonus-retail strong {
    color: var(--nc-medium);
    font-weight: 800;
}

.nc-bonus-text {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--nc-text);
    margin: 0;
}

/* ============================================================
   BENEFITS CHECKLIST
   ============================================================ */
.cid-v68aBiRy3K {
    background-color: var(--nc-wash) !important;
    padding: 3rem 0 !important;
}

.nc-benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nc-benefit-list li {
    padding: 0.85rem 0 0.85rem 3rem;
    position: relative;
    font-size: 1.02rem;
    line-height: 1.55;
    color: var(--nc-text);
    border-bottom: 1px solid rgba(14, 116, 144, 0.08);
}

.nc-benefit-list li:last-child {
    border-bottom: none;
}

.nc-benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0.5rem;
    top: 0.85rem;
    width: 1.8rem;
    height: 1.8rem;
    background: var(--nc-medium);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
}

.nc-benefit-list li strong {
    color: var(--nc-primary);
}

/* ============================================================
   GUARANTEE BLOCK
   ============================================================ */
.nc-guarantee-section {
    background-color: var(--nc-wash);
    padding: 3.5rem 0;
}

.nc-guarantee-inner {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(14, 116, 144, 0.1);
    border: 3px solid var(--nc-medium);
}

.nc-guarantee-badge {
    max-width: 200px;
    height: auto;
    margin: 0 auto 1.5rem auto;
    display: block;
}

.nc-guarantee-title {
    color: var(--nc-primary);
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
}

.nc-guarantee-text {
    font-size: 1.02rem;
    line-height: 1.65;
    color: var(--nc-text);
    text-align: center;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.cid-uIDCtfhJnv {
    background-color: #ffffff !important;
    padding: 3rem 0 !important;
}

.nc-faq-item {
    background: var(--nc-wash);
    border-radius: 10px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(14, 116, 144, 0.1);
}

.nc-faq-question {
    padding: 1.15rem 1.5rem;
    cursor: pointer;
    font-weight: 700;
    color: var(--nc-primary);
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    transition: background 0.2s;
}

.nc-faq-question:hover {
    background: rgba(14, 116, 144, 0.04);
}

.nc-faq-question::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--nc-primary);
    transition: transform 0.2s;
}

details[open] .nc-faq-question::after {
    transform: rotate(45deg);
}

.nc-faq-answer {
    padding: 0 1.5rem 1.15rem 1.5rem;
    font-size: 0.97rem;
    line-height: 1.6;
    color: var(--nc-text);
    margin: 0;
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.cid-uu1IOTfyEu {
    background: linear-gradient(135deg, var(--nc-primary) 0%, var(--nc-dark) 100%) !important;
    padding: 4rem 0 !important;
    text-align: center;
}

.cid-uu1IOTfyEu * {
    color: #ffffff !important;
}

.nc-final-image {
    max-width: 350px;
    height: auto;
    margin: 0 auto 2rem auto;
    display: block;
}

.nc-final-pricing {
    margin: 1.5rem 0;
}

.nc-final-strike {
    color: rgba(255,255,255,0.6) !important;
    text-decoration: line-through;
    font-size: 1.3rem;
    display: block;
}

.nc-final-price {
    color: var(--nc-cta) !important;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin: 0.5rem 0;
    display: block;
}

.nc-final-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--nc-cta);
    color: #1f2937 !important;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 6px 20px rgba(250, 204, 21, 0.4);
    margin-top: 1rem;
}

.nc-final-btn:hover {
    background: var(--nc-cta-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(250, 204, 21, 0.55);
    color: #1f2937 !important;
}

/* ============================================================
   SCIENTIFIC REFERENCES
   ============================================================ */
.nc-refs-section {
    background-color: #ffffff;
    padding: 3rem 0;
}

.nc-refs-section h2 {
    color: var(--nc-primary);
    text-align: center;
    margin-bottom: 2rem;
}

.nc-ref-card {
    background: var(--nc-wash);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    border-left: 3px solid var(--nc-medium);
    margin-bottom: 0.75rem;
}

.nc-ref-card strong {
    color: var(--nc-primary);
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.nc-ref-card a {
    color: var(--nc-dark);
    font-size: 0.85rem;
    word-break: break-all;
}

.nc-refs-disclaimer {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--nc-text-light);
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--nc-wash);
    border-radius: 8px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.cid-tJg4YV3SdH {
    background-color: #1f2937 !important;
    color: #d1d5db !important;
    padding: 2.5rem 0 1.5rem 0 !important;
}

.cid-tJg4YV3SdH *, .cid-tJg4YV3SdH .mbr-text, .cid-tJg4YV3SdH p {
    color: #d1d5db !important;
}

.cid-tJg4YV3SdH a {
    color: #5eead4 !important;
    text-decoration: none;
}

.cid-tJg4YV3SdH a:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

.cid-tJg4YV3SdH .text-danger {
    color: #5eead4 !important;
}

.nc-footer-links {
    text-align: center;
    margin: 1rem 0;
    font-size: 0.95rem;
}

.nc-footer-links a {
    margin: 0 0.5rem;
}

.nc-footer-disclaimer {
    font-size: 0.82rem;
    line-height: 1.55;
    color: #9ca3af !important;
    max-width: 900px;
    margin: 1.5rem auto 0 auto;
    text-align: justify;
}

/* ============================================================
   HEADINGS BAR (content4) — clean teal H1 strip
   ============================================================ */
.cid-uJSDOmUcbI,
.cid-tJa5RDV0f1,
.cid-tJajkNoSCp,
.cid-tJfCTzEpgO,
.cid-vk6eSDlZfw {
    background-color: #ffffff !important;
    padding: 2.5rem 0 1rem 0 !important;
}

.cid-uJSDOmUcbI h1,
.cid-tJa5RDV0f1 h1,
.cid-tJajkNoSCp h1,
.cid-tJfCTzEpgO h1,
.cid-vk6eSDlZfw h1 {
    text-align: center;
    font-weight: 800;
    color: var(--nc-primary) !important;
    font-size: 2rem !important;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .cid-uJSDOmUcbI h1,
    .cid-tJa5RDV0f1 h1,
    .cid-tJajkNoSCp h1,
    .cid-tJfCTzEpgO h1,
    .cid-vk6eSDlZfw h1 {
        font-size: 1.5rem !important;
    }
}

/* ============================================================
   MOBILE OPTIMIZATIONS
   ============================================================ */
@media (max-width: 992px) {
    .nc-price-card.featured {
        transform: none;
        margin: 1.5rem 0;
    }
    .nc-price-card.featured:hover {
        transform: translateY(-4px);
    }
    .nc-price-big {
        font-size: 2.25rem;
    }
    .nc-price-card.featured .nc-price-big {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    /* Hero: H1 BEFORE product image on mobile */
    .cid-v5tcswg6BK .container .row {
        display: flex;
        flex-direction: column;
    }
    .cid-v5tcswg6BK .image-block-col {
        order: 2;
    }
    .cid-v5tcswg6BK .text-block-col {
        order: 1;
    }
    .nc-final-price {
        font-size: 2.25rem;
    }
    .nc-final-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    .nc-ingredient-name {
        font-size: 1.15rem;
    }
    .nc-guarantee-inner {
        padding: 1.5rem;
    }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.nc-text-brand { color: var(--nc-primary) !important; }
.nc-bg-wash { background-color: var(--nc-wash) !important; }
.nc-divider {
    border: none;
    border-top: 2px solid var(--nc-medium);
    width: 60px;
    margin: 1rem auto;
    opacity: 0.3;
}
