/* ================================================
   MEDILIFE IV — CARD SYSTEM v3 (newcards.css)
   Reference: white card, drip bag top-right,
   benefit pills, meta strip, price + dual CTA
   ================================================ */

/* ── Section background ── */
.nc-section-white { background: #f4f6f4; }

/* ── Filter bar ── */
.nc-filter-bar {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap; margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.nc-tab {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.12);
  color: rgba(0,0,0,0.5);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 600;
  padding: 8px 18px; border-radius: 100px;
  cursor: pointer; transition: all 0.22s;
  white-space: nowrap;
}
.nc-tab:hover { border-color: var(--green); color: var(--green); background: rgba(26,122,74,0.04); }
.nc-tab-active { background: var(--green); border-color: var(--green); color: var(--white); }

/* ── Grid — 2 columns ── */
.nc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* ── CARD ── */
.nc-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 20px;
  padding: 28px 28px 28px;
  cursor: pointer;
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.28s ease,
              border-color 0.28s;
  display: flex; flex-direction: column;
  min-height: 430px;
  position: relative; overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

/* Green glow radial in top-right — exactly like reference */
.nc-card::before {
  content: '';
  position: absolute; top: -30px; right: -30px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,0.18) 0%, rgba(34,197,94,0.06) 45%, transparent 70%);
  pointer-events: none; z-index: 0;
  transition: opacity 0.3s;
}
.nc-card:hover::before { opacity: 1.4; }

/* Bottom green glow on hover */
.nc-card::after {
  content: '';
  position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);
  width: 70%; height: 40px;
  background: radial-gradient(ellipse, rgba(34,197,94,0.1) 0%, transparent 70%);
  pointer-events: none; z-index: 0; opacity: 0;
  transition: opacity 0.3s;
}
.nc-card:hover::after { opacity: 1; }

.nc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  border-color: rgba(34,197,94,0.4);
}

/* ── Top row: category tag + drip bag ── */
.nc-top-row {
  display: flex; align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0; position: relative; z-index: 1;
  min-height: 100px;
}
.nc-top-left {
  display: flex; flex-direction: column;
  justify-content: flex-end;
  flex: 1; padding-right: 12px; padding-top: 0;
}
.nc-pkg-row { display: none; }
.nc-pkg-label { display: none; }
.nc-pkg-num { display: none; }
.nc-cat-tag {
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--green);
  display: flex; align-items: center; gap: 6px;
}
.nc-cat-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
}

/* Drip bag — positioned top-right */
.nc-drip-bag {
  width: 80px; height: 100px; flex-shrink: 0;
  margin-top: -8px; margin-right: -8px;
  position: relative; z-index: 2;
}
.nc-drip-bag img {
  width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.12));
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.nc-card:hover .nc-drip-bag img {
  transform: translateY(-4px) scale(1.05);
}

/* Tinted overlay on drip bag per category */
.nc-drip-bag::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* ── Type pill — auto width tag ── */
.nc-type-pill {
  display: inline-flex; align-items: center;
  background: rgba(34,197,94,0.09);
  border: 1px solid rgba(34,197,94,0.25);
  color: var(--green); font-size: 11px; font-weight: 800;
  padding: 5px 14px; border-radius: 8px;
  margin-bottom: 8px; margin-top: 8px;
  text-transform: uppercase; letter-spacing: 1.5px;
  position: relative; z-index: 1;
  width: auto; align-self: flex-start;
}

/* ── Card name & subtitle ── */
.nc-name {
  font-size: 26px; font-weight: 900;
  color: #0d1a0f; margin-bottom: 3px; line-height: 1.1;
  position: relative; z-index: 1;
}
.nc-sub {
  font-size: 13px; color: rgba(0,0,0,0.6);
  margin-bottom: 14px; position: relative; z-index: 1;
}

/* ── Benefit pills row (3 keyword tags) ── */
.nc-benefit-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 20px; position: relative; z-index: 1;
}
.nc-benefit-pill {
  display: flex; align-items: center; gap: 6px;
  background: #f5f7f5;
  border: 1px solid rgba(0,0,0,0.1);
  color: rgba(0,0,0,0.7); font-size: 12px; font-weight: 600;
  padding: 7px 15px; border-radius: 100px;
  line-height: 1;
}
.nc-benefit-pill svg { stroke: var(--green); flex-shrink: 0; width: 12px; height: 12px; }

