/* =========================================================
   PRICING — PREMIUM (Comfort Line colors + final form styles)
   Consistent with PACKAGES + hero tokens
   ========================================================= */

.cm-section.pricing{
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 5vw, 86px) 0;

  /* Match packages soft band (blue tint) */
  background: linear-gradient(180deg,
    rgba(11,58,164,.05) 0%,
    rgba(11,58,164,.10) 100%
  );
}

/* Differentiation wash (brand tints) */
.cm-section.pricing::before{
  content:"";
  position:absolute;
  inset:-190px -180px -240px -180px;
  background:
    radial-gradient(980px 560px at 18% 16%, rgba(255,122,0,.18), transparent 62%),
    radial-gradient(860px 540px at 82% 16%, rgba(11,58,164,.10), transparent 62%),
    radial-gradient(980px 620px at 50% 110%, rgba(14,143,58,.10), transparent 60%);
  pointer-events:none;
  z-index:0;
}

.cm-section.pricing::after{
  content:"";
  position:absolute;
  left:0; right:0;
  top:0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(12,16,23,.12), transparent);
  z-index:0;
}

.cm-section.pricing .container{ position:relative; z-index:1; }
.pricing-head{ max-width: 920px; }

/* ----------------------------------------
   Pricing factors grid
---------------------------------------- */
.pricing-grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.price-card{
  background: rgba(255,255,255,.94);
  border: 1px solid var(--clh-border);
  border-radius: 26px; /* keep premium */
  box-shadow: 0 18px 50px rgba(12,16,23,.10);
  padding: 16px;
  transition: box-shadow .15s ease, border-color .15s ease;
  min-height: 170px;
}

.price-card:hover{
  border-color: rgba(255,122,0,.26);
  box-shadow:
    0 26px 70px rgba(12,16,23,.14),
    0 0 0 6px rgba(255,122,0,.06);
}

.price-ico{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display:grid;
  place-items:center;

  /* Orange highlight like packages */
  background: linear-gradient(180deg, rgba(255,122,0,.98), rgba(247,177,4,.98));
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 16px 30px rgba(255,122,0,.18), 0 14px 26px rgba(12,16,23,.08);
  margin-bottom: 10px;
}
.price-ico i{ color:#120A00; font-size: 18px; }

.price-title{
  margin: 0 0 6px;
  font-weight: 900;
  letter-spacing: -.4px;
  font-size: 18px;
  color: rgba(12,16,23,.96);
}

.price-desc{
  margin: 0;
  color: rgba(12,16,23,.68);
  font-weight: 600;
  line-height: 1.65;
  font-size: 14.75px;
}

/* ----------------------------------------
   Split premium panel
---------------------------------------- */
.price-panel{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 16px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--clh-border);
  background: rgba(255,255,255,.92);
  box-shadow: var(--clh-shadow);
}

.price-panel__left{
  padding: 18px;
  background:
    radial-gradient(900px 320px at 30% 10%, rgba(255,122,0,.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.86));
}

.panel-title{
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: -.5px;
  font-size: 20px;
  color: rgba(12,16,23,.96);
  display:flex;
  align-items:center;
  gap: 10px;
}
.panel-title i{ color: var(--clh-green); } /* WhatsApp hint */

.panel-steps{
  display:grid;
  gap: 10px;
  margin-top: 10px;
}

.pstep{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 12px 12px;
  border-radius: 18px;
  background: rgba(11,58,164,.04);
  border: 1px solid rgba(12,16,23,.06);
}

.pstep-dot{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(255,122,0,.12);
  border: 1px solid rgba(255,122,0,.22);
  flex: 0 0 auto;
}
.pstep-dot i{ color: var(--clh-blue); }

.pstep-title{
  font-weight: 900;
  letter-spacing: -.2px;
  color: rgba(12,16,23,.92);
  margin-bottom: 2px;
}
.pstep-sub{
  color: rgba(12,16,23,.66);
  font-weight: 600;
  line-height: 1.55;
  font-size: 13.75px;
}

/* CTA row */
.panel-cta{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 14px;
}

/* ===== CTA Buttons (match your screenshot) ===== */
.panel-cta .btn{
  height: 52px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: -.01em;
  padding: 0 18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  border: none;
}

