/* ====== Base & tokens ====== */
:root{
  --panel:#ffffff;
  --ring:#d7d7d7;
  --muted:#00356B;
  --ink:#00356B;
  --ink-d:#00356B;
  --accent:#ff4aa2;
}

/* 1) Font family */
html, body { font-family: 'Segoe UI', sans-serif; }

/* 3) Background gradient (#E9DCC9 theme) */
.nv-pricing{
  background: linear-gradient(180deg, #E9DCC9 0%, #FFFFFF 100%);
  color: var(--ink);
  padding: clamp(72px,10vw,120px) 24px;
}

.nv-pricing-wrap{ max-width: 1200px; margin: 0 auto; text-align: center; }
.nv-price-title{ font-size: clamp(32px,6vw,72px); line-height: .95; margin: 0 0 10px; }

/* 2) p, h3, span all #00356B */
p, h3, span { color: #00356B; }

.nv-price-sub{ margin: 0 0 18px; color: var(--muted); }

/* Billing pills (lightened to fit the new palette) */
.nv-billing{
  display: inline-flex; gap: 10px; align-items: center;
  margin-bottom: clamp(24px,3vw,36px);
}
.nv-pill-check{
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid rgba(0,53,107,.25); color: #00356B;
  padding: 8px 14px; border-radius: 999px;
}
.nv-pill-check input{
  appearance: none; width: 14px; height: 14px; border: 1px solid rgba(0,53,107,.5);
  border-radius: 999px; display: inline-block; background: #fff;
}
.nv-pill-check input:checked{ background: #00356B; border-color: #00356B; }
.nv-pill-check span{ font-weight: 600; }
.nv-save{
  background: rgba(0,53,107,.12); color:#00356B;
  font-size: 12px; padding: 4px 8px; border-radius: 999px;
}

/* Cards grid */
.nv-price-grid{
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px,2.2vw,28px); align-items: stretch; text-align: left;
}

.nv-cardp{
  background: var(--panel); border: 1px solid var(--ring);
  border-radius: 22px; padding: 24px;
  display: grid; grid-template-rows: auto 1fr auto;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.02);
}
.nv-cardp--hot{
  border-color: rgba(255,74,162,.5);
  box-shadow: 0 0 0 1px rgba(255,74,162,.25), 0 30px 60px -30px rgba(0,0,0,.18);
}

/* Header inside card */
.nv-cardp-h{ position: relative; margin-bottom: 8px; }
.nv-plan{
  margin: 0 0 6px; font-size: 26px; font-weight: 700;
  /* removed previous white to respect global color */
}
.nv-plan-sub{ margin: 0 0 10px; color: var(--muted); }

.nv-badge{
  position: absolute; top: -14px; right: 8px;
  background: var(--accent); color: #fff; font-size: 12px;
  padding: 6px 10px; border-radius: 999px; font-weight: 800; letter-spacing: .2px;
}
.nv-badge--ghost{ background: #f0f4f8; color: #00356B; }

.nv-price{
  display:flex; align-items: baseline; gap: 8px; margin: 10px 0 2px;
}
.nv-price span{ font-size: 40px; font-weight: 800; } /* uses global span color (#00356B) */
.nv-price small{ color: #335c85; }

/* Features */
.nv-feats{
  list-style: none; margin: 14px 0 18px; padding: 0;
  display: grid; gap: 10px; color: var(--ink-d);
}
.nv-feats li{ position: relative; padding-left: 24px; }
.nv-feats li::before{
  content:""; position:absolute; left:0; top:.55em;
  width: 10px; height: 10px; border-radius: 50%;
  background: #00a36c; box-shadow: 0 0 0 3px rgba(0,163,108,.18);
}
.nv-feats li s{ color: #6c8aa6; text-decoration-color: #5b7b99; }

/* CTA */
.nv-cta-pri{
  margin-top: 6px; display:inline-grid; place-items:center;
  height: 44px; border-radius: 10px; background: #00356B;
  color: #ffffff; text-decoration: none; font-weight: 800; padding: 0 18px;
}
.nv-cardp--hot .nv-cta-pri{
  background: linear-gradient(90deg, #ff4aa2, #8b5cf6); color: #fff;
}

/* Responsive */
@media (max-width: 1024px){
  .nv-price-grid{ grid-template-columns: 1fr; }
  .nv-pricing-wrap{ text-align: center; }
  .nv-cardp{ max-width: 720px; margin: 0 auto; }
}
.nv-footer {
  background: #0C2340; /* Deep navy blue */
  color: #fff;
  padding: 40px 20px;
  font-size: 0.95rem;
  font-family: 'Segoe UI', sans-serif;
}

.nv-footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.nv-footer-logo {
  width: 120px;
  margin-bottom: 15px;
}

.nv-footer-col p {
  color: #e5e7eb;
  margin-bottom: 10px;
  line-height: 1.6;
}

.nv-footer-col small {
  display: block;
  color: #9ca3af;
}

.nv-footer-col h4 {
  color: #00c4cc;
  font-weight: 600;
  margin-bottom: 12px;
}

.nv-footer-col ul {
  list-style: none;
  padding: 0;
}

.nv-footer-col ul li {
  margin-bottom: 8px;
}

.nv-footer-col ul li a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nv-footer-col ul li a:hover {
  color: #fff;
}

.nv-footer-form {
  display: flex;
  margin-top: 12px;
}

.nv-footer-form input {
  flex: 1;
  padding: 8px;
  border: none;
  outline: none;
  border-radius: 3px 0 0 3px;
}

.nv-footer-form button {
  background: #0077c0; /* Green send button */
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
}

.nv-footer-form button:hover {
  background: #00CCFF;
}
