@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800;900&family=Nunito:wght@400;500;600;700;800;900&display=swap');

/* =============================================
   OFFICIAL-NERVEHARMONY.COM — FOREST GREEN / LIME
   CSS: drelvox.css | prefix: dx-
   ============================================= */
:root {
  --grn:    #1a4a2e;
  --grn2:   #0f3020;
  --grn3:   #235c3a;
  --grn4:   #e4f4ea;
  --grn5:   #b2d9be;
  --lime:   #6abf4b;
  --lime2:  #52a038;
  --lime3:  #f0faeb;
  --lime4:  #c8edb4;
  --white:  #ffffff;
  --light:  #f5faf6;
  --light2: #eaf5ed;
  --text:   #0f2818;
  --muted:  #2d5c3e;
  --border: #b8d8c2;
  --gray:   #6a9878;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100%; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  line-height: 1.9;
  color: var(--text);
  background: var(--white);
  touch-action: manipulation;
  -webkit-text-size-adjust: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }

h1 { font-family: 'Syne', sans-serif; font-size: clamp(34px,4.5vw,62px); font-weight: 900; line-height: 1.08; color: var(--grn2); }
h2 { font-family: 'Syne', sans-serif; font-size: clamp(28px,3.4vw,46px); font-weight: 800; line-height: 1.18; color: var(--grn2); }
h3 { font-size: clamp(19px,2vw,22px); font-weight: 800; color: var(--text); }
p  { font-size: clamp(18px,1.8vw,20px); color: var(--muted); line-height: 1.9; }

.dx-tag { display: inline-block; font-size: 11px; font-weight: 900; letter-spacing: 2.5px; text-transform: uppercase; color: var(--lime2); background: var(--lime3); padding: 6px 16px; border-radius: 999px; border: 1px solid var(--lime4); margin-bottom: 12px; }

/* NAV */
.dx-nav { background: var(--grn2); position: sticky; top: 0; z-index: 200; box-shadow: 0 2px 20px rgba(15,48,32,0.5); width: 100%; }
.dx-nav-row { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; height: 62px; flex-wrap: nowrap; }
.dx-brand { flex-shrink: 0; font-family: 'Syne', sans-serif; font-size: 19px; font-weight: 900; color: var(--white); letter-spacing: -0.3px; }
.dx-brand em { color: var(--lime4); font-style: normal; }
.dx-nav-links { display: flex; align-items: center; gap: 2px; flex-wrap: nowrap; flex: 1; justify-content: center; min-width: 0; overflow: hidden; }
.dx-nav-links a { color: rgba(255,255,255,0.6); font-size: 14px; font-weight: 700; padding: 6px 11px; border-radius: 6px; white-space: nowrap; transition: all .15s; }
.dx-nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.dx-nav-btn { flex-shrink: 0; background: var(--lime); color: var(--white) !important; font-weight: 900; border-radius: 8px; padding: 10px 20px; font-size: 15px; white-space: nowrap; display: inline-block; transition: background .2s; }
.dx-nav-btn:hover { background: var(--lime2); color: var(--white) !important; }
@media (max-width: 767px) { .dx-nav-links { display: none; } .dx-nav-row { padding: 0 14px; height: 56px; justify-content: space-between; } .dx-brand { font-size: 15px; } .dx-nav-btn { font-size: 13px; padding: 9px 14px; flex-shrink: 0; } }

