/* ------------------------------------------------------------------------
   Pricing + add-ons styles, extracted from the homepage inline <style>.
   Selected by walking every class used in the section, so nothing is
   missed the way a .pricing* prefix match did.
   Shared by the homepage and /{lang}/pricing/ so they cannot drift.
   ------------------------------------------------------------------------ */
.pricing-section {
      background: #f6f5ff;
      padding: 88px 2rem 100px;
    }
.pricing-header {
      text-align: center;
      max-width: 560px;
      margin: 0 auto 64px;
    }
.pricing-headline {
      font: 800 clamp(26px,3.5vw,38px)/1.15 Poppins, Inter, sans-serif;
      color: #1e1b4b;
      letter-spacing: -0.03em;
      margin-bottom: 14px;
      text-wrap: balance;
    }
.pricing-sub {
      font: 400 16.5px/1.65 Inter, sans-serif;
      color: #5c5980;
    }
.pricing-cards {
      max-width: 1060px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 18px;
      align-items: stretch;
    }
.pricing-col { display: flex; flex-direction: column; }
.pricing-badge-row {
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
.pricing-badge {
      background: #1C1859;
      color: rgba(255,255,255,0.95);
      font: 700 10px/1 Inter, sans-serif;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 7px 18px;
      border-radius: 100px;
    }
.pricing-card {
      border-radius: 22px;
      padding: 32px 28px 28px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
.pricing-card--light {
      background: #fff;
      border: 1.5px solid #ece9fc;
      box-shadow: 0 2px 12px rgba(79,70,229,0.05);
    }
.pricing-card--indigo {
      background: #1C1859;
      transform: scale(1.045);
      position: relative;
      z-index: 1;
      box-shadow: 0 12px 48px rgba(79,70,229,0.32), 0 2px 8px rgba(79,70,229,0.2);
    }
.pricing-card--indigo .pricing-card-name { color: #fff; }
.pricing-card-display {
      font: 800 44px/1 Poppins, Inter, sans-serif;
      letter-spacing: -0.04em;
      color: #1e1b4b;
      margin-bottom: 4px;
    }
.pricing-card-subtitle {
      font: 400 12.5px/1.4 Inter, sans-serif;
      color: #9d9ac0;
      margin-bottom: 14px;
      letter-spacing: 0.01em;
    }
.pricing-card--indigo .pricing-card-display { color: #fff; }
.pricing-card--indigo .pricing-card-display--lead { font-size: 48px; }
.pricing-divider {
      height: 1px;
      background: #ece9fc;
      margin: 18px 0;
    }
.pricing-card--indigo .pricing-divider { background: rgba(255,255,255,0.14); }
.pricing-card-desc {
      font: 400 13.5px/1.6 Inter, sans-serif;
      color: #5c5980;
      margin-bottom: 22px;
      min-height: 72px;
    }
.pricing-card--indigo .pricing-card-desc { color: rgba(255,255,255,0.62); }
.pricing-features {
      list-style: none;
      padding: 0;
      margin: 0 0 28px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
.pricing-features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font: 400 13.5px/1.45 Inter, sans-serif;
      color: #5c5980;
    }
.pricing-card--indigo .pricing-features li { color: rgba(255,255,255,0.82); }
.pricing-chk {
      flex-shrink: 0;
      margin-top: 1px;
      width: 17px;
      height: 17px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
.pricing-chk--light { background: rgba(79,70,229,0.1); }
.pricing-chk--white { background: rgba(255,255,255,0.18); }
.pricing-cta {
      display: block;
      margin-top: auto;
      width: 100%;
      padding: 13px;
      border-radius: 11px;
      font: 600 14px/1 Inter, sans-serif;
      text-align: center;
      text-decoration: none;
      cursor: pointer;
      transition: all .15s ease;
      letter-spacing: -0.01em;
      box-sizing: border-box;
      border: none;
    }
.pricing-cta--outline {
      background: transparent;
      border: 1.5px solid #ece9fc;
      color: #1e1b4b;
    }
.pricing-cta--outline:hover { border-color: #4f46e5; color: #4f46e5; }
.pricing-cta--white { background: #fff; color: #4f46e5; }
.pricing-cta--white:hover { background: rgba(255,255,255,0.9); }
.addons-section {
      max-width: 1060px;
      margin: 72px auto 0;
      padding-top: 56px;
      border-top: 1.5px solid #ece9fc;
    }
.addons-header-block {
      text-align: center;
      margin-bottom: 40px;
    }
.addons-eyebrow {
      display: inline-block;
      font: 700 10px/1 Inter, sans-serif;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #4f46e5;
      background: rgba(79,70,229,0.08);
      padding: 5px 14px;
      border-radius: 100px;
      margin-bottom: 14px;
    }
.addons-title {
      font: 800 24px/1.2 Poppins, Inter, sans-serif;
      color: #1e1b4b;
      letter-spacing: -0.03em;
      margin-bottom: 8px;
    }
.addons-sub {
      font: 400 14.5px/1.6 Inter, sans-serif;
      color: #9d9ac0;
    }
.addons-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 18px;
    }
.addons-grid .addon-card { flex: 0 1 340px; }
.addon-card { opacity: 0; }
.addon-card.visible {
      animation: pricing-fadeUp .5s cubic-bezier(0.22,1,0.36,1) forwards;
    }
.addon-card:nth-child(1).visible { animation-delay: 0ms; }
.addon-card:nth-child(2).visible { animation-delay: 80ms; }
.addon-card:nth-child(3).visible { animation-delay: 160ms; }
.addon-card {
      position: relative;
      background: #fff;
      border: 1.5px solid #ece9fc;
      border-radius: 20px;
      padding: 28px 26px 26px;
      overflow: hidden;
      cursor: default;
      transition: transform .22s cubic-bezier(0.22,1,0.36,1), box-shadow .22s ease, border-color .22s ease;
    }
.addon-card::before {
      content: '';
      position: absolute;
      inset: -1px;
      border-radius: 21px;
      background: linear-gradient(135deg, #818cf8, #c084fc, #38bdf8, #818cf8);
      background-size: 300% 300%;
      opacity: 0;
      z-index: 0;
      transition: opacity .3s ease;
    }
.addon-card::after {
      content: '';
      position: absolute;
      inset: 1px;
      border-radius: 19px;
      background: #fff;
      z-index: 1;
    }
.addon-card:hover::before {
      opacity: 1;
      animation: pricing-shimmer 2.5s linear infinite;
    }
.addon-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(79,70,229,0.13); }
.addon-inner { position: relative; z-index: 2; }
.addon-icon-wrap {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      margin-bottom: 18px;
      transition: transform .2s ease;
    }
.addon-card:hover .addon-icon-wrap { animation: pricing-iconPop .4s ease forwards; }
.addon-name {
      font: 700 15.5px/1.2 Inter, sans-serif;
      color: #1e1b4b;
      margin-bottom: 8px;
      letter-spacing: -0.02em;
    }
.addon-desc {
      font: 400 13.5px/1.6 Inter, sans-serif;
      color: #5c5980;
      margin-bottom: 18px;
    }
.addon-link {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font: 600 12.5px/1 Inter, sans-serif;
      color: #4f46e5;
      text-decoration: none;
      opacity: 0;
      transform: translateX(-4px);
      transition: opacity .2s ease, transform .2s ease;
    }
.addon-card:hover .addon-link { opacity: 1; transform: translateX(0); }
.addon-link svg { transition: transform .2s ease; }
.addon-link:hover svg { transform: translateX(3px); }

@media (max-width: 860px) {
  .pricing-cards { grid-template-columns: 1fr; max-width: 440px; }
  .addons-grid { grid-template-columns: 1fr; }
}
