/* ============================================================
   ODASS SOFTWARE — PRICING SECTION CSS
   assets/css/pricing.css
   ============================================================ */

/* ── Section wrapper ── */
.pricing-section { background: #f7f9fc; }

/* ── Country Toggle ── */
.country-toggle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
}

.country-toggle {
  display: inline-flex;
  background: #fff;
  border: 2px solid #e4e8f0;
  border-radius: 70px;
  padding: 6px;
  gap: 4px;
  box-shadow: 0 4px 20px rgba(11,44,95,.08);
}

.ct-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 22px;
  border-radius: 60px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #6b7280;
  transition: all .25s ease;
  white-space: nowrap;
  text-decoration: none;
}
.ct-btn:hover { background: rgba(255,122,0,.07); color: #FF7A00; }
.ct-btn.active {
  background: linear-gradient(135deg,#0B2C5F,#1A4B8C);
  color: #fff;
  box-shadow: 0 4px 16px rgba(11,44,95,.22);
}
.ct-flag { font-size: 22px; line-height: 1; }
.ct-name { font-weight: 700; }
.ct-cur {
  font-size: 11px;
  background: rgba(255,255,255,.18);
  color: #fff;
  padding: 2px 9px;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: .3px;
}
.ct-btn:not(.active) .ct-cur {
  background: rgba(255,122,0,.10);
  color: #FF7A00;
}
.ct-note {
  font-size: 12.5px;
  color: #9ca3af;
  text-align: center;
  margin: 0;
}

/* ── Pricing Grid — 4 columns ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 40px;
}

/* ── Pricing Card ── */
.pricing-card {
  background: #fff;
  border: 2px solid #e8ecf4;
  border-radius: 22px;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(11,44,95,.11);
  border-color: rgba(255,122,0,.25);
}
.pricing-card.popular {
  border-color: #FF7A00;
  box-shadow: 0 10px 48px rgba(255,122,0,.18);
  transform: translateY(-4px);
  z-index: 2;
}
.pricing-card.popular:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 70px rgba(255,122,0,.22);
}

/* Popular ribbon */
.popular-badge {
  background: linear-gradient(90deg,#FF7A00,#FFB347);
  color: #fff;
  text-align: center;
  font-size: 11.5px;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  padding: 8px 12px;
  letter-spacing: .8px;
  text-transform: uppercase;
}

/* Card Header */
.pc-head {
  padding: 26px 24px 18px;
  border-bottom: 1px solid #f0f4fa;
  text-align: center;
  background: linear-gradient(180deg,#fafbfd 0%,#fff 100%);
}
.pc-icon {
  font-size: 40px;
  margin-bottom: 12px;
  display: block;
  line-height: 1;
}
.pc-name {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #0B2C5F;
  margin-bottom: 5px;
  line-height: 1.2;
}
.pc-tagline {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 500;
  line-height: 1.4;
}

/* Price block */
.pc-price-wrap {
  padding: 20px 24px 16px;
  text-align: center;
  border-bottom: 1px solid #f0f4fa;
  background: #fff;
}
.pc-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  margin-bottom: 6px;
}
.pc-cur {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #FF7A00;
  line-height: 1;
  margin-top: 6px;
}
.pc-amount {
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: #0B2C5F;
  line-height: 1;
  letter-spacing: -1px;
  transition: opacity .3s;
}
.pc-period {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 500;
  align-self: flex-end;
  margin-bottom: 4px;
  white-space: nowrap;
}
.pc-delivery {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  color: #1FA84F;
  font-weight: 600;
  background: rgba(31,168,79,.09);
  border-radius: 50px;
  padding: 4px 13px;
  margin-top: 8px;
}

/* Features list */
.pc-features {
  list-style: none;
  padding: 18px 24px;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pc-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: #374151;
  line-height: 1.45;
  font-family: 'Open Sans', sans-serif;
}
.pc-features li.feat-no { color: #c4c9d4; }
.feat-check {
  color: #1FA84F;
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
  line-height: 1;
}
.feat-x {
  color: #d1d5db;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
  line-height: 1;
}

/* CTA Buttons */
.pc-cta {
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: auto;
}
.btn-full {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 18px;
  border-radius: 11px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all .22s;
  text-decoration: none;
  border: none;
  white-space: nowrap;
}
.btn-outline-blue {
  background: transparent;
  border: 2px solid #0B2C5F;
  color: #0B2C5F;
}
.btn-outline-blue:hover { background: #0B2C5F; color: #fff; }
.btn-primary.btn-full {
  background: linear-gradient(135deg,#FF7A00,#FFB347);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255,122,0,.28);
}
.btn-primary.btn-full:hover {
  background: linear-gradient(135deg,#E06800,#FF9A00);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,122,0,.36);
}
.btn-wa {
  background: #25D366;
  color: #fff;
}
.btn-wa:hover { background: #1da851; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(37,211,102,.3); }

/* Enterprise strip */
.pricing-enterprise { margin-top: 12px; }
.pe-inner {
  background: linear-gradient(135deg,#071D3E 0%,#0B2C5F 60%,#1A4B8C 100%);
  border-radius: 20px;
  padding: 30px 36px;
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.pe-icon { font-size: 52px; flex-shrink: 0; line-height: 1; }
.pe-inner div { flex: 1; min-width: 200px; }
.pe-inner h4 {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 7px;
}
.pe-inner p { color: rgba(255,255,255,.68); font-size: 13.5px; line-height: 1.6; margin: 0; }
.pe-btns {
  display: flex;
  gap: 11px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.pe-btns .btn-primary {
  background: linear-gradient(135deg,#FF7A00,#FFB347);
  color: #fff;
  padding: 11px 22px;
  border-radius: 11px;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all .22s;
  border: none;
  cursor: pointer;
}
.pe-btns .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,122,0,.35); }
.pe-btns .btn-wa {
  padding: 11px 22px;
  border-radius: 11px;
  font-size: 13.5px;
}

/* ── Price switch animation ── */
.pc-amount.switching { opacity: 0; transform: translateY(6px); }

/* ── Responsive ── */
@media (max-width: 1200px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.popular { transform: none; }
}
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .pricing-card.popular { transform: none; }
  .pricing-card:hover { transform: translateY(-4px); }
  .country-toggle {
    flex-direction: column;
    border-radius: 18px;
    width: 100%;
    max-width: 320px;
  }
  .ct-btn { border-radius: 12px; width: 100%; justify-content: center; }
  .pe-inner { flex-direction: column; text-align: center; padding: 24px 20px; }
  .pe-btns { margin: 0 auto; justify-content: center; }
  .pe-icon { font-size: 40px; }
}
@media (max-width: 480px) {
  .pc-amount { font-size: 30px; }
  .pc-cur { font-size: 18px; }
}
