 /* ===== PRICING SECTION ===== */
    .pricing-section {
      padding: 100px 40px 120px;
      background: var(--off-white);
      position: relative;
    }

    .pricing-inner {
      max-width: var(--max-width);
      margin: 0 auto;
    }

    /* Pricing Grid */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 40px;
    }

    /* Single Card */
    .pricing-card {
      background: var(--white);
      border: 1px solid rgba(0, 111, 160, 0.08);
      border-radius: 16px;
      padding: 32px 28px;
      display: flex;
      flex-direction: column;
      position: relative;
      transition: transform var(--transition), box-shadow var(--transition);
    }

    .pricing-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
    }

    .pricing-card--featured {
      border: 2px solid var(--blue);
      box-shadow: 0 8px 40px rgba(0, 111, 160, 0.12);
    }

    .pricing-card--featured:hover {
      box-shadow: 0 20px 60px rgba(0, 111, 160, 0.18);
    }

    .pricing-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--blue);
      color: var(--white);
      font-family: var(--font-subtitle);
      font-size: 10px;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 4px 16px;
      border-radius: 20px;
      white-space: nowrap;
    }

    /* Card Header */
    .pricing-card-header {
      margin-bottom: 24px;
    }

    .pricing-card-name {
      font-family: var(--font-title);
      font-size: 22px;
      color: var(--charcoal);
      margin-bottom: 8px;
    }

    .pricing-card-desc {
      font-family: var(--font-body);
      font-size: 13px;
      color: var(--gray-text);
      line-height: 1.6;
    }

    /* Price Block */
    .pricing-price {
      margin-bottom: 24px;
      min-height: 60px;
      display: flex;
      align-items: baseline;
      gap: 4px;
    }

    .pricing-price-value {
      font-family: var(--font-title);
      font-size: 44px;
      color: var(--charcoal);
      line-height: 1;
    }

    .pricing-price-currency {
      font-family: var(--font-subtitle);
      font-size: 20px;
      color: var(--charcoal);
    }

    .pricing-price-period {
      font-family: var(--font-body);
      font-size: 13px;
      color: var(--gray-text);
      align-self: flex-end;
      margin-bottom: 4px;
    }

    .pricing-price-label {
      font-family: var(--font-subtitle);
      font-size: 18px;
      color: var(--charcoal);
      line-height: 1;
      align-self: center;
    }

    .pricing-price-sublabel {
      font-family: var(--font-body);
      font-size: 12px;
      color: var(--gray-text);
      margin-top: 6px;
    }

    /* Annual toggle */
    .pricing-toggle {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 24px;
    }

    .pricing-toggle-track {
      width: 40px;
      height: 22px;
      border-radius: 11px;
      background: rgba(0, 111, 160, 0.15);
      position: relative;
      cursor: pointer;
      transition: background 0.3s;
    }

    .pricing-toggle-track.active {
      background: var(--blue);
    }

    .pricing-toggle-knob {
      width: 16px;
      height: 16px;
      background: var(--white);
      border-radius: 50%;
      position: absolute;
      top: 3px;
      left: 3px;
      transition: transform 0.3s;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    }

    .pricing-toggle-track.active .pricing-toggle-knob {
      transform: translateX(18px);
    }

    .pricing-toggle-label {
      font-family: var(--font-body);
      font-size: 12px;
      color: var(--gray-text);
    }

    .pricing-toggle-save {
      font-family: var(--font-subtitle);
      font-size: 10px;
      color: #27ae60;
      background: rgba(46, 204, 113, 0.1);
      padding: 2px 8px;
      border-radius: 10px;
    }

    /* CTA Button */
    @keyframes shimmer {
      0% {
        background-position: -200% center;
      }

      100% {
        background-position: 200% center;
      }
    }

    @keyframes dotFlicker {
      0% {
        opacity: 0;
        transform: translate(var(--dx), var(--dy)) scale(0);
      }

      15% {
        opacity: 1;
        transform: translate(var(--dx), var(--dy)) scale(1);
      }

      50% {
        opacity: 0.6;
        transform: translate(calc(var(--dx) * 1.8), calc(var(--dy) * 1.8)) scale(0.7);
      }

      80% {
        opacity: 0.2;
        transform: translate(calc(var(--dx) * 2.5), calc(var(--dy) * 2.5)) scale(0.3);
      }

      100% {
        opacity: 0;
        transform: translate(calc(var(--dx) * 3), calc(var(--dy) * 3)) scale(0);
      }
    }

    .pricing-cta {
      width: 100%;
      padding: 14px 20px;
      border-radius: 50px;
      font-family: var(--font-subtitle);
      font-size: 14px;
      letter-spacing: 0.3px;
      cursor: pointer;
      border: none;
      margin-bottom: 12px;
      position: relative;
      overflow: visible;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
      text-decoration: none;
    }

    .pricing-cta-group {
      margin-bottom: 28px;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .pricing-cta:hover {
      transform: scale(1.05);
    }

    .pricing-cta:active {
      transform: scale(1.02);
    }

    /* Particle canvas overlay */
    .pricing-cta .cta-particles {
      position: absolute;
      inset: -20px;
      pointer-events: none;
      overflow: visible;
    }

    .pricing-cta .cta-dot {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      opacity: 0;
      box-shadow: 0 0 var(--glow) var(--dot-color);
      background: var(--dot-color);
      animation: dotFlicker var(--dur) ease-out forwards;
      animation-delay: var(--delay);
    }

    /* Primary: gradient */
    .pricing-cta--primary {
      background: linear-gradient(135deg, var(--sky) 0%, var(--blue) 40%, var(--navy) 100%);
      color: var(--white);
      box-shadow: 0 4px 15px rgba(0, 111, 160, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }

    .pricing-cta--primary:hover {
      box-shadow: 0 6px 25px rgba(0, 111, 160, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    /* Shimmer overlay */
    .pricing-cta--primary::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50px;
      background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
      background-size: 200% 100%;
      animation: shimmer 3s ease-in-out infinite;
      pointer-events: none;
    }

    /* Outline: gradient border */
    .pricing-cta--outline {
      background: transparent;
      color: var(--blue);
      border: 2px solid transparent;
      background-image: linear-gradient(var(--white), var(--white)), linear-gradient(135deg, var(--sky), var(--blue), var(--navy));
      background-origin: border-box;
      background-clip: padding-box, border-box;
      box-shadow: 0 4px 15px rgba(0, 111, 160, 0.12);
    }

    .pricing-cta--outline:hover {
      background-image: linear-gradient(135deg, var(--sky) 0%, var(--blue) 40%, var(--navy) 100%);
      background-clip: padding-box;
      color: var(--white);
      border-color: transparent;
      box-shadow: 0 6px 25px rgba(0, 111, 160, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }

    .pricing-cta--outline::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50px;
      background: linear-gradient(90deg, transparent 0%, rgba(0, 111, 160, 0.08) 50%, transparent 100%);
      background-size: 200% 100%;
      animation: shimmer 3s ease-in-out infinite;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.3s;
    }

    .pricing-cta--outline:hover::before {
      background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
      background-size: 200% 100%;
      animation: shimmer 3s ease-in-out infinite;
      opacity: 1;
    }

    /* Dropdown (user count) */
    .pricing-select {
      width: 100%;
      padding: 10px 14px;
      border-radius: var(--radius);
      border: 1px solid rgba(0, 111, 160, 0.12);
      background: var(--off-white);
      font-family: var(--font-body);
      font-size: 12px;
      color: var(--charcoal);
      margin-bottom: 24px;
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23006fa0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 36px;
    }

    .pricing-select:focus {
      outline: none;
      border-color: var(--blue);
    }

    /* Features divider label */
    .pricing-features-title {
      font-family: var(--font-subtitle);
      font-size: 11px;
      color: var(--charcoal);
      letter-spacing: 0.3px;
      margin-bottom: 16px;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(0, 111, 160, 0.06);
    }

    /* Features list */
    .pricing-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      flex: 1;
    }

    .pricing-feature {
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }

    .pricing-feature-check {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: rgba(0, 111, 160, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .pricing-feature-check svg {
      width: 10px;
      height: 10px;
      color: var(--blue);
    }

    .pricing-card--featured .pricing-feature-check {
      background: rgba(0, 111, 160, 0.15);
    }

    .pricing-feature span {
      font-family: var(--font-body);
      font-size: 13px;
      color: var(--gray-text);
      line-height: 1.5;
    }

    /* Card structured description */
    .pricing-card-desc-block {
      font-family: var(--font-body);
      font-size: 13px;
      color: var(--gray-text);
      line-height: 1.7;
      margin-bottom: 24px;
      flex: 1;
    }

    .pricing-card-desc-block p {
      margin-bottom: 12px;
    }

    .pricing-card-desc-block p:last-child {
      margin-bottom: 0;
    }

    .pricing-card-desc-block strong {
      color: var(--charcoal);
      font-family: var(--font-subtitle);
      font-weight: 400;
    }

    .pricing-card-desc-block .desc-subtitle {
      font-family: var(--font-subtitle);
      font-size: 12px;
      color: var(--charcoal);
      letter-spacing: 0.2px;
      margin-top: 16px;
      margin-bottom: 6px;
    }

    .pricing-card-desc-block .desc-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 4px;
      margin-bottom: 12px;
    }

    .pricing-card-desc-block .desc-list li {
      padding-left: 14px;
      position: relative;
      font-size: 13px;
    }

    .pricing-card-desc-block .desc-list li::before {
      content: '•';
      position: absolute;
      left: 0;
      color: var(--blue);
    }

    .pricing-card-desc-block .desc-users {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 4px;
      margin-bottom: 12px;
    }

    .pricing-card-desc-block .desc-users li {
      font-size: 13px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .pricing-card-desc-block .desc-users li .user-count {
      font-family: var(--font-subtitle);
      color: var(--charcoal);
      font-size: 13px;
      min-width: 16px;
    }

    .pricing-card-note {
      font-family: var(--font-body);
      font-size: 11px;
      color: var(--charcoal);
      font-weight: 700;
      line-height: 1.5;
      margin-top: auto;
      padding-top: 12px;
      border-top: 1px solid rgba(0, 111, 160, 0.06);
    }

    .consent-note {
      font-family: var(--font-body);
      font-size: 10px;
      color: #888;
      line-height: 1.4;
      margin-top: 10px;
      text-align: center;
    }

    .consent-note a {
      color: var(--teal);
      text-decoration: underline;
    }

    .consent-note a:hover {
      color: var(--charcoal);
    }

    .pricing-card-desc-block .desc-highlight {
      display: inline-block;
      margin-top: 12px;
      font-family: var(--font-subtitle);
      font-size: 13px;
      color: var(--blue);
      font-weight: 400;
      background: rgba(0, 111, 160, 0.08);
      padding: 6px 12px;
      border-radius: 6px;
      line-height: 1.5;
    }

    /* Customize Plan Section */
    .customize-section {
      margin-bottom: 48px;
      background: var(--white);
      border: 1px solid rgba(0, 111, 160, 0.08);
      border-radius: 16px;
      padding: 48px;
    }

    .customize-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .customize-header h2 {
      font-size: clamp(22px, 3vw, 28px);
      color: var(--charcoal);
      margin-bottom: 12px;
    }

    .customize-header h2 .gradient-text {
      background: linear-gradient(135deg, var(--sky), var(--blue));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .customize-header p {
      font-size: 15px;
      color: var(--gray-text);
      max-width: 520px;
      margin: 0 auto;
      line-height: 1.7;
    }

    .customize-counters {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 720px;
      margin: 0 auto;
    }

    .counter-card {
      background: var(--off-white);
      border: 1px solid rgba(0, 111, 160, 0.06);
      border-radius: 12px;
      padding: 24px 20px;
      text-align: center;
      transition: border-color 0.3s, box-shadow 0.3s;
    }

    .counter-card:hover {
      border-color: rgba(0, 111, 160, 0.15);
      box-shadow: 0 4px 20px rgba(0, 111, 160, 0.08);
    }

    .counter-card-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 12px;
    }

    .counter-card-icon svg {
      width: 20px;
      height: 20px;
      stroke: var(--white);
    }

    .counter-card-icon--pm {
      background: var(--navy);
    }

    .counter-card-icon--part {
      background: var(--blue);
    }

    .counter-card-icon--inv {
      background: var(--sky);
    }

    .counter-card-icon--inv svg {
      stroke: var(--charcoal);
    }

    .counter-card-label {
      font-family: var(--font-subtitle);
      font-size: 13px;
      color: var(--charcoal);
      margin-bottom: 4px;
    }

    .counter-card-range {
      font-family: var(--font-body);
      font-size: 11px;
      color: var(--gray-text);
      margin-bottom: 16px;
    }

    .counter-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
    }

    .counter-btn {
      width: 36px;
      height: 36px;
      border: 1px solid rgba(0, 111, 160, 0.12);
      background: var(--white);
      color: var(--blue);
      font-size: 18px;
      font-family: var(--font-subtitle);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      user-select: none;
    }

    .counter-btn:first-child {
      border-radius: 8px 0 0 8px;
    }

    .counter-btn:last-child {
      border-radius: 0 8px 8px 0;
    }

    .counter-btn:hover {
      background: var(--blue);
      color: var(--white);
      border-color: var(--blue);
    }

    .counter-btn:active {
      transform: scale(0.92);
    }

    .counter-btn:disabled {
      opacity: 0.35;
      cursor: not-allowed;
      background: var(--off-white);
      color: var(--gray-text);
    }

    .counter-btn:disabled:hover {
      background: var(--off-white);
      color: var(--gray-text);
      border-color: rgba(0, 111, 160, 0.12);
    }

    .counter-value {
      width: 52px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-title);
      font-size: 18px;
      color: var(--charcoal);
      background: var(--white);
      border-top: 1px solid rgba(0, 111, 160, 0.12);
      border-bottom: 1px solid rgba(0, 111, 160, 0.12);
      transition: color 0.2s;
    }

    .counter-value.at-max {
      color: var(--blue);
    }

    .counter-card-subtotal {
      margin-top: 12px;
      font-family: var(--font-subtitle);
      font-size: 13px;
      color: var(--blue);
      opacity: 0;
      transform: translateY(-4px);
      transition: opacity 0.25s, transform 0.25s;
    }

    .counter-card-subtotal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .counter-card-unit {
      font-family: var(--font-body);
      font-size: 10px;
      color: var(--gray-text);
      margin-top: 2px;
    }

    /* Total summary */
    .customize-total {
      margin-top: 32px;
      text-align: center;
      padding-top: 24px;
      border-top: 1px solid rgba(0, 111, 160, 0.08);
    }

    .customize-total-label {
      font-family: var(--font-body);
      font-size: 13px;
      color: var(--gray-text);
      margin-bottom: 8px;
    }

    .customize-total-amount {
      font-family: var(--font-title);
      font-size: clamp(28px, 4vw, 36px);
      color: var(--charcoal);
      letter-spacing: -1px;
      transition: color 0.3s;
    }

    .customize-total-amount .total-currency {
      font-size: 0.6em;
      color: var(--gray-text);
      vertical-align: top;
      margin-right: 2px;
    }

    .customize-total-amount .total-period {
      font-family: var(--font-body);
      font-size: 14px;
      color: var(--gray-text);
      margin-left: 4px;
      letter-spacing: 0;
    }

    .customize-cta-wrapper {
      margin-top: 28px;
      display: flex;
      justify-content: center;
    }

    .customize-cta-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 16px 48px;
      border-radius: 50px;
      font-family: var(--font-subtitle);
      font-size: 15px;
      letter-spacing: 0.3px;
      cursor: pointer;
      border: none;
      position: relative;
      overflow: visible;
      background: linear-gradient(135deg, var(--sky) 0%, var(--blue) 40%, var(--navy) 100%);
      color: var(--white);
      box-shadow: 0 4px 15px rgba(0, 111, 160, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    }

    .customize-cta-btn:hover {
      box-shadow: 0 6px 25px rgba(0, 111, 160, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    .customize-cta-btn:active {
      transform: scale(0.97);
    }

    .customize-cta-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50px;
      background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
      background-size: 200% 100%;
      animation: shimmer 3s ease-in-out infinite;
      pointer-events: none;
    }

    .customize-cta-btn .cta-particles {
      position: absolute;
      inset: -20px;
      pointer-events: none;
      overflow: visible;
    }

    /* Confirmation popup */
    .confirm-popup-overlay {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: rgba(36, 36, 36, 0.6);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
    }

    .confirm-popup-overlay.active {
      opacity: 1;
      pointer-events: auto;
    }

    .confirm-popup {
      background: var(--white);
      border-radius: 16px;
      padding: 40px;
      max-width: 480px;
      width: 90%;
      text-align: center;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
      transform: scale(0.9) translateY(20px);
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
    }

    .confirm-popup-overlay.active .confirm-popup {
      transform: scale(1) translateY(0);
    }

    .confirm-popup-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: none;
      background: var(--off-white);
      color: var(--gray-text);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
    }

    .confirm-popup-close:hover {
      background: var(--charcoal);
      color: var(--white);
    }

    .confirm-popup-icon {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--sky), var(--blue));
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
    }

    .confirm-popup-icon svg {
      width: 28px;
      height: 28px;
      stroke: var(--white);
    }

    .confirm-popup h3 {
      font-size: 20px;
      color: var(--charcoal);
      margin-bottom: 8px;
      line-height: 1.3;
    }

    .confirm-popup .confirm-subtitle {
      font-family: var(--font-body);
      font-size: 14px;
      color: var(--gray-text);
      margin-bottom: 24px;
      line-height: 1.5;
    }

    .confirm-license-list {
      list-style: none;
      padding: 0;
      margin: 0 0 24px;
      text-align: left;
    }

    .confirm-license-list li {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 16px;
      border-radius: 8px;
      margin-bottom: 6px;
      font-family: var(--font-body);
      font-size: 14px;
      color: var(--charcoal);
      background: var(--off-white);
    }

    .confirm-license-list li .license-name {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .confirm-license-list li .license-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
    }

    .confirm-license-list li .license-dot--pm {
      background: var(--navy);
    }

    .confirm-license-list li .license-dot--part {
      background: var(--blue);
    }

    .confirm-license-list li .license-dot--inv {
      background: var(--sky);
    }

    .confirm-license-list li .license-qty {
      font-family: var(--font-subtitle);
      color: var(--blue);
    }

    .confirm-total-line {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 16px;
      border-top: 1px solid rgba(0, 111, 160, 0.08);
      margin-bottom: 28px;
    }

    .confirm-total-line .confirm-total-label {
      font-family: var(--font-body);
      font-size: 13px;
      color: var(--gray-text);
    }

    .confirm-total-line .confirm-total-value {
      font-family: var(--font-title);
      font-size: 20px;
      color: var(--charcoal);
    }

    .confirm-popup-actions {
      display: flex;
      gap: 12px;
      justify-content: center;
    }

    .confirm-popup-actions button {
      padding: 12px 24px;
      border-radius: 50px;
      font-family: var(--font-subtitle);
      font-size: 13px;
      cursor: pointer;
      border: none;
      transition: all 0.25s;
    }

    .confirm-btn-primary {
      background: linear-gradient(135deg, var(--sky) 0%, var(--blue) 40%, var(--navy) 100%);
      color: var(--white);
      box-shadow: 0 4px 15px rgba(0, 111, 160, 0.3);
    }

    .confirm-btn-primary:hover {
      transform: scale(1.05);
      box-shadow: 0 6px 25px rgba(0, 111, 160, 0.4);
    }

    .confirm-btn-ghost {
      background: var(--off-white);
      color: var(--gray-text);
    }

    .confirm-btn-ghost:hover {
      background: #e8e8e8;
      color: var(--charcoal);
    }

    .plan-confirm-details {
      margin: 0 0 24px;
      text-align: left;
    }

    .plan-confirm-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 16px;
      border-radius: 8px;
      margin-bottom: 6px;
      font-family: var(--font-body);
      font-size: 14px;
      color: var(--charcoal);
      background: var(--off-white);
    }

    .plan-confirm-row--total {
      border-top: 1px solid rgba(0, 111, 160, 0.08);
      margin-top: 8px;
      background: transparent;
      padding-top: 16px;
    }

    .plan-confirm-label {
      color: var(--gray-text);
      font-size: 13px;
    }

    .plan-confirm-value {
      font-family: var(--font-subtitle);
      color: var(--charcoal);
    }

    .plan-confirm-price {
      font-family: var(--font-title);
      font-size: 18px;
      color: var(--blue);
    }

    /* Style plan-hire-btn as inline like <a> */
    button.plan-hire-btn {
      border: none;
      font: inherit;
    }

    /* Enterprise popup overlay */
    .enterprise-popup-overlay {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: rgba(36, 36, 36, 0.6);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
    }

    .enterprise-popup-overlay.active {
      opacity: 1;
      pointer-events: auto;
    }

    .enterprise-popup {
      background: var(--white);
      border-radius: 16px;
      padding: 40px;
      max-width: 460px;
      width: 90%;
      text-align: center;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
      transform: scale(0.9) translateY(20px);
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
    }

    .enterprise-popup-overlay.active .enterprise-popup {
      transform: scale(1) translateY(0);
    }

    .enterprise-popup-icon {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--sky), var(--blue));
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
    }

    .enterprise-popup-icon svg {
      width: 28px;
      height: 28px;
      stroke: var(--white);
    }

    .enterprise-popup h3 {
      font-size: 20px;
      color: var(--charcoal);
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .enterprise-popup p {
      font-size: 14px;
      color: var(--gray-text);
      line-height: 1.7;
      margin-bottom: 28px;
    }

    .enterprise-popup-actions {
      display: flex;
      gap: 12px;
      justify-content: center;
    }

    .enterprise-popup-actions a,
    .enterprise-popup-actions button {
      padding: 12px 24px;
      border-radius: 50px;
      font-family: var(--font-subtitle);
      font-size: 13px;
      cursor: pointer;
      border: none;
      transition: all 0.25s;
      text-decoration: none;
    }

    .popup-btn-primary {
      background: linear-gradient(135deg, var(--sky) 0%, var(--blue) 40%, var(--navy) 100%);
      color: var(--white);
      box-shadow: 0 4px 15px rgba(0, 111, 160, 0.3);
    }

    .popup-btn-primary:hover {
      transform: scale(1.05);
      box-shadow: 0 6px 25px rgba(0, 111, 160, 0.4);
    }

    .popup-btn-ghost {
      background: var(--off-white);
      color: var(--gray-text);
    }

    .popup-btn-ghost:hover {
      background: rgba(0, 111, 160, 0.06);
      color: var(--charcoal);
    }

    .enterprise-popup-close {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 28px;
      height: 28px;
      border: none;
      background: var(--off-white);
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gray-text);
      transition: all 0.2s;
    }

    .enterprise-popup-close:hover {
      background: rgba(0, 111, 160, 0.08);
      color: var(--charcoal);
    }

    @media (max-width: 768px) {
      .customize-section {
        padding: 32px 20px;
      }

      .customize-counters {
        grid-template-columns: 1fr;
        max-width: 280px;
      }

      .enterprise-popup {
        padding: 28px 24px;
      }

      .enterprise-popup-actions {
        flex-direction: column;
      }
    }

    /* License Levels Section */
    .license-levels {
      margin-bottom: 48px;
      background: var(--white);
      border: 1px solid rgba(0, 111, 160, 0.08);
      border-radius: 16px;
      padding: 48px;
    }

    .license-levels-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .license-levels-header h2 {
      font-size: clamp(22px, 3vw, 28px);
      color: var(--charcoal);
      margin-bottom: 12px;
    }

    .license-levels-header h2 .gradient-text {
      background: linear-gradient(135deg, var(--sky), var(--blue));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .license-levels-header p {
      font-size: 15px;
      color: var(--gray-text);
      max-width: 520px;
      margin: 0 auto;
      line-height: 1.7;
    }

    .license-levels-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 32px;
    }

    .license-level-card {
      background: var(--off-white);
      border: 1px solid rgba(0, 111, 160, 0.06);
      border-radius: 12px;
      padding: 28px 24px;
      transition: border-color 0.3s, box-shadow 0.3s;
    }

    .license-level-card:hover {
      border-color: rgba(0, 111, 160, 0.15);
      box-shadow: 0 4px 20px rgba(0, 111, 160, 0.08);
    }

    .license-level-card-icon {
      width: 44px;
      height: 44px;
      border-radius: 11px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }

    .license-level-card-icon svg {
      width: 22px;
      height: 22px;
      stroke: var(--white);
    }

    .license-level-card-icon--pm {
      background: var(--navy);
    }

    .license-level-card-icon--part {
      background: var(--blue);
    }

    .license-level-card-icon--inv {
      background: var(--sky);
    }

    .license-level-card-icon--inv svg {
      stroke: var(--charcoal);
    }

    .license-level-card h3 {
      font-size: 16px;
      color: var(--charcoal);
      margin-bottom: 4px;
    }

    .license-level-card .level-tagline {
      font-family: var(--font-subtitle);
      font-size: 13px;
      color: var(--blue);
      margin-bottom: 14px;
    }

    .license-level-card p {
      font-family: var(--font-body);
      font-size: 13px;
      color: var(--gray-text);
      line-height: 1.7;
    }

    .license-levels-footer {
      text-align: center;
      padding-top: 24px;
      border-top: 1px solid rgba(0, 111, 160, 0.08);
    }

    .license-levels-footer p {
      font-family: var(--font-subtitle);
      font-size: 15px;
      color: var(--charcoal);
      line-height: 1.6;
    }

    .license-levels-footer p span {
      display: block;
      color: var(--blue);
    }

    @media (max-width: 768px) {
      .license-levels {
        padding: 32px 20px;
      }

      .license-levels-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Accompaniment Section */
    .accompaniment-section {
      margin-bottom: 48px;
      background: var(--charcoal);
      border-radius: 16px;
      padding: 64px 48px;
      position: relative;
      overflow: hidden;
    }

    .accompaniment-section::before {
      content: '';
      position: absolute;
      top: -30%;
      left: -10%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(0, 111, 160, 0.3) 0%, transparent 70%);
      pointer-events: none;
    }

    .accompaniment-section::after {
      content: '';
      position: absolute;
      bottom: -20%;
      right: -5%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(157, 201, 221, 0.2) 0%, transparent 70%);
      pointer-events: none;
    }

    .accompaniment-inner {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }

    .accompaniment-icon {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--sky), var(--blue));
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
    }

    .accompaniment-icon svg {
      width: 28px;
      height: 28px;
      stroke: var(--white);
    }

    .accompaniment-inner h2 {
      font-size: clamp(24px, 3.5vw, 32px);
      color: var(--white);
      margin-bottom: 8px;
    }

    .accompaniment-inner h2 .gradient-text {
      background: linear-gradient(135deg, var(--sky), #c4e1ed);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .accompaniment-subtitle {
      font-family: var(--font-body);
      font-size: 16px;
      color: var(--silver);
      margin-bottom: 36px;
      line-height: 1.7;
    }

    .accompaniment-label {
      font-family: var(--font-subtitle);
      font-size: 13px;
      color: var(--sky);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 20px;
    }

    .accompaniment-list {
      list-style: none;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px 32px;
      max-width: 560px;
      margin: 0 auto 40px;
      text-align: left;
    }

    .accompaniment-list li {
      font-family: var(--font-body);
      font-size: 14px;
      color: var(--silver);
      display: flex;
      align-items: center;
      gap: 10px;
      line-height: 1.5;
    }

    .accompaniment-list li .check-icon {
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: rgba(157, 201, 221, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .accompaniment-list li .check-icon svg {
      width: 12px;
      height: 12px;
      stroke: var(--sky);
    }

    .accompaniment-closing {
      padding-top: 32px;
      border-top: 1px solid rgba(157, 201, 221, 0.15);
    }

    .accompaniment-closing p {
      font-family: var(--font-body);
      font-size: 15px;
      color: var(--silver);
      line-height: 1.7;
    }

    .accompaniment-closing p strong {
      font-family: var(--font-subtitle);
      font-weight: 400;
      color: var(--white);
    }

    @media (max-width: 768px) {
      .accompaniment-section {
        padding: 40px 24px;
      }

      .accompaniment-list {
        grid-template-columns: 1fr;
      }
    }

    /* CTA Section */
    .pricing-cta-section {
      margin-bottom: 48px;
      background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 50%, var(--sky) 100%);
      border-radius: 16px;
      padding: 64px 48px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .pricing-cta-section::before {
      content: '';
      position: absolute;
      top: -40%;
      left: -20%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .pricing-cta-section::after {
      content: '';
      position: absolute;
      bottom: -30%;
      right: -10%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    .pricing-cta-section-inner {
      position: relative;
      z-index: 1;
      max-width: 640px;
      margin: 0 auto;
    }

    .pricing-cta-section h2 {
      font-size: clamp(24px, 3.5vw, 32px);
      color: var(--white);
      line-height: 1.3;
      margin-bottom: 16px;
    }

    .pricing-cta-section p {
      font-family: var(--font-body);
      font-size: 16px;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.7;
      margin-bottom: 36px;
    }

    .pricing-cta-section-buttons {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
    }

    .pricing-cta-section .cta-btn-solid {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 32px;
      border-radius: 50px;
      font-family: var(--font-subtitle);
      font-size: 14px;
      background: var(--white);
      color: var(--blue);
      border: none;
      cursor: pointer;
      transition: all 0.3s;
      text-decoration: none;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

    .pricing-cta-section .cta-btn-solid:hover {
      transform: scale(1.05);
      box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
    }

    .pricing-cta-section .cta-btn-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 32px;
      border-radius: 50px;
      font-family: var(--font-subtitle);
      font-size: 14px;
      background: transparent;
      color: var(--white);
      border: 1px solid rgba(255, 255, 255, 0.4);
      cursor: pointer;
      transition: all 0.3s;
      text-decoration: none;
    }

    .pricing-cta-section .cta-btn-outline:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.7);
      transform: scale(1.05);
    }

    @media (max-width: 768px) {
      .pricing-cta-section {
        padding: 40px 24px;
      }

      .pricing-cta-section-buttons {
        flex-direction: column;
        gap: 12px;
      }

      .pricing-cta-section .cta-btn-solid,
      .pricing-cta-section .cta-btn-outline {
        width: 100%;
      }
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .pricing-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
      }
    }

    @media (max-width: 768px) {
      .pricing-section {
        padding: 60px 20px 80px;
      }

      .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
      }

      .pricing-card {
        padding: 28px 24px;
      }

      .pricing-cta-section {
        padding: 40px 24px;
      }
    }