/* ── Meta strip ── */
.nc-meta {
  display: grid; grid-template-columns: repeat(3,1fr);
  border-top: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  margin-bottom: 20px; padding: 14px 0;
  position: relative; z-index: 1;
}
.nc-meta-item {
  display: flex; flex-direction: column; gap: 4px;
  padding: 0 16px;
  border-right: 1px solid rgba(0,0,0,0.07);
}
.nc-meta-item:first-child { padding-left: 0; }
.nc-meta-item:last-child { border-right: none; }
.nc-meta-label {
  font-size: 9px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(0,0,0,0.5);
}
.nc-meta-val {
  font-size: 13.5px; font-weight: 700; color: #0d1a0f;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ── Divider before footer — removed ── */
.nc-footer-divider { display: none; }
/* ── Footer: price left, buttons right ── */
.nc-footer {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  position: relative; z-index: 1;
  margin-top: auto; padding-top: 12px;
}
.nc-price-wrap { display: flex; flex-direction: column; gap: 2px; }
.nc-from-label {
  font-size: 9px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(0,0,0,0.5);
}
.nc-price {
  font-size: 30px; font-weight: 900; color: #0d1a0f; line-height: 1;
}
.nc-per-session {
  font-size: 10px; color: rgba(0,0,0,0.5); font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px; margin-top: 3px;
}
.nc-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.nc-btn-discover {
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.18);
  color: rgba(0,0,0,0.7);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 700;
  padding: 12px 24px; border-radius: 100px;
  cursor: pointer; transition: all 0.22s;
  white-space: nowrap; box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}
.nc-btn-discover:hover { border-color: var(--green); color: var(--green); }

