/* ==========================================================================
   Pricing page — page-specific styles
   Scoped to .pricing_page so it never collides with vendor module CSS.
   Palette matches about.css / contact.css (#00badb → #4ee4ab brand gradient).
   ========================================================================== */

/* --- Section bands --- */
.pricing_page .pricing-mid-sec { padding: 56px 0 64px; }

/* ==========================================================================
   Pricing tiers
   ========================================================================== */
.pricing_page .pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing_page .tier {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e6e9ec;
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
}

/* Highlighted "Pro" tier */
.pricing_page .tier--popular {
  border-color: #00badb;
  box-shadow: 0 12px 30px rgba(0, 186, 219, .14);
}
.pricing_page .tier-ribbon {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  padding: 6px 16px;
  border-radius: 100px;
  background: linear-gradient(135deg, #00badb, #4ee4ab);
}

/* --- Tier header --- */
.pricing_page .tier-head { border-bottom: 1px solid #eef1f3; padding-bottom: 20px; margin-bottom: 20px; }
.pricing_page .tier-name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #00badb;
  margin: 0 0 6px;
}
.pricing_page .tier-sub { font-size: 14px; color: #6b7680; margin: 0 0 16px; }
.pricing_page .tier-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  color: #021015;
}
.pricing_page .tier-price__from { font-size: 15px; font-weight: 500; color: #6b7680; }
.pricing_page .tier-price__num { font-size: 40px; font-weight: 700; line-height: 1; }
.pricing_page .tier-price__unit { font-size: 15px; color: #6b7680; }
.pricing_page .tier-price-note { font-size: 13px; color: #6b7680; margin: 8px 0 0; }

/* --- Tier body --- */
.pricing_page .tier-desc { font-size: 15px; line-height: 1.6; color: #4a5560; margin: 0 0 20px; }
.pricing_page .tier-features { list-style: none; margin: 0 0 28px; padding: 0; }
.pricing_page .tier-features li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 11px;
  font-size: 15px;
  line-height: 1.5;
  color: #33404a;
}
.pricing_page .tier-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, #00badb, #4ee4ab);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat;
}

/* --- Tier CTA (pinned to bottom for equal-height cards) --- */
.pricing_page .tier-cta {
  margin-top: auto;
  display: block;
  text-align: center;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 20px;
  border-radius: 10px;
  border: 1.5px solid #00badb;
  color: #0093ad;
  background: #fff;
  transition: background .15s ease, color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.pricing_page .tier-cta:hover { background: #f2fbfd; transform: translateY(-1px); }
.pricing_page .tier-cta--primary {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #00badb, #4ee4ab);
}
.pricing_page .tier-cta--primary:hover { box-shadow: 0 8px 20px rgba(0, 186, 219, .28); background: linear-gradient(135deg, #00badb, #4ee4ab); }
.pricing_page .tier-cta:focus-visible { outline: 2px solid #00badb; outline-offset: 2px; }

.pricing_page .tier-foot { font-size: 13px; color: #6b7680; text-align: center; margin: 12px 0 0; }

/* --- Shared model note --- */
.pricing_page .pricing-note {
  max-width: 760px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  color: #6b7680;
}

/* ==========================================================================
   Add-ons & services
   ========================================================================== */
.pricing_page .addons {
  margin-top: 56px;
  padding: 36px 32px;
  background: #f7f7f7;
  border-radius: 16px;
}
.pricing_page .addons-title { font-size: 22px; color: #021015; margin: 0 0 24px; text-align: center; }
.pricing_page .addons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.pricing_page .addon h4 { font-size: 16px; color: #021015; margin: 0 0 8px; }
.pricing_page .addon p { font-size: 14px; line-height: 1.6; color: #4a5560; margin: 0; }
.pricing_page .addon a { color: #0093ad; text-decoration: none; font-weight: 500; }
.pricing_page .addon a:hover { text-decoration: underline; }
.pricing_page .addon strong { color: #021015; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .pricing_page .pricing-tiers { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .pricing_page .addons-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .pricing_page .addons-grid { grid-template-columns: 1fr; }
  .pricing_page .addons { padding: 28px 20px; }
}