/* BUTTONS */
.dx-btn { display: inline-block; padding: 16px 36px; border-radius: 9px; font-size: 18px; font-weight: 900; cursor: pointer; border: none; transition: all .2s; text-align: center; line-height: 1; font-family: 'Nunito', sans-serif; }
.dx-btn-lime { background: var(--lime); color: var(--white); }
.dx-btn-lime:hover { background: var(--lime2); color: var(--white); }
.dx-btn-grn { background: var(--grn); color: var(--white); }
.dx-btn-grn:hover { background: var(--grn2); color: var(--white); }
.dx-btn-out { background: transparent; color: var(--grn); border: 2px solid var(--grn); }
.dx-btn-out:hover { background: var(--grn); color: var(--white); }
.dx-btn-out-w { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.dx-btn-out-w:hover { background: var(--white); color: var(--grn2); }

/* LAYOUT */
.dx-wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.dx-wrap-sm { max-width: 840px; margin: 0 auto; padding: 0 24px; }
.dx-sec { padding: 86px 0; }
.dx-hd { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.dx-hd p { margin-top: 16px; font-size: 20px; }

/* HERO */
.dx-hero { background: var(--grn2); padding: 86px 0 96px; position: relative; overflow: hidden; }
.dx-hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(106,191,75,0.15) 0%, transparent 70%); pointer-events: none; }
.dx-hero-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 60px; position: relative; }
.dx-hero h1 { color: var(--white); margin-bottom: 14px; }
.dx-hero-deck { color: var(--lime4); font-size: 20px; font-weight: 700; margin-bottom: 16px; }
.dx-hero-sub { color: rgba(255,255,255,0.75); font-size: 20px; line-height: 1.9; margin-bottom: 22px; }
.dx-hero-ul { list-style: none; margin: 20px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.dx-hero-ul li { display: flex; align-items: flex-start; gap: 12px; font-size: 19px; color: rgba(255,255,255,0.9); font-weight: 700; }
.dx-hero-ul li::before { content: "✔"; color: var(--lime); font-weight: 900; flex-shrink: 0; margin-top: 3px; }
.dx-hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }
.dx-hero-pic { width: 300px; flex-shrink: 0; }
.dx-hero-pic img { filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4)); }
.dx-star-row { display: flex; align-items: center; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.dx-stars { color: #f5c842; font-size: 22px; }
.dx-star-txt { font-size: 17px; color: rgba(255,255,255,0.6); font-weight: 700; }

/* WHY GRID */
.dx-why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.dx-why-card { text-align: center; padding: 28px 16px; border: 2px solid var(--border); border-radius: 16px; background: var(--white); transition: transform .2s, box-shadow .2s; }
.dx-why-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(26,74,46,0.1); }
.dx-why-card img { height: 56px; width: auto; margin: 0 auto 14px; object-fit: contain; }
.dx-why-card h3 { font-size: 16px; margin-bottom: 7px; }
.dx-why-card p { font-size: 14px; }

/* SPLIT */
.dx-split { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center; }
.dx-split img { border-radius: 20px; width: 100%; box-shadow: 0 12px 40px rgba(26,74,46,0.14); }
.dx-split h2 { margin-bottom: 16px; }
.dx-split p { margin-bottom: 14px; }
.dx-chk-ul { list-style: none; margin: 16px 0; }
.dx-chk-ul li { display: flex; align-items: flex-start; gap: 12px; font-size: 19px; color: var(--text); padding: 8px 0; border-bottom: 1px solid var(--border); font-weight: 700; }
.dx-chk-ul li:last-child { border-bottom: none; }
.dx-chk-ul li::before { content: "✔"; color: var(--lime); font-weight: 900; flex-shrink: 0; margin-top: 3px; }

/* REVIEWS */
.dx-rev-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.dx-rev-card { padding: 30px; background: var(--white); border: 2px solid var(--border); border-radius: 18px; box-shadow: 0 4px 18px rgba(26,74,46,0.06); }
.dx-rev-card img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; margin-bottom: 16px; border: 3px solid var(--grn5); }
.dx-rev-stars { color: #f5c842; font-size: 20px; margin-bottom: 10px; }
.dx-rev-name { font-size: 18px; font-weight: 900; color: var(--text); }
.dx-rev-place { font-size: 14px; color: var(--gray); margin-bottom: 14px; font-weight: 700; }
.dx-rev-card p { font-size: 17px; color: var(--muted); font-style: italic; line-height: 1.85; }
.dx-rev-tick { font-size: 13px; color: var(--lime2); font-weight: 900; margin-top: 14px; }

/* INGREDIENTS */
.dx-ing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.dx-ing-card { padding: 28px; background: var(--white); border: 2px solid var(--border); border-radius: 16px; transition: box-shadow .2s; }
.dx-ing-card:hover { box-shadow: 0 8px 24px rgba(26,74,46,0.1); }
.dx-ing-card img { width: 72px; height: 72px; border-radius: 12px; object-fit: cover; margin-bottom: 14px; border: 2px solid var(--border); }
.dx-ing-card h3 { font-size: 20px; margin-bottom: 8px; }
.dx-ing-card p { font-size: 16px; }

/* BENEFITS */
.dx-ben-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.dx-ben-card { padding: 28px; background: var(--white); border: 2px solid var(--border); border-radius: 16px; }
.dx-ben-ico { font-size: 32px; margin-bottom: 14px; }
.dx-ben-card h3 { font-size: 20px; margin-bottom: 8px; }
.dx-ben-card p { font-size: 17px; }

/* PRICING */
.dx-pkg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.dx-pkg { padding: 34px 24px; background: var(--white); border: 2px solid var(--border); border-radius: 20px; text-align: center; transition: all .2s; }
.dx-pkg:hover { box-shadow: 0 12px 36px rgba(26,74,46,0.12); transform: translateY(-3px); }
.dx-pkg.dx-best { border-color: var(--lime); box-shadow: 0 8px 32px rgba(106,191,75,0.2); }
.dx-pkg-pill { display: inline-block; font-size: 12px; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; background: var(--lime); color: var(--white); margin-bottom: 14px; }
.dx-pkg-pill.dx-dark { background: var(--grn); }
.dx-pkg img { max-width: 150px; margin: 0 auto 16px; }
.dx-pkg h3 { font-size: 22px; color: var(--text); margin-bottom: 6px; }
.dx-pkg-days { font-size: 16px; color: var(--muted); margin-bottom: 14px; font-weight: 700; }
.dx-price { font-size: 52px; font-weight: 900; color: var(--grn2); line-height: 1; font-family: 'Syne', sans-serif; }
.dx-price-u { font-size: 16px; font-weight: 400; color: var(--muted); }
.dx-was { font-size: 15px; color: var(--gray); text-decoration: line-through; margin: 6px 0 4px; }
.dx-tot { font-size: 17px; font-weight: 800; color: var(--text); margin-bottom: 16px; }
.dx-fl { list-style: none; text-align: left; margin-bottom: 20px; }
.dx-fl li { font-size: 16px; color: var(--muted); padding: 5px 0; display: flex; gap: 10px; align-items: flex-start; font-weight: 700; }
.dx-fl li::before { content: "✔"; color: var(--lime); font-weight: 900; flex-shrink: 0; }

/* BONUSES */
.dx-bonus-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.dx-bonus-card { padding: 18px; background: var(--white); border: 2px solid var(--border); border-radius: 14px; text-align: center; }
.dx-bonus-card img { max-width: 90px; margin: 0 auto 12px; border-radius: 8px; }
.dx-bonus-card h3 { font-size: 14px; margin-bottom: 6px; }
.dx-bonus-card p { font-size: 13px; }
.dx-free { font-size: 11px; color: var(--lime2); font-weight: 900; margin-top: 8px; text-transform: uppercase; letter-spacing: 0.5px; }

/* GUARANTEE */
.dx-guar { background: var(--grn2); padding: 86px 0; }
.dx-guar-row { display: grid; grid-template-columns: auto 1fr; gap: 60px; align-items: center; }
.dx-guar-row img { max-width: 200px; }
.dx-guar-row h2 { color: var(--white); margin-bottom: 16px; }
.dx-guar-row p { color: rgba(255,255,255,0.72); font-size: 19px; margin-bottom: 12px; }
.dx-guar-ul { list-style: none; margin: 18px 0; }
.dx-guar-ul li { color: rgba(255,255,255,0.9); font-size: 19px; padding: 6px 0; display: flex; gap: 12px; font-weight: 700; }
.dx-guar-ul li::before { content: "✔"; color: var(--lime4); font-weight: 900; }

/* HOW TO USE */
.dx-use-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.dx-use-card { padding: 28px; background: var(--white); border: 2px solid var(--border); border-radius: 14px; }
.dx-use-n { width: 48px; height: 48px; background: var(--grn4); color: var(--grn2); font-size: 20px; font-weight: 900; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; border: 2px solid var(--grn5); font-family: 'Syne', sans-serif; }
.dx-use-card h3 { font-size: 20px; margin-bottom: 8px; }
.dx-use-card p { font-size: 17px; }

/* FAQ */
.dx-faq-item { border: 2px solid var(--border); border-radius: 14px; margin-bottom: 10px; overflow: hidden; }
.dx-fq { width: 100%; background: var(--white); border: none; text-align: left; padding: 22px 28px; font-size: 19px; font-weight: 800; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 14px; font-family: 'Nunito', sans-serif; }
.dx-fq .dx-ico { font-size: 24px; color: var(--lime); flex-shrink: 0; transition: transform .2s; }
.dx-fq[aria-expanded="true"] { background: var(--grn2); color: var(--white); }
.dx-fq[aria-expanded="true"] .dx-ico { color: var(--lime4); transform: rotate(45deg); }
.dx-fa { padding: 20px 28px; font-size: 18px; color: var(--muted); line-height: 1.9; background: var(--light); display: none; }
.dx-fa.dx-open { display: block; }

/* PAGE CTA */
.dx-pcta { background: var(--grn2); padding: 70px 0; }
.dx-pcta h2 { color: var(--white); margin-bottom: 14px; }
.dx-pcta p { color: rgba(255,255,255,0.72); font-size: 19px; margin-bottom: 24px; }

/* FINAL CTA */
.dx-final { background: linear-gradient(135deg, var(--grn2) 0%, #071a0e 100%); padding: 86px 0; }
.dx-final-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 52px; }
.dx-final h2 { color: var(--white); margin-bottom: 14px; }
.dx-final p { color: rgba(255,255,255,0.72); font-size: 19px; margin-bottom: 16px; }
.dx-final-price { font-size: 24px; font-weight: 900; color: var(--lime4); margin-bottom: 26px; font-family: 'Syne', sans-serif; }
.dx-final img { max-width: 240px; filter: drop-shadow(0 14px 30px rgba(0,0,0,0.35)); }

/* STICKY */
.dx-stick { background: var(--grn2); border-top: 2px solid var(--lime); padding: 14px 0; position: sticky; bottom: 0; z-index: 99; }
.dx-stick-row { display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.dx-stick strong { color: var(--white); font-size: 18px; font-family: 'Syne', sans-serif; }
.dx-stick span { color: rgba(255,255,255,0.42); font-size: 15px; margin-left: 10px; font-weight: 700; }

/* FOOTER */
.dx-foot { background: var(--grn2); border-top: 1px solid rgba(255,255,255,0.08); padding: 60px 0 28px; }
.dx-ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.dx-ft-name { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 900; color: var(--white); margin-bottom: 12px; }
.dx-ft-name em { color: var(--lime4); font-style: normal; }
.dx-foot p { font-size: 14px; color: rgba(255,255,255,0.35); line-height: 1.8; }
.dx-foot h4 { font-size: 13px; font-weight: 900; color: var(--white); margin-bottom: 14px; letter-spacing: 1.5px; text-transform: uppercase; }
.dx-foot a { display: block; font-size: 15px; color: rgba(255,255,255,0.42); margin-bottom: 9px; font-weight: 700; }
.dx-foot a:hover { color: var(--lime4); }
.dx-ft-rule { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin-bottom: 22px; }
.dx-disc { font-size: 13px; color: rgba(255,255,255,0.22); line-height: 1.85; }
.dx-hl { background: var(--light2); border: 2px solid var(--grn5); border-radius: 14px; padding: 24px; margin-top: 22px; }
.dx-note { font-size: 15px; color: var(--muted); font-style: italic; margin-top: 10px; }

/* RESPONSIVE */
@media (max-width: 991px) { .dx-hero-row { grid-template-columns: 1fr; text-align: center; } .dx-hero-pic { width: 260px; margin: 0 auto; } .dx-hero-btns { justify-content: center; } .dx-star-row { justify-content: center; } .dx-split { grid-template-columns: 1fr; } .dx-why-grid { grid-template-columns: repeat(2,1fr); } .dx-pkg-grid { grid-template-columns: 1fr 1fr; } .dx-ft-grid { grid-template-columns: 1fr 1fr; } .dx-guar-row { grid-template-columns: 1fr; text-align: center; } .dx-guar-row img { margin: 0 auto; } .dx-bonus-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 767px) { .dx-sec { padding: 60px 0; } .dx-ing-grid, .dx-use-grid, .dx-ben-grid, .dx-bonus-grid { grid-template-columns: 1fr; } .dx-rev-grid { grid-template-columns: 1fr; } .dx-pkg-grid { grid-template-columns: 1fr; } .dx-final-row { grid-template-columns: 1fr; text-align: center; } .dx-final img { margin: 0 auto; } .dx-ft-grid { grid-template-columns: 1fr; } .dx-split img { order: -1; } }