.nc-btn-book {
  background: var(--green);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 700;
  padding: 12px 26px; border-radius: 100px;
  border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
  transition: background 0.22s, transform 0.2s;
  white-space: nowrap;
}
.nc-btn-book:hover { background: #15803d; transform: translateY(-1px); }
.nc-btn-book svg { stroke: var(--white); flex-shrink: 0; }

/* ── Bestseller / badge — top RIGHT ── */
.nc-bestseller {
  position: absolute; top: 22px; right: 22px; z-index: 4;
  background: var(--green);
  color: var(--white);
  font-size: 9px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 5px 14px; border-radius: 100px;
}

/* ── Hidden cards (filter) ── */
.nc-card.nc-hidden { display: none; }

/* ── Add-on pricing table ── */
.addon-price-table { border: 1px solid rgba(0,0,0,0.08); border-radius: 14px; overflow: hidden; background: var(--white); }
.apt-row { display: grid; grid-template-columns: 1fr auto auto; gap: 24px; padding: 14px 24px; border-bottom: 1px solid rgba(0,0,0,0.07); align-items: center; }
.apt-row:last-child { border-bottom: none; }
.apt-header { background: rgba(26,122,74,0.06); font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--green); }
.apt-row span:first-child { font-size: 13.5px; color: rgba(0,0,0,0.75); font-weight: 500; }
.apt-row span:nth-child(2) { font-size: 14px; font-weight: 800; color: var(--green); text-align: right; }
.apt-row span:last-child { font-size: 12px; color: rgba(0,0,0,0.5); min-width: 160px; text-align: right; }
.apt-highlight { background: rgba(34,197,94,0.05); }
.apt-highlight span:first-child { color: #0d1a0f; font-weight: 700; }

/* ── Pricing tiers ── */
.mem-tiers { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.mem-tier { border-radius: 16px; overflow: hidden; border: 1px solid rgba(0,0,0,0.08); background: var(--white); box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
.mem-tier-header { padding: 32px 28px; color: var(--white); }
.tier-1 { background: linear-gradient(135deg, #1a7a4a 0%, #145225 100%); }
.tier-2 { background: linear-gradient(135deg, #134d30 0%, #0e3d24 100%); }
.tier-3 { background: linear-gradient(135deg, #0a3320 0%, #061a10 100%); }
.mem-tier-label { font-size: 10px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 8px; }
.mem-tier-header h3 { font-size: 22px; font-weight: 900; margin-bottom: 8px; }
.mem-tier-price { font-size: 20px; font-weight: 900; margin-bottom: 8px; }
.mem-tier-header p { font-size: 12px; color: rgba(255,255,255,0.6); }
.mem-tier-body { padding: 24px 28px; }
.mem-tier-includes { margin-bottom: 20px; }
.mti-label, .ms-label, .mt-label { font-size: 9px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: rgba(0,0,0,0.5); margin-bottom: 10px; }
.mem-tier-includes ul { display: flex; flex-direction: column; gap: 8px; list-style: none; }
.mem-tier-includes li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(0,0,0,0.65); }
.mem-tier-includes li svg { stroke: var(--green); flex-shrink: 0; }
.mem-services { border-top: 1px solid rgba(0,0,0,0.08); padding-top: 16px; margin-bottom: 20px; }
.ms-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.06); font-size: 13px; color: rgba(0,0,0,0.7); }
.ms-row:last-child { border-bottom: none; }
.ms-price { font-weight: 800; color: var(--green); font-size: 13px; }
.ms-highlight { background: rgba(34,197,94,0.06); padding: 8px 10px; border-radius: 6px; margin: 4px -10px; }
.mem-target { border-top: 1px solid rgba(0,0,0,0.08); padding-top: 16px; }
.mt-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.mt-tags span { font-size: 11px; background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.2); color: var(--green); padding: 4px 10px; border-radius: 100px; font-weight: 600; }

/* ── Surcharge table ── */
.surcharge-grid { border: 1px solid rgba(0,0,0,0.08); border-radius: 14px; overflow: hidden; background: var(--white); }
.sc-row { display: grid; grid-template-columns: 1fr auto; gap: 24px; padding: 14px 24px; border-bottom: 1px solid rgba(0,0,0,0.08); align-items: center; font-size: 14px; color: rgba(0,0,0,0.7); }
.sc-row:last-child { border-bottom: none; }
.sc-header { background: rgba(34,197,94,0.06); font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--green); }
.sc-row span:last-child { font-weight: 700; color: var(--green); text-align: right; white-space: nowrap; }
.sc-free { color: var(--green) !important; }

/* ── Membership cards ── */
.membership-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.mem-card { background: #0e1f15; border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 32px 28px; display: flex; flex-direction: column; }
.mem-card-featured { border-color: var(--green); box-shadow: 0 0 40px rgba(26,122,74,0.2); }
.mem-card-badge { font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--green-light); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.mem-popular { background: var(--green); color: var(--white); padding: 2px 10px; border-radius: 100px; font-size: 9px; }
.mem-card-price { font-size: 32px; font-weight: 900; color: var(--white); margin-bottom: 24px; line-height: 1; }
.mem-card-price span { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.4); }
.mem-card-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; flex: 1; }
.mem-card-features li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.7); }
.mem-card-features li svg { stroke: var(--green-light); flex-shrink: 0; }

/* ── Corporate cards ── */
.corp-grid { display:grid; grid-template-columns:1fr 1fr; gap:32px; }
.corp-card { background: var(--white); border: 1px solid rgba(0,0,0,0.08); border-radius: 16px; padding: 32px; box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
.corp-card-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid rgba(0,0,0,0.08); }
.corp-card-header svg { stroke: var(--green); flex-shrink: 0; }
.corp-card-header h3 { font-size: 20px; font-weight: 800; color: #0d1a0f; }
.corp-services { display: flex; flex-direction: column; gap: 0; }
.cs-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.07); font-size: 13.5px; color: rgba(0,0,0,0.7); }
.cs-row:last-child { border-bottom: none; }
.cs-row span:last-child { font-weight: 800; color: var(--green); }

