/* =========================================================
   SN PRICING SECTION (New layout, SN-consistent)
   Requires :root --sn-* tokens
   ========================================================= */

.sn-pricing{
  background: linear-gradient(180deg, rgba(255,122,0,.06), rgba(255,255,255,0));
}

/* Head layout */
.sn-pHead{
  display:grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 18px;
  align-items:start;
  margin-bottom: 14px;
}
.sn-pNav{ margin: 10px 0 6px; }
.sn-pMini{ top: 14px; }

/* Logic cards grid */
.sn-pLogic{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
  margin-top: 14px;
}
.sn-pCard{
  border:1px solid var(--sn-border);
  background: rgba(255,255,255,.86);
  border-radius: var(--sn-r20);
  box-shadow: 0 12px 30px rgba(12,16,23,.08);
  padding: 14px;
  transition: transform .18s ease, box-shadow .18s ease;
  position:relative;
  overflow:hidden;
}
.sn-pCard:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(12,16,23,.12);
}
.sn-pIcon{
  width:42px; height:42px;
  border-radius: 14px;
  display:grid; place-items:center;
  color:#fff;
  box-shadow: 0 14px 30px rgba(12,16,23,.16);
  margin-bottom: 10px;
}
.sn-pCard h3{
  margin: 0 0 6px;
  font-size: 15.5px;
  font-weight: 950;
  color: var(--sn-ink);
}
.sn-pCard p{
  margin: 0 0 10px;
  color: rgba(12,16,23,.76);
  font-size: 13.3px;
  line-height: 1.55;
}
.sn-pList{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:8px;
}
.sn-pList li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color: rgba(12,16,23,.78);
  font-weight: 750;
  font-size: 13px;
}
.sn-pList i{ margin-top:2px; opacity:.85; }

/* Estimator shell */
.sn-pEstimator{
  margin-top: 16px;
  border: 1px solid var(--sn-border);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  border-radius: var(--sn-r20);
  box-shadow: var(--sn-shadow);
  overflow:hidden;
}
.sn-pEstHead{
  padding: 14px;
  border-bottom: 1px solid var(--sn-border);
  background: linear-gradient(90deg, rgba(11,58,164,.06), rgba(255,122,0,.06));
}
.sn-h3{
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 950;
  color: var(--sn-ink);
}
.sn-muted{ margin:0; color: rgba(12,16,23,.70); font-weight: 700; font-size: 13.2px; }

.sn-pEstGrid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 14px;
  padding: 14px;
}

/* Form */
.sn-pForm{
  border: 1px solid var(--sn-border);
  background: rgba(255,255,255,.86);
  border-radius: var(--sn-r20);
  padding: 14px;
}
.sn-pRow{ display:grid; gap:6px; margin-bottom: 12px; }

.sn-p2col{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}
.sn-lbl{
  font-weight: 900;
  font-size: 12.5px;
  color: rgba(12,16,23,.78);
}
.sn-inp{
  width:100%;
  border:1px solid var(--sn-border);
  border-radius: 14px;
  padding: 11px 12px;
  font-weight: 800;
  background: rgba(255,255,255,.92);
  color: rgba(12,16,23,.90);
  outline:none;
}
.sn-inp:focus{
  border-color: rgba(11,58,164,.35);
  box-shadow: 0 0 0 4px rgba(11,58,164,.10);
}

/* Checks */
.sn-pChecks{
  display:grid;
  gap:10px;
  margin: 8px 0 12px;
}
.sn-check{
  display:flex;
  gap:10px;
  align-items:center;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--sn-border);
  background: rgba(255,255,255,.84);
  font-weight: 850;
  color: rgba(12,16,23,.78);
  user-select:none;
}
.sn-check input{ width:16px; height:16px; }
.sn-check i{ opacity:.85; }

