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

/* =============================================
   NERVEHARMONY-EN.COM — DEEP TEAL / ELECTRIC BLUE
   Triple Circuit Formula — Nerve Comfort Supplement
   CSS: vornex.css (unique)
   ============================================= */
:root {
  --teal:    #0d5a5a;
  --teal2:   #094545;
  --teal3:   #0b4f4f;
  --teal4:   #e0f4f4;
  --teal5:   #b0dede;
  --blue:    #1a7abf;
  --blue2:   #1565a0;
  --blue3:   #e6f2fc;
  --blue4:   #b8d8f4;
  --white:   #ffffff;
  --light:   #f4fafa;
  --light2:  #e8f4f4;
  --text:    #0a2020;
  --muted:   #2a5050;
  --border:  #b8d8d8;
  --gray:    #6a9090;
}

*, *::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: 'Figtree', 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-size: clamp(34px,4.5vw,60px); font-weight: 900; line-height: 1.1; color: var(--teal2); }
h2 { font-size: clamp(28px,3.4vw,46px); font-weight: 800; line-height: 1.2; color: var(--teal2); }
h3 { font-size: clamp(20px,2.2vw,24px); font-weight: 700; color: var(--text); }
p  { font-size: clamp(18px,1.8vw,20px); color: var(--muted); line-height: 1.9; }

.vx-chip {
  display: inline-block; font-size: 12px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 12px;
  background: var(--teal4); padding: 6px 16px; border-radius: 999px;
  border: 1px solid var(--teal5);
}

/* ═══════════════════════════════
   NAV — STICKY, ONE LINE
   ═══════════════════════════════ */
.vx-nav {
  background: var(--teal2);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 20px rgba(9,69,69,0.4);
  width: 100%;
}
.vx-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;
}
.vx-brand {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.3px;
}
.vx-brand em { color: #7fe8e8; font-style: normal; }
.vx-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
  flex: 1;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
}
.vx-nav-links a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: 6px;
  white-space: nowrap;
  transition: all .15s;
}
.vx-nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.vx-nav-cta {
  flex-shrink: 0;
  background: var(--blue);
  color: var(--white) !important;
  font-weight: 800;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 15px;
  white-space: nowrap;
  display: inline-block;
  transition: background .2s;
}
.vx-nav-cta:hover { background: var(--blue2); color: var(--white) !important; }

@media (max-width: 767px) {
  .vx-nav-links { display: none; }
  .vx-nav-row { padding: 0 14px; height: 56px; gap: 0; justify-content: space-between; }
  .vx-brand { font-size: 15px; }
  .vx-nav-cta { font-size: 13px; padding: 9px 14px; border-radius: 7px; flex-shrink: 0; }
}