/* ─────────────────────────────────────────────────────────
   MODAL — full viewport overlay, max-width 1100px, no scroll
   ───────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }

.modal-box {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 24px;
  width: 100%; max-width: 1450px;
  max-height: 94vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn 0.3s cubic-bezier(0.34,1.56,0.64,1) both;
  box-shadow: 0 32px 80px rgba(0,0,0,0.25);
  scrollbar-width: thin;
  scrollbar-color: rgba(26,122,74,0.3) transparent;
}
.modal-box::-webkit-scrollbar { width: 4px; }
.modal-box::-webkit-scrollbar-thumb { background: rgba(26,122,74,0.3); border-radius: 2px; }

/* Green glow top-right inside modal (matches card) */
.modal-box::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,0.12) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute; top: 22px; right: 22px;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.1);
  color: rgba(0,0,0,0.5);
  font-size: 14px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s; z-index: 10;
}
.modal-close:hover { background: rgba(0,0,0,0.12); color: #0d1a0f; }
.modal-close svg { stroke: rgba(0,0,0,0.6); }

/* Modal header */
.md-header {
  padding: 40px 44px 28px;
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 32px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  position: relative; z-index: 1;
}
.md-header-left { display: flex; align-items: center; gap: 20px; flex: 1; }
.md-icon {
  width: 64px; height: 64px; border-radius: 14px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; flex-shrink: 0;
}
.md-tag {
  font-size: 10px; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--green); margin-bottom: 5px;
}
.md-title {
  font-size: 32px; font-weight: 900;
  color: #0d1a0f; margin-bottom: 4px; line-height: 1.1;
}
.md-sub { font-size: 14px; color: rgba(0,0,0,0.6); }
.md-header-right { text-align: right; flex-shrink: 0; }
.md-price { font-size: 36px; font-weight: 900; color: #0d1a0f; line-height: 1; }
.md-price-note { font-size: 10px; color: rgba(0,0,0,0.5); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }

/* Stat bar */
.md-stats {
  display: grid; grid-template-columns: repeat(4,1fr);
  margin: 24px 44px;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px; overflow: hidden;
  position: relative; z-index: 1;
}
.md-stat {
  padding: 18px 22px; border-right: 1px solid rgba(0,0,0,0.07);
  display: flex; align-items: center; gap: 12px;
}
.md-stat:last-child { border-right: none; }
.md-stat-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.md-stat-icon svg { stroke: var(--green); }
.md-stat-label { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(0,0,0,0.5); margin-bottom: 3px; }
.md-stat-val { font-size: 15px; font-weight: 700; color: #0d1a0f; }

/* Body columns */
.md-body {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; padding: 0 44px 44px;
  position: relative; z-index: 1;
}
.md-section-label {
  font-size: 10px; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--green); margin-bottom: 14px;
}
.md-about p { font-size: 14px; color: rgba(0,0,0,0.7); line-height: 1.85; }

.md-benefits { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.md-benefits li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: rgba(0,0,0,0.7); line-height: 1.6;
}
.md-benefits li svg { stroke: var(--green); flex-shrink: 0; margin-top: 2px; }

/* Formulation table */
.md-formula-table { width: 100%; border-collapse: collapse; }
.md-formula-table tr { border-bottom: 1px solid rgba(0,0,0,0.06); }
.md-formula-table tr:last-child { border-bottom: none; }
.md-formula-table td { padding: 10px 0; font-size: 13px; vertical-align: middle; }
.md-formula-table td:first-child { color: #0d1a0f; font-weight: 600; }
.md-formula-table td:nth-child(2) { color: var(--green); font-weight: 700; text-align: center; padding: 0 12px; }
.md-formula-table td:last-child { color: rgba(0,0,0,0.4); text-align: right; font-style: italic; font-size: 11.5px; }

/* Best for tags */
.md-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.md-tag-pill {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.25);
  color: var(--green); font-size: 12px; font-weight: 600;
  padding: 6px 14px; border-radius: 100px;
}

/* Steps */
.md-steps { display: flex; flex-direction: column; gap: 12px; }
.md-step {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13px; color: rgba(0,0,0,0.65); line-height: 1.6;
}
.md-step-num {
  width: 26px; height: 26px; border-radius: 7px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  font-size: 10px; font-weight: 800; color: var(--green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Modal CTA footer */
.md-cta {
  padding: 0 44px 40px;
  display: flex; gap: 14px; align-items: center;
  border-top: 1px solid rgba(0,0,0,0.07);
  padding-top: 28px; position: relative; z-index: 1;
}
.md-cta .nc-btn-book { padding: 14px 36px; font-size: 14px; border-radius: 100px; }
.md-cta .nc-btn-discover { padding: 14px 28px; font-size: 14px; border-radius: 100px; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .nc-grid { grid-template-columns: 1fr; }
  .md-body { grid-template-columns: 1fr; gap: 28px; }
  .md-stats { grid-template-columns: repeat(2,1fr); }
  .mem-tiers { grid-template-columns: 1fr; }
  .membership-cards { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .md-header { flex-direction: column; padding: 28px 24px 20px; gap: 16px; }
  .md-header-right { text-align: left; }
  .md-body { padding: 0 24px 28px; }
  .md-stats { margin: 16px 24px; grid-template-columns: repeat(2,1fr); }
  .md-cta { padding: 20px 24px 28px; flex-wrap: wrap; }
  .nc-name { font-size: 22px; }
  .nc-price { font-size: 24px; }
}
@media (max-width: 640px) {
  .nc-filter-bar { gap: 6px; }
  .nc-tab { padding: 7px 14px; font-size: 11px; }
  .nc-actions { flex-wrap: wrap; gap: 8px; }
  .nc-btn-book, .nc-btn-discover { width: 100%; justify-content: center; }
  .apt-row span:last-child { display: none; }
  .sc-row { gap: 12px; }

  /* Corporate grid — single column */
  .corp-grid { grid-template-columns: 1fr; gap: 20px; }
  .corp-card { padding: 24px 20px; }

  /* Modal — full-screen friendly layout */
  .modal-overlay { padding: 8px; }
  .modal-box { border-radius: 16px; max-height: 95vh; }
  .modal-close { top: 12px; right: 12px; width: 32px; height: 32px; }
  .md-header { padding: 20px 18px 16px; gap: 10px; }
  .md-header-left { gap: 12px; }
  .md-icon { width: 46px; height: 46px; border-radius: 10px; font-size: 20px; }
  .md-title { font-size: 22px; }
  .md-sub { font-size: 12px; }
  .md-price { font-size: 26px; }
  .md-header-cta { flex-direction: column; gap: 8px; margin-top: 10px; }
  .md-header-cta .nc-btn-book { width: 100%; justify-content: center; padding: 12px 20px; }
  .md-header-cta .md-btn-question { width: 100%; justify-content: center; }
  .md-stats { margin: 10px 18px; grid-template-columns: repeat(2,1fr); }
  .md-stat { padding: 10px 12px; gap: 8px; }
  .md-stat-icon { width: 28px; height: 28px; }
  .md-stat-label { font-size: 8px; }
  .md-stat-val { font-size: 13px; }
  .md-body { padding: 0 18px 20px; gap: 20px; }
  .md-formula-table td:last-child { display: none; }
  .md-formula-table td { font-size: 12px; }
  .md-section-label { font-size: 9px; }
}

/* Modal header CTA — horizontal row */
.md-header-cta {
  display: flex; flex-direction: row;
  align-items: center; gap: 10px; margin-top: 12px;
  flex-wrap: wrap;
}

/* "Still have questions?" phone link */
.md-btn-question {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  border: 1.5px solid rgba(0,0,0,0.15);
  color: rgba(0,0,0,0.6);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 600;
  padding: 9px 18px; border-radius: 100px;
  text-decoration: none;
  transition: all 0.22s;
  white-space: nowrap;
}
.md-btn-question svg { stroke: rgba(0,0,0,0.5); flex-shrink: 0; }
.md-btn-question:hover {
  border-color: var(--green);
  color: var(--green);
  background: rgba(34,197,94,0.05);
}
.md-btn-question:hover svg { stroke: var(--green); }

/* Responsive: stack header on smaller screens */
@media (max-width: 768px) {
  .md-header-cta { align-items: flex-start; }
}

/* ── Pricing hidden + redesigned card footer ── */
.nc-price-wrap { display: none !important; }

/* Edge-to-edge footer bar — card has overflow:hidden so corners clip cleanly */
.nc-footer {
  margin: auto -28px -28px;
  padding: 0;
  gap: 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  justify-content: flex-start;
}
.nc-actions { width: 100%; gap: 0; flex-wrap: nowrap; }
.nc-btn-discover {
  display: flex; align-items: center; justify-content: center;
  flex: 1; border-radius: 0; border: none !important;
  border-right: 1px solid rgba(0,0,0,0.08) !important;
  background: rgba(0,0,0,0.025); padding: 15px 10px;
  font-size: 13px; font-weight: 700; box-shadow: none;
  color: rgba(0,0,0,0.6);
  transition: background 0.2s, color 0.2s;
}
.nc-btn-discover:hover {
  background: var(--green-soft); color: var(--green);
  border-color: transparent !important;
}
.nc-btn-book {
  flex: 1.5; justify-content: center;
  padding: 15px 10px; border-radius: 0; font-size: 13px;
}
.nc-btn-book:hover { transform: none; }

/* Override mobile stacking — keep side-by-side in footer bar */
@media (max-width: 640px) {
  .nc-actions { flex-wrap: nowrap; gap: 0; }
  .nc-btn-book, .nc-btn-discover { width: auto; }
}

/* Modal: show header-right with CTAs — just hide the price elements */
.md-price { display: none !important; }
.md-price-note { display: none !important; }

/* Membership pricing */
.mem-tier-price { display: none !important; }
.ms-price { display: none !important; }
.mem-card-price { display: none !important; }
.sc-row { grid-template-columns: 1fr !important; }
.sc-row span:last-child { display: none !important; }
.cs-row span:last-child { display: none !important; }