/* Actions */
.sn-pActions{
  display:flex;
  gap:10px;
  margin-top: 6px;
}
.sn-tip{
  margin-top: 12px;
  border:1px solid var(--sn-border);
  background: rgba(255,255,255,.86);
  border-radius: 14px;
  padding: 12px;
  color: rgba(12,16,23,.74);
  font-weight: 700;
  line-height: 1.55;
  font-size: 13px;
}
.sn-tip b{ color: rgba(12,16,23,.88); font-weight: 950; }

/* Includes */
.sn-pIncludes{
  display:grid;
  gap: 12px;
}
.sn-incCard{
  border: 1px solid var(--sn-border);
  background: rgba(255,255,255,.86);
  border-radius: var(--sn-r20);
  padding: 14px;
  box-shadow: 0 12px 30px rgba(12,16,23,.08);
}
.sn-incCard--soft{
  background: rgba(255,255,255,.78);
}
.sn-incCard h4{
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 950;
  color: var(--sn-ink);
  display:flex;
  gap:10px;
  align-items:center;
}
.sn-incCard ul{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:8px;
}
.sn-incCard li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-weight: 800;
  color: rgba(12,16,23,.76);
  font-size: 13px;
}
.sn-incCard i{ margin-top:2px; opacity:.9; }

.sn-incNote{
  border: 1px solid rgba(11,58,164,.18);
  background: linear-gradient(180deg, rgba(11,58,164,.06), rgba(255,255,255,.85));
  border-radius: var(--sn-r20);
  padding: 14px;
  display:flex;
  gap:10px;
  align-items:flex-start;
}
.sn-incNote i{ font-size: 18px; margin-top:2px; }
.sn-incNote b{ display:block; font-weight: 950; }
.sn-incNote span{ display:block; color: rgba(12,16,23,.74); font-weight: 750; }

/* FAQ */
.sn-pFAQ{ margin-top: 16px; }
.sn-faqGrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin-top: 10px;
}
.sn-faqItem{
  border: 1px solid var(--sn-border);
  background: rgba(255,255,255,.86);
  border-radius: var(--sn-r20);
  padding: 12px 14px;
  box-shadow: 0 12px 30px rgba(12,16,23,.08);
}
.sn-faqItem summary{
  cursor:pointer;
  font-weight: 950;
  color: rgba(12,16,23,.88);
  font-size: 13.5px;
}
.sn-faqItem p{
  margin: 10px 0 0;
  color: rgba(12,16,23,.74);
  font-weight: 750;
  line-height: 1.6;
  font-size: 13.3px;
}

/* Responsive */
@media (max-width: 992px){
  .sn-pHead{ grid-template-columns: 1fr; }
  .sn-miniQuote{ position: relative; top:auto; }
  .sn-pLogic{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .sn-pEstGrid{ grid-template-columns: 1fr; }
  .sn-faqGrid{ grid-template-columns: 1fr; }
}
@media (max-width: 576px){
  .sn-pLogic{ grid-template-columns: 1fr; }
  .sn-p2col{ grid-template-columns: 1fr; }
  .sn-pActions{ flex-direction: column; }
  .sn-pActions .sn-btn{ width: 100%; }
}

/* =========================================================
   SANNIDHI – PRICING SECTION (RESPONSIVE)
   Section: #pricing.sn-pricing
   Paste AFTER your existing sn-* CSS so it overrides.
   ========================================================= */

/* ---------- Desktop-first layout ---------- */
.sn-pricing{
  padding: clamp(26px, 4vw, 58px) 0;
}

.sn-pricing .container{
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

/* Head: left content + right sticky mini card */
.sn-pHead{
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  gap: clamp(14px, 2.2vw, 24px);
  align-items: start;
}

.sn-pHead > div{ min-width: 0; }

/* Title/lead scale */
.sn-pricing .sn-h2{
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.15;
  margin: 10px 0 10px;
}

.sn-pricing .sn-lead{
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.65;
  margin: 0 0 14px;
}

/* Pricing nav pills */
.sn-pNav{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}
.sn-pNav .sn-pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

/* Sticky pricing mini card */
.sn-pMini{
  position: sticky;
  top: var(--sn-sticky-offset, 96px);
  align-self: start;
}

/* mini CTAs */
.sn-miniCtas{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.sn-miniCtas .sn-btn{
  width: 100%;
  justify-content: center;
}

/* Pricing logic cards */
.sn-pLogic{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 18px);
  margin-top: clamp(16px, 2.2vw, 22px);
}

.sn-pCard{
  min-width: 0;
}

/* bullets inside logic cards */
.sn-pList{
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}
.sn-pList li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.45;
}

/* Estimator wrapper */
.sn-pEstimator{
  margin-top: clamp(18px, 2.4vw, 26px);
}

.sn-pEstHead .sn-h3{
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.2;
  margin: 0 0 8px;
}
.sn-pEstHead .sn-muted{
  margin: 0;
  line-height: 1.55;
}

/* Estimator grid: form + includes */
.sn-pEstGrid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(12px, 2vw, 18px);
  margin-top: 14px;
  align-items: start;
}