/* ── BUTTONS ── */
.vx-btn { display: inline-block; padding: 16px 36px; border-radius: 9px; font-size: 18px; font-weight: 800; cursor: pointer; border: none; transition: all .2s; text-align: center; line-height: 1; }
.vx-btn-blue  { background: var(--blue);  color: var(--white); }
.vx-btn-blue:hover  { background: var(--blue2); color: var(--white); }
.vx-btn-teal  { background: var(--teal);  color: var(--white); }
.vx-btn-teal:hover  { background: var(--teal2); color: var(--white); }
.vx-btn-out   { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.vx-btn-out:hover   { background: var(--teal); color: var(--white); }
.vx-btn-out-w { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.vx-btn-out-w:hover { background: var(--white); color: var(--teal2); }

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

/* ── HERO ── */
.vx-hero { background: var(--white); padding: 86px 0 96px; border-bottom: 3px solid var(--teal4); }
.vx-hero-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 60px; }
.vx-hero h1 { margin-bottom: 14px; }
.vx-hero-deck { color: var(--blue); font-size: 21px; font-weight: 700; margin-bottom: 16px; }
.vx-hero-sub { color: var(--muted); font-size: 20px; line-height: 1.9; margin-bottom: 22px; }
.vx-hero-ul { list-style: none; margin: 20px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.vx-hero-ul li { display: flex; align-items: flex-start; gap: 12px; font-size: 19px; color: var(--text); font-weight: 600; }
.vx-hero-ul li::before { content: "✔"; color: var(--blue); font-weight: 900; flex-shrink: 0; margin-top: 3px; }
.vx-hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }
.vx-hero-pic { width: 300px; flex-shrink: 0; }
.vx-hero-pic img { filter: drop-shadow(0 20px 40px rgba(13,90,90,0.2)); }
.vx-star-row { display: flex; align-items: center; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.vx-stars { color: #f5a623; font-size: 22px; }
.vx-star-txt { font-size: 17px; color: var(--muted); font-weight: 700; }
.vx-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--teal4); border: 2px solid var(--teal5); border-radius: 999px; padding: 6px 18px; font-size: 12px; font-weight: 800; color: var(--teal); margin-bottom: 16px; letter-spacing: 1.5px; text-transform: uppercase; }
.vx-badge::before { content: "✔"; }

/* ── CIRCUITS ── */
.vx-circuit-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.vx-circuit { padding: 34px 26px; border-radius: 20px; text-align: center; }
.vx-circuit-1 { background: linear-gradient(135deg, #e8f4ff 0%, #d0e8ff 100%); border: 2px solid var(--blue4); }
.vx-circuit-2 { background: linear-gradient(135deg, var(--teal4) 0%, var(--teal5) 100%); border: 2px solid var(--teal5); }
.vx-circuit-3 { background: linear-gradient(135deg, #f0f4e8 0%, #d8e8c0 100%); border: 2px solid #b8d490; }
.vx-circuit-ico { font-size: 42px; margin-bottom: 14px; }
.vx-circuit h3 { font-size: 20px; margin-bottom: 10px; }
.vx-circuit p  { font-size: 17px; }

/* ── WHY ── */
.vx-why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.vx-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; }
.vx-why-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(13,90,90,0.1); }
.vx-why-card .vx-why-ico { font-size: 32px; margin-bottom: 12px; }
.vx-why-card h3 { font-size: 17px; margin-bottom: 8px; }
.vx-why-card p  { font-size: 15px; }

/* ── SPLIT ── */
.vx-split { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center; }
.vx-split img { border-radius: 20px; width: 100%; box-shadow: 0 12px 40px rgba(13,90,90,0.14); }
.vx-split h2 { margin-bottom: 16px; }
.vx-split p  { margin-bottom: 14px; }
.vx-chk-ul { list-style: none; margin: 16px 0; }
.vx-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: 600; }
.vx-chk-ul li:last-child { border-bottom: none; }
.vx-chk-ul li::before { content: "✔"; color: var(--blue); font-weight: 900; flex-shrink: 0; margin-top: 3px; }

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

/* ── STEPS ── */
.vx-steps { display: flex; flex-direction: column; gap: 14px; }
.vx-step { display: flex; gap: 18px; align-items: flex-start; padding: 24px; background: var(--white); border: 2px solid var(--border); border-radius: 14px; }
.vx-step-n { min-width: 48px; height: 48px; background: var(--teal); color: var(--white); font-size: 18px; font-weight: 900; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.vx-step h3 { font-size: 20px; margin-bottom: 6px; }
.vx-step p  { font-size: 17px; }

/* ── INGREDIENTS ── */
.vx-ing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.vx-ing-card { display: flex; gap: 16px; align-items: flex-start; padding: 24px; background: var(--white); border: 2px solid var(--border); border-radius: 14px; transition: box-shadow .2s; }
.vx-ing-card:hover { box-shadow: 0 8px 24px rgba(13,90,90,0.1); }
.vx-ing-ico { min-width: 52px; height: 52px; background: var(--teal4); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; border: 2px solid var(--teal5); }
.vx-ing-card h3 { font-size: 19px; margin-bottom: 7px; }
.vx-ing-card p  { font-size: 16px; }

/* ── BENEFITS ── */
.vx-ben-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.vx-ben-card { padding: 28px; background: var(--white); border: 2px solid var(--border); border-radius: 16px; transition: box-shadow .2s; }
.vx-ben-card:hover { box-shadow: 0 8px 24px rgba(13,90,90,0.08); }
.vx-ben-ico { width: 52px; height: 52px; background: var(--blue3); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; border: 2px solid var(--blue4); font-size: 24px; }
.vx-ben-card h3 { font-size: 20px; margin-bottom: 8px; }
.vx-ben-card p  { font-size: 17px; }

/* ── PRICING ── */
.vx-pkg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.vx-pkg { padding: 34px 24px; background: var(--white); border: 2px solid var(--border); border-radius: 20px; text-align: center; transition: box-shadow .2s, transform .2s; }
.vx-pkg:hover { box-shadow: 0 12px 36px rgba(13,90,90,0.12); transform: translateY(-3px); }
.vx-pkg.vx-best { border-color: var(--blue); box-shadow: 0 8px 32px rgba(26,122,191,0.18); }
.vx-pkg-pill { display: inline-block; font-size: 12px; font-weight: 900; letter-spacing: 1.2px; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; background: var(--blue); color: var(--white); margin-bottom: 14px; }
.vx-pkg-pill.vx-tl { background: var(--teal); }
.vx-pkg img { max-width: 150px; margin: 0 auto 16px; }
.vx-pkg h3 { font-size: 22px; color: var(--text); margin-bottom: 6px; }
.vx-pkg-days { font-size: 16px; color: var(--muted); margin-bottom: 14px; font-weight: 600; }
.vx-price { font-size: 52px; font-weight: 900; color: var(--teal2); line-height: 1; }
.vx-price-u { font-size: 16px; font-weight: 500; color: var(--muted); }
.vx-was { font-size: 15px; color: var(--gray); text-decoration: line-through; margin: 6px 0 4px; }
.vx-tot { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 16px; }
.vx-fl { list-style: none; text-align: left; margin-bottom: 20px; }
.vx-fl li { font-size: 16px; color: var(--muted); padding: 5px 0; display: flex; gap: 10px; align-items: flex-start; font-weight: 600; }
.vx-fl li::before { content: "✔"; color: var(--blue); font-weight: 900; flex-shrink: 0; }

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

/* ── HOW TO USE ── */
.vx-use-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.vx-use-card { padding: 28px; background: var(--white); border: 2px solid var(--border); border-radius: 14px; }
.vx-use-n { width: 48px; height: 48px; background: var(--teal4); color: var(--teal); font-size: 20px; font-weight: 900; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; border: 2px solid var(--teal5); }
.vx-use-card h3 { font-size: 20px; margin-bottom: 8px; }
.vx-use-card p  { font-size: 17px; }

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

/* ── PAGE CTA ── */
.vx-pcta { background: linear-gradient(135deg, var(--teal2) 0%, var(--teal3) 100%); padding: 70px 0; }
.vx-pcta h2 { color: var(--white); margin-bottom: 14px; }
.vx-pcta p  { color: rgba(255,255,255,0.72); font-size: 19px; margin-bottom: 24px; }

/* ── FINAL CTA ── */
.vx-final { background: linear-gradient(135deg, var(--teal2) 0%, #062e2e 100%); padding: 86px 0; }
.vx-final-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 52px; }
.vx-final h2 { color: var(--white); margin-bottom: 14px; }
.vx-final p  { color: rgba(255,255,255,0.72); font-size: 19px; margin-bottom: 16px; }
.vx-final-price { font-size: 24px; font-weight: 900; color: #7fe8e8; margin-bottom: 26px; }
.vx-final img { max-width: 240px; filter: drop-shadow(0 14px 30px rgba(0,0,0,0.3)); }

/* ── STICKY ── */
.vx-stick { background: var(--teal2); border-top: 2px solid var(--blue); padding: 14px 0; position: sticky; bottom: 0; z-index: 99; }
.vx-stick-row { display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.vx-stick strong { color: var(--white); font-size: 18px; }
.vx-stick span { color: rgba(255,255,255,0.42); font-size: 15px; margin-left: 10px; font-weight: 600; }

/* ── FOOTER ── */
.vx-foot { background: var(--teal2); border-top: 1px solid rgba(255,255,255,0.08); padding: 60px 0 28px; }
.vx-ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.vx-ft-name { font-size: 19px; font-weight: 900; color: var(--white); margin-bottom: 12px; }
.vx-ft-name em { color: #7fe8e8; font-style: normal; }
.vx-foot p { font-size: 14px; color: rgba(255,255,255,0.35); line-height: 1.8; }
.vx-foot h4 { font-size: 13px; font-weight: 900; color: var(--white); margin-bottom: 14px; letter-spacing: 1.5px; text-transform: uppercase; }
.vx-foot a { display: block; font-size: 15px; color: rgba(255,255,255,0.42); margin-bottom: 9px; font-weight: 600; }
.vx-foot a:hover { color: #7fe8e8; }
.vx-ft-rule { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin-bottom: 22px; }
.vx-disc { font-size: 13px; color: rgba(255,255,255,0.22); line-height: 1.85; }
.vx-note { font-size: 15px; color: var(--muted); font-style: italic; margin-top: 10px; }
.vx-hl { background: var(--teal4); border: 2px solid var(--teal5); border-radius: 14px; padding: 24px; margin-top: 22px; }

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