/* WhatsApp (Green) */
.panel-cta .btn.btn-primary{
  background: linear-gradient(180deg, #25D366 0%, #1DA851 100%) !important;
  color: #fff !important;
  box-shadow: 0 12px 30px rgba(29,168,81,.25);
}
.panel-cta .btn.btn-primary:hover{
  transform: translateY(-2px);
  background: linear-gradient(180deg, #29E06B 0%, #1DA851 100%) !important;
  box-shadow: 0 16px 36px rgba(29,168,81,.35);
}

/* Call (Blue) */
.panel-cta .btn.btn-dark{
  background: linear-gradient(180deg, #3A6FE8 0%, #2C57C6 100%) !important;
  color: #fff !important;
  box-shadow: 0 12px 30px rgba(44,87,198,.25);
}
.panel-cta .btn.btn-dark:hover{
  transform: translateY(-2px);
  background: linear-gradient(180deg, #4A7EF5 0%, #2C57C6 100%) !important;
  box-shadow: 0 16px 36px rgba(44,87,198,.35);
}

.panel-note{
  margin-top: 12px;
  display:flex;
  gap: 10px;
  align-items:flex-start;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px dashed rgba(12,16,23,.18);
  background: rgba(255,255,255,.78);
  color: rgba(12,16,23,.64);
  font-weight: 600;
  line-height: 1.55;
  font-size: 13px;
}
.panel-note i{ color: rgba(12,16,23,.62); margin-top: 2px; }

/* ----------------------------------------
   Right form side
---------------------------------------- */
.price-panel__right{
  padding: 16px;
  background: rgba(255,255,255,.96);
  border-left: 1px solid rgba(12,16,23,.08);
}

.panel-miniHead{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 10px 12px;
  border-bottom: 1px solid rgba(12,16,23,.08);
}

.miniTitle{
  font-weight: 900;
  letter-spacing: -.2px;
  color: rgba(12,16,23,.96);
}
.miniSub{
  margin-top: 2px;
  color: rgba(12,16,23,.62);
  font-weight: 600;
  font-size: 13px;
}

/* Mini pill */
.miniPill{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .35px;
  font-size: 12px;
  background: rgba(255,122,0,.12);
  border: 1px solid rgba(255,122,0,.22);
  color: rgba(12,16,23,.84);
}
.miniPill i{ color: var(--clh-orange); }

/* Form wrapper */
.price-form{
  padding: 14px 10px 10px;
  display:flex;
  flex-direction:column;
  gap: 12px;
}

.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-row1{ display:grid; gap: 6px; }

/* ===== Form fields (final) ===== */
.label{
  font-weight: 900;
  color: rgba(12,16,23,.86);
  letter-spacing: -.01em;
  font-size: 13px;
}

.input{
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border-radius: 16px;
  border: 1px solid rgba(12,16,23,.12);
  background: rgba(255,255,255,.92);
  color: rgba(12,16,23,.90);
  font-weight: 650;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

.input::placeholder{
  color: rgba(12,16,23,.45);
  font-weight: 650;
}

/* Focus = brand blue glow */
.input:focus{
  border-color: rgba(11,58,164,.35);
  box-shadow: 0 0 0 6px rgba(11,58,164,.10);
}

/* Form actions */
.form-actions{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 4px;
}

.form-actions .btn{
  height: 46px;
  border-radius: 16px;
  font-weight: 900;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
}

.btn-block{ width:100%; }

/* Request estimate = brand orange (ad-safe CTA) */
.price-form .btn.btn-primary{
  background: linear-gradient(180deg, rgba(255,122,0,.98), rgba(255,122,0,.86)) !important;
  border: none !important;
  color: #fff !important;
  box-shadow: 0 14px 30px rgba(255,122,0,.22);
}
.price-form .btn.btn-primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(255,122,0,.30);
}

/* Ghost WhatsApp (secondary) */
.btn-ghost{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(12,16,23,.14);
  color: rgba(12,16,23,.86) !important;
}
.btn-ghost:hover{
  border-color: rgba(11,58,164,.26);
  box-shadow: 0 0 0 6px rgba(11,58,164,.06);
}
.btn-ghost i{ color: #25D366; } /* WhatsApp icon hint */

.form-help{
  margin-top: 2px;
  color: rgba(12,16,23,.60);
  font-weight: 600;
  font-size: 12.75px;
  line-height: 1.5;
}

/* Trust block */
.price-trust{
  margin-top: 16px;
  padding: 18px;
  border-radius: 26px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--clh-border);
  box-shadow: 0 16px 40px rgba(12,16,23,.10);
}
.price-trust .card-title i{ color: var(--clh-blue); }

/* Responsive */
@media (max-width: 991px){
  .pricing-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price-panel{ grid-template-columns: 1fr; }
  .price-panel__right{ border-left: 0; border-top: 1px solid rgba(12,16,23,.08); }
  .form-actions{ grid-template-columns: 1fr; }
}
@media (max-width: 560px){
  .pricing-grid{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; }
  .panel-cta .btn{ width: 100%; }
}