.sn-pForm, .sn-pIncludes{ min-width: 0; }

/* Two-column form rows */
.sn-p2col{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

/* Inputs and labels */
.sn-pRow{
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.sn-lbl{
  line-height: 1.25;
}

/* Prevent select/input overflow */
.sn-inp{
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

/* Checks: allow wrap */
.sn-pChecks{
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

/* Actions buttons */
.sn-pActions{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}
.sn-pActions .sn-btn{
  width: 100%;
  justify-content: center;
}

/* Tip text */
.sn-tip{
  margin-top: 12px;
  line-height: 1.55;
}

/* Includes cards */
.sn-incCard{
  min-width: 0;
}
.sn-incCard ul{
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}
.sn-incCard li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.45;
}

/* Note block */
.sn-incNote{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 14px;
  min-width: 0;
}
.sn-incNote > div{ min-width: 0; }

/* FAQ grid */
.sn-pFAQ{
  margin-top: clamp(18px, 2.4vw, 28px);
}
.sn-pFAQ .sn-h3{
  font-size: clamp(18px, 1.5vw, 22px);
  margin: 0 0 12px;
}

.sn-faqGrid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.sn-faqItem{
  min-width: 0;
}
.sn-faqItem summary{
  cursor: pointer;
}

/* ---------- <= 1100px (reduce columns) ---------- */
@media (max-width: 1100px){
  .sn-pLogic{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ---------- <= 860px (tablet: stack head, single column) ---------- */
@media (max-width: 860px){
  .sn-pHead{
    grid-template-columns: 1fr;
  }

  /* stop sticky on smaller screens */
  .sn-pMini{
    position: relative;
    top: auto;
  }

  /* pricing nav pills become scroll row */
  .sn-pNav{
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    gap: 10px;
  }
  .sn-pNav::-webkit-scrollbar{ height: 6px; }

  .sn-pLogic{
    grid-template-columns: 1fr;
  }

  .sn-pEstGrid{
    grid-template-columns: 1fr;
  }

  .sn-faqGrid{
    grid-template-columns: 1fr;
  }
}

/* ---------- <= 520px (mobile: tighten & stack) ---------- */
@media (max-width: 520px){
  .sn-pricing .container{
    width: min(1180px, calc(100% - 22px));
  }

  .sn-eyebrow{
    font-size: 12px;
    line-height: 1.35;
  }
  .sn-sep{ display: none; }

  .sn-pricing .sn-h2{
    font-size: 22px;
    line-height: 1.18;
  }

  .sn-pricing .sn-lead{
    font-size: 14px;
  }

  /* form 2col -> 1col */
  .sn-p2col{
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* action buttons stack for better tap targets */
  .sn-pActions{
    grid-template-columns: 1fr;
  }

  /* mini ctas stack */
  .sn-miniCtas{
    grid-template-columns: 1fr;
  }

  /* note block stack */
  .sn-incNote{
    flex-direction: column;
    gap: 10px;
  }
}

/* ---------- Optional: reduce motion ---------- */
@media (prefers-reduced-motion: reduce){
  .sn-pricing *{